@charset "UTF-8";
/* CSS Document */

/*----------- Global ---------------*/
html {
	overflow-y: scroll;
}

body {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: url(images/bg_content.gif) repeat-y top center #CCCCCC;
}

#wrapper {
	width: 1009px;
	margin: 0 auto;
}

h1, h2, h3, h4 {
	color: #00538d;
}

p, li {
	color: #444444;
	font-size: 16px;
}

img {
	border: none;
}

/*--- Classes ---*/
.clear {
	clear: both;
}
.bold {
	font-weight: bold;
}

/*------------- Main ------------*/
/*--- Header ---*/
#header {
	width: 1009px;
	height: 145px;
	background: url(images/bg_container.gif) repeat-y left top transparent;
	position:relative;
}
#logo {
	width: 284px;
	height: 107px;
	float: right;
	padding: 10px 15px 25px 0;
}

/*--- Nav ---*/
#nav {
	width: 1002px;
	height: 37px;
	margin: 0 0 0 4px;
	background: url(images/nav.jpg) repeat-x;
	position: relative;
}
#nav li a:hover {
	background: url(images/nav_o.jpg) repeat-x;
	color: #E0E000;
}
/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/*------ Lines ----------*/
#nav .topLine { width: 85%; height: 4px; position: absolute; }
#nav .topLineYellow { background: #dbe200; top: -4px; left: 0; }
#nav .topLineBlue { background: #0a3c01; top: 0; left: 0; z-index: 20000 }

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 15px;
	cursor: default;
	width: 960px;
	float: right;
	position: relative;
	font-family: "Trebuchet MS", Arial, Helvetica;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 9999;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	float: left;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 13px;
	z-index: 9999;
	cursor: default;
	width: 250px;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 250px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	font-weight: normal;
}
ul.MenuBarHorizontal ul li a
{
	color:#222222;
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
}

/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	background-color: #CCCCCC;
	border-top: 1px solid #FFFFFF;
	border-right: 1px solid #FFFFFF;
	border-left: 1px solid #FFFFFF;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	background-color: transparent;
	padding: 8px 15px 11px;
	color: #FFFFFF;
	text-decoration: none;
	font-style: italic;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: transparent;
	color: #FFFF00;
	background-image: url(images/bg_nav_o.gif);
	background-repeat: repeat-x;
	background-position: left top;
}

/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: transparent;
	color: #FFFF00;
	background-image: url(images/bg_nav_o.gif);
	background-repeat: repeat-x;
	background-position: left top;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{

}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{

}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{

}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{

}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 9999;
	filter:alpha(opacity:0.1);
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: transparent;
	}
}
/*------------- Side Bar -----------------*/
#col_l {
	width: 227px;
	margin: 0 0 0 20px;
	float: left;
	position: relative;
}
#col_l_header {
	width: 227px;
	height: 38px;
	background: url(images/col_header.jpg) no-repeat top center;
}
#col_l_header h2 {
	margin: 0;
	padding: 8px 0 0 15px;
	font-size: 18px;
	color: #FFFFFF;
}
#col_blog_header {
	width: 227px;
	height: 73px;
	margin: 0 0 5px 0;
	background: url(images/blog_header.jpg) no-repeat top left;
	position: relative;
	z-index: 5000;
}
#col_blog_header h2 {
	margin: 0;
	padding: 42px 0 0 15px;
	font-size: 18px;
	color: #FFFFFF;
	position: relative;
}
.trade {
	margin-bottom: 10px;
	padding: 5px 5px 10px 5px;
	position: relative;
	z-index: 6000;
	overflow: auto;
	border-bottom: 1px dotted #cccccc;
}
.trade img {
	margin: 0 10px 0 0;
	float: left;
}
.trade h3 {
	margin: 0 0 0 10px;
	padding: 0;
}
.trade p {
	font-size: 14px;
}
.trade h4 {
	margin: 0;
	padding: 0;
}
.trade h4 a {
	font-style: normal !important;
	font-size: 16px !important;
}

/* SpryMenuBarVertical.css - version 0.6 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
ul.MenuBarVertical
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 227px;
	font-family: "Trebuchet MS", Arial, Helvetica;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
	position: relative;
}
/* Menu item containers, position children relative to this container and are same fixed width as parent */
ul.MenuBarVertical li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 14px;
	line-height: 18px;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 227px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCCCCC;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarVertical ul
{
	margin: -5% 0 0 95%;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 125px;
	left: -1000em;
	top: 0;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	left: 0;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
{
	width: 125px;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
{
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
}
/* Submenu containers have borders on all sides */
ul.MenuBarVertical ul
{
	border: 1px solid #CCC;
	background-color: #f1f1f1;
}
ul.MenuBarVertical ul a {
	display: block;
	cursor: pointer;
	background-color: transparent;
	padding: 3px 10px 3px 18px;
	text-decoration: none;
	background-image: url(imagesarrow_sm.png);
	background-repeat: no-repeat;
	background-position: 5px 8px;
}

/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	background-color: transparent;
	padding: 10px 0 10px 8px;
	color: #666666;
	text-decoration: none;
	background-image: url(imagesarrow_sm.png);
	background-repeat: no-repeat;
	background-position: 15px 8px;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
	background-color: #E4E4E4;
	color: #333333;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
{
	background-color: #E4E4E4;
	color: #333333;

}

#MenuBar2 h2 {
	font-size: 14px;
	font-weight: bold;
}
#MenuBar2 h2 a {
	color: #004071;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	background-image: none;
}




/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarVertical a.MenuBarItemSubmenu
{

}

/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarVertical a.MenuBarItemSubmenuHover
{

}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarVertical iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarVertical li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
	}
}

/*--- Home ---*/
#content {
	margin: 0;
	padding: 0;
}
#top_bg {
	width: 1009px;
	height: 20px;
	background: url(images/bg_container.gif) repeat-y left top;
}
#col_r {
	width: 716px;
	padding: 0 0 0 10px;
	margin: 0 0 0 16px;
	float: left;
	background: url(images/header_home.jpg) no-repeat top center;
}
#col_r h1 {
	color: #ffffff;
	padding: 0 0 0 40px;
	text-shadow: 2px 2px 1px #303030;
}
#col_r h3 {
	color: #ffffff;
	font-size: 22px;
	padding: 0 0 20px 40px;
	text-shadow: 2px 2px 1px #303030;
}
#col_r h3 ul li {
	color: #00538D;
	font-size: 18px;
	text-shadow: none;
}
.dots {
	width: 670px;
	height: 2px;
	margin: 0 0 0 10px;
	padding: 0 0 0 5px;
	border-bottom: #CCCCCC 1px dashed;
}
#h_img {
	width: 189px;
	margin: 20px 10px 0 50px;
	padding: 0;
	float: left;
}
#h_list {
	width: 450px;
	margin: 20px 0 20px 10px;
	padding: 0;
	float: left;
}
#h_list li {
	color: #444444;
	font-size: 16px;
}
#spacer {
	width: inherit;
	height: 75px;
}

/*--- Content ---*/
#col_r_main {
	width: 726px;
	padding: 0 0 0 10px;
	margin: 0 0 0 5px;
	float: left;
}
#col_r_header {
	width: inherit;
	height: 38px;
	background: url(images/main_header.gif) no-repeat top center;
}
#col_r_header h2 {
	margin: 0;
	padding: 5px 0 0 15px;
	color: #FFFFFF;
}
#col_r_bg {
	width: inherit;
	background: url(images/p_main_bg.gif) repeat-y top center;
}
#col_r_con {
	width: 698px;
	margin: 0;
	padding: 5px 0 5px 15px;
}
#col_r_con h3 {
	padding: 10px 0 0 0;
}
#col_r_con ul {
	color: #555555;
	font-size: 16px;
	line-height: 24px;
}
#col_r_bot {
	width: inherit;
	height: 20px;
	background: url(images/p_main_bot.gif) no-repeat bottom center;
}

/*--- Materials Page ---*/
.m_atts {
	width: 385px;
	float: left;
}
.m_atts li {
	padding: 8px 0 8px 0;
	color: #00538d;
	font-size: 16px;
	font-weight: bold;
	line-height: 23px;
	border-bottom: #666666 dotted 1px;
	list-style-image: url(images/tri.png);
}
ul.sub_list {
	margin: 0;
	padding: 0 0 0 20px;
}
.sub_list li {
	color: #444444;
	font-size: 12px;
	font-weight: normal;
	border-bottom: none;
	line-height: 15px;
	list-style: none;
	list-style-image: none;
}
#m_apps {
	width: 220px;
	margin: 0;
	padding: 8px 0 0 0;
	float: right;
}
#m_apps ul {
	margin: 0;
	padding: 0;
}
#m_apps li {
	list-style: none;
	line-height: 30px;
	color: #444444;
	font-size: 18px;
}
#m_note {
	margin: 20px 0 0 0;
	padding: 10px;
	font-weight: bold;
	border: #00538d solid 2px;
	background-color: #d8e1e6;
}

.t_left {
	width: 175px;
	height: 30px;
	text-align: center;
	background-color: #00538d;
	float: left;
}
.t_left h4 {
	margin: 0;
	padding: 5px 0 0 0;
	font-weight: bold;
	color: #FFFFFF;
}
.t_right {
	width: 520px;
	height: 30px;
	margin: 0;
	border-left: 3px solid #ffffff;
	text-align: center;
	background-color: #00538d;
	float: left;
}
.t_right h4 {
	margin: 0;
	padding: 5px 0 0 0;
	font-weight: bold;
	color: #FFFFFF;
}
.com_row {
	width: 100%;
}
.com_row a.gray {
	/*display: block;*/
	margin: 3px 0 0 0;
	background-color: #CECECE;
	color: #444444;
	text-decoration: none;
	font-size: 14px;
    display: table;
}
.com_row a.blue {
	/*display: block;*/
	margin: 3px 0 0 0;
	background-color: #d8e1e6;
	color: #444444;
	text-decoration: none;
	font-size: 14px;
    display: table;
}
.com_row a:hover {
	color: #ffffff;
	background-color: #00538d;
}
.left {
	width: 175px;
	padding: 4px 0;
	font-size: 14px;
	text-align: center;
	/*float: left;*/
    display: table-cell;
    vertical-align: middle;
}
.right {
	/*display: block;*/
	width: 520px;
	padding: 4px 0;
	border-left: 3px solid #ffffff;
	font-size: 14px;
	text-align: center;
	/*float: left;*/
    display: table-cell;
    vertical-align: middle;
}
#m_spacer {
	width: inherit;
	height: 100px;
}

/*--- Compounds Page ---*/
.bigger {
	font-size: 18px;
	font-weight: bold;
}
#specs th {
	color: #ffffff;
	background-color: #00538d;
}
#specs td {
	color: #444444;
	font-size: 14px;
	text-align: center;
	background-color: #CECECE;
}
#specs .product_specs_blank{
	background-color: #F9F9F9;
}
#specs .hilite {
	background-color: #d8e1e6;
}
p#note {
	font-size: 12px;
	padding: 0 10px;
}

/*--- News ---*/
#news {
	margin: 20px 0 0 0;
}
#news th {
	color: #ffffff;
}
#news td {
	color: #444444;
}
#news td a {
	color: #444444;
}
#news td a:hover {
	color: #00538D;
}
#news_back a {
	color: #444444;
}
#news_back a:hover {
	color: #00538D;
}

/*--- Contact ---*/
#contact {
	color: #444444;
}
.form {
	border: 1px #417FAB solid;
	padding: 4px;
}

/*--- Footer ---*/
#footer {
	width: 1003px;
	height: 90px;
	margin: 0 0 0 3px;
	background: url(images/footer.jpg) no-repeat;
}
#footer_align {
	text-align: center;
	position: fixed;
	bottom: 0px;
	visibility: visible;
	width: 100%;
	z-index: 10000;
}
#footer_l {
	width: 260px;
	margin: 50px 0 0 20px;
	float: left;
}
#footer_l p {
	font-size: 12px;
	color: #FFFFFF;
	text-align: left;
}
#footer_r {
	width: 540px;
	margin: 0 20px 0 0;
	text-align: right;
	line-height: 16px;
	float: right;
}
#footer_r p {
	color: #FFFFFF;
	font-size: 14px;
}
#footer_r p a {
	color: #E0E000;
	text-decoration: none;
}
#footer_r p a:hover {
	text-decoration: underline;
}

/*--------- Translate Button ----------*/
#MicrosoftTranslatorWidget {
    height: 38px;
	position: absolute;
	top: -5px;
	left: 15px;
	z-index: 500;
}
#LauncherTranslatePhrase {
	background: #24628f !important; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzI0NjI4ZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzE4NTY4NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iIzAzNDc3OCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDM2NjciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+) !important;
	background: -moz-linear-gradient(top,  #24628f 0%, #185684 50%, #034778 51%, #003667 100%) !important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#24628f), color-stop(50%,#185684), color-stop(51%,#034778), color-stop(100%,#003667)) !important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #24628f 0%,#185684 50%,#034778 51%,#003667 100%) !important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #24628f 0%,#185684 50%,#034778 51%,#003667 100%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #24628f 0%,#185684 50%,#034778 51%,#003667 100%) !important; /* IE10+ */
	background: linear-gradient(to bottom,  #24628f 0%,#185684 50%,#034778 51%,#003667 100%) !important; /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#24628f', endColorstr='#003667',GradientType=0 ) !important; /* IE6-8 */
	padding: 4px 0px 1px !important;
	border-radius: 0 0 5px 5px;
	text-align: center;
	cursor: pointer;
	height: 21px;
}
#LauncherTranslatePhrase span#TranslateSpan {
	color: #ffffff !important;
}
#LauncherTranslatePhrase span#TranslateSpan:hover {
	color: #FFFF00 !important;
}
#LauncherTranslatePhrase #TranslateSpan {
    letter-spacing: .5px;
    font-size: 14px !important;
    font-style: italic;
    text-transform: capitalize !important;
}
#LauncherTranslatePhrase:hover, #LauncherTranslatePhrase:WidgetEnabled:hover {
	background: #6691b2; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzY2OTFiMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzU5ODRhNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iIzRhNzk5YyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzOTY4OGIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #6691b2 0%, #5984a5 50%, #4a799c 51%, #39688b 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6691b2), color-stop(50%,#5984a5), color-stop(51%,#4a799c), color-stop(100%,#39688b)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #6691b2 0%,#5984a5 50%,#4a799c 51%,#39688b 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #6691b2 0%,#5984a5 50%,#4a799c 51%,#39688b 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #6691b2 0%,#5984a5 50%,#4a799c 51%,#39688b 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #6691b2 0%,#5984a5 50%,#4a799c 51%,#39688b 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6691b2', endColorstr='#39688b',GradientType=0 ); /* IE6-8 */
}
#LauncherTranslatePhrase:hover span#TranslateSpan, #LauncherTranslatePhrase:WidgetEnabled:hover span#TranslateSpan {
	color: #FFFF00 !important;
}
.Dark #LauncherTranslatePhrase {
    border: none !important;
}
.Dark #LauncherTranslatePhrase:hover {
    background: #6691b2; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzY2OTFiMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzU5ODRhNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iIzRhNzk5YyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzOTY4OGIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #6691b2 0%, #5984a5 50%, #4a799c 51%, #39688b 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6691b2), color-stop(50%,#5984a5), color-stop(51%,#4a799c), color-stop(100%,#39688b)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #6691b2 0%,#5984a5 50%,#4a799c 51%,#39688b 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #6691b2 0%,#5984a5 50%,#4a799c 51%,#39688b 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #6691b2 0%,#5984a5 50%,#4a799c 51%,#39688b 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #6691b2 0%,#5984a5 50%,#4a799c 51%,#39688b 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6691b2', endColorstr='#39688b',GradientType=0 ); /* IE6-8 */
}
.Dark #LauncherTranslatePhrase:hover span#TranslateSpan {
	color: #FFFF00 !important;
}
#LauncherLogo, #LauncherWithSpan, #LauncherLogoLink, #LauncherLogoImage {
    display: none !important;
}

/* New contact form */
.form-group{
	margin-bottom: 12px;
}
label {
    width: 30%;
    text-align: -webkit-right;
    vertical-align: top;
    text-align: right;
    color: #333333;
    display: inline-block;
    padding-right: 4px;
}
.form-group input, .form-group textarea {
    border-width: 1px;
    border-style: solid;
    border-color: rgb(65, 127, 171);
    border-image: initial;
    padding: 4px;
    width: 250px;
}
.help-block{
	font-size: 12px;
    color: #e00;
    padding-left: 95px;
}
.ast{
	padding-right:3px;
    color: #e00;
}
.center, #captchaContainer>div{
	margin:0 auto;
	text-align:center;
	}
	
	#send{
	background-color: #cccc;
    border-color: #6666;
    padding: 8px 20px;
    width: auto;
    font-size: 14px;
	}