/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #080357;
	background-image: url(siteimages/bodyback.jpg);
	background-position: top;
	background-repeat: repeat-x;
	color: #2c2c2e;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 0 0;
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
	color: #5885C0;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
	color: #5885C0;
	font-weight: bold;
	line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #1D256D;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #364D93;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #b92200;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #b92200;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #31458C;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-repeat: repeat-y;
	margin: 0 auto 0 auto;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 978px;
	background-image: url(siteimages/wrapperback.jpg);
	background-position: left;
	overflow: hidden;
}
#outerWrapper #leftborder {
	background-image: url(CSSSculptor/RobatHome_NewDesign_images/leftback.jpg);
	background-repeat: no-repeat; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 500px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 22px;
	background-color: #080451;
	display: inline;
}
#outerWrapper #rightColumn1 {
	background-image: url(CSSSculptor/RobatHome_NewDesign_images/rightback.jpg);
	background-repeat: no-repeat; /* Sets the left border properties for an element using shorthand notation */
	float: right;
	padding: 500px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 21px;
	background-color: #080451;
	display: inline;
}
#outerWrapper #header {
	padding: 0;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-image: url(siteimages/headerback.gif);
	text-align: right;
	height: 100px;
}
#outerWrapper #topNavigation {
	margin: 0px;
	padding: 0px;
	display: inline;
}#outerWrapper #contentWrapper #content #innerheaderbar .topimage {
	margin: 0px;
	padding: 8px 0px 0px 5px;
}#testpage #outerWrapper #topNavigation ul #test a, #productpage #outerWrapper #topNavigation ul #products a, #supportpage #outerWrapper #topNavigation ul #supportlink a, #homepage #outerWrapper #topNavigation ul #home a, #contactpage #outerWrapper #topNavigation ul #contact a, #china #outerWrapper #topNavigation ul #home a, #customerpage #outerWrapper #topNavigation ul #customer a,#admin #outerWrapper #topNavigation ul #adminlink a {
	color: #F60;
}

#outerWrapper #contentWrapper {
	margin: 0;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 0px auto;
	padding-top: 0px;
	padding-bottom: 1px;
	padding-left: 38px;


}
#footer {
	background-image: url(siteimages/footerback.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	margin-bottom: 30px;
	padding: 30px 0px 0px 38px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin-right: auto;
	margin-left: auto;
	width: 940px;
	color: #FFF;
	text-align: left;
	font-size: 12px;
}
#outerWrapper #contentWrapper #content #lefthome {
	background: url(siteimages/leftflashback.jpg) no-repeat right;
	height: 233px;
	width: 445px;
	float: left;
	padding-top: 30px;
}
#outerWrapper #contentWrapper #content #righthome {
	height: 263px;
	margin-left: 445px;
}#outerWrapper #contentWrapper #content #homeflash {
	height: 263px;
	margin-left: 445px;
	width: 445px;
	text-align: center;
}
#gallery #content {
	padding: 8px;
	width: 600px;
	margin: auto;
	display: block;
	color: #FFF;
	text-align: center;
}#gallery #content p{
	margin:0 0 8
}
#gallery .thumbnails {
	float: left;
	padding: 12px 6px 6px;
	width: 100px;
	margin-right: 3px;
	text-align: center;
	border: 1px solid #7785C0;
	display: inline;
	height: 89px;
	margin-bottom: 3px;
	color: #FFF;
}
#outerWrapper #contentWrapper #content .featureback {
	background: url(siteimages/featureback.jpg) no-repeat;
	float: left;
	height: 289px;
	width: 150px;
	margin-left: 3px;
	padding-top: 20px;
	padding-right: 13px;
	padding-left: 13px;
	display: inline;
}#admin #outerWrapper #contentWrapper #content .thumbnails {
	float: left;
	padding: 6px;
	width: 95px;
	margin-right: 5px;
	text-align: center;
	border: 1px solid #7785C0;
	height: 120px;
	display: table-cell;
}

#admin #outerWrapper #contentWrapper #content #rightinner h2 {
	font-size: 18px;
	display: block;
	width: 100%;
	background-color: #7785C0;
	color: #FFFFFF;
	padding: 5px;
	margin-bottom: 6px;
}
#admin #outerWrapper #contentWrapper #content h1 {
	font-size: 24px;
	margin-top: 0px;
	line-height: normal;
	margin-bottom: 12px;
	font-family: Arial, Helvetica, sans-serif;
}
#outerWrapper #contentWrapper #content #lefthome h2 {
	font-size: 24px;
	line-height: normal;
	text-align: right;
	margin-right: 40px;
	color: #FFF;
	margin-bottom: 20px;
}
#outerWrapper #header h1 {
	font-size: 21px;
	font-weight: normal;
	color: #050053;
	text-align: left;
	padding: 0px 40px 12px 280px;
	margin: 40px 0px 0px;
}
#outerWrapper #header img {
	border: none;


}
#outerWrapper #contentWrapper #content #lefthome ul li {
	font-size: 24px;
	font-weight: bold;
	color: #F60;
	line-height: normal;
	padding: 0px 20px 0px 0px;
	margin-top: 0px;
	margin-bottom: 12px;
	margin-left: 0px;
	white-space: nowrap;
}
#outerWrapper #contentWrapper #content #lefthome ul li em {
	font-size: 25px;
	color: #FFF;
	font-family: "Arial Black", Gadget, sans-serif;
	line-height: normal;
	font-style: normal;
}
#outerWrapper #contentWrapper #content #lefthome ul {
	margin: 18px auto 0px;
	list-style: none;
	text-align: right;
	padding-top: 0px;
	padding-right: 25px;
	padding-bottom: 0px;
}
#outerWrapper #contentWrapper #content .featureback h2,#outerWrapper #contentWrapper #content .longfeatureback .featurecontent h2 {
	font: 18px "Arial Black", Gadget, sans-serif;
	margin-top: 6px;
	margin-bottom: 2px;
	color: #111366;
}
#outerWrapper #contentWrapper #content #lefthome #supportflash {
	font: 24px "Arial Black", Gadget, sans-serif;
	color: #FFF;
	background: url(siteimages/supportloz.gif) no-repeat;
	width: 337px;
	text-align: center;
	padding-bottom: 9px;
	line-height: normal;
	margin: 20px auto auto;
}
#outerWrapper #topNavigation ul li {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #FFF;
	font-size: 14px;
	font-weight: bold;
	padding: 10px 0px 6px;
	display: inline-block;
	float: left;
	background: url(siteimages/divider.png) no-repeat right 5px;
	margin: 0px;
}
#outerWrapper #contentWrapper #content .featureback p, #outerWrapper #contentWrapper #content .longfeatureback .featurecontent p {
	font: 14px/16px Arial, Helvetica, sans-serif;
	color: #080353;
	margin: 0px 0px 6px;
	padding: 0px;
}
#outerWrapper #topNavigation ul li a {
	color: #FFF;
	display: block;
	width: 148px;
	text-align: center;
}
#contentWrapper #content .featureback .releasedtext {
	font-size: 14px;
	font-weight: bold;
	color: #F00;
	margin-top: 6px;
}
#outerWrapper #contentWrapper #content .featureback p.releasedtext {
	color: #F00;
	font-weight: bold;
}
#outerWrapper #contentWrapper #content .featureback .featurecontent {
	height: 200px;
}
#contentWrapper #content .featureback .detailsbutton, #contentWrapper #content .longfeatureback .detailsbutton {
	text-transform: uppercase;
	color: #FFF;
	background: url(siteimages/detailsback.jpg) no-repeat;
	width: 112px;
	padding: 12px 15px 12px 12px;
}
#contentWrapper #content .featureback .detailsbutton a, #contentWrapper #content .longfeatureback .detailsbutton a {
	color: #FFF;
	font-size: 15px;
	font-weight: bold;
	padding-left: 12px;
}
#outerWrapper #header h1 img {
	float: left;
	clear: both;
}
#outerWrapper #topNavigation ul #contact {
	background: url(none);
}
#outerWrapper #topNavigation ul #test, #outerWrapper #topNavigation ul #customer  {
	width: 156px;
}
#outerWrapper #contentWrapper #content #innerheaderbar #toplegend #buttons {
	padding-top: 66px;
}


#outerWrapper #topNavigation ul #contact a {
	width: 133px;
}
#outerWrapper #header #languages {
	text-align: right;
	padding-top: 20px;
	margin-right: 60px;
	width: 150px;
	margin-left: 710px;
}#outerWrapper #contentWrapper #content #innerheaderbar #byline {
	float: right;
	width: 200px;
	color: #F60;
	padding-top: 30px;
	font-size: 24px;
	padding-right: 22px;
	padding-left: 12px;
	line-height: normal;
}
#outerWrapper #topNavigation ul {
	margin: 0px;
	list-style: none;
	background: url(siteimages/navback.jpg) no-repeat center bottom;
	color: #FFF;
	padding: 0px 0px 1px 25px;
	height: 36px;
}
#outerWrapper #contentWrapper #content #leftinner h2 {
	font-size: 24px;
	font-weight: normal;
	margin-bottom: 12px;
	line-height: normal;
}
#outerWrapper #contentWrapper #content #leftinner h3 {
	font-size: 15px;
	font-weight: normal;
	line-height: normal;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px 0px 20px;
}
.greytext {
	color: #666;
	font-weight: normal;
}
img {
	border-style: none;
}
#outerWrapper #contentWrapper #content #innerheaderbar #toplegend #buttons img {

}
#supportflash a {
	color: #FFF;
}
.bigger {
	padding-right: 14px;

}
.bitbigger {
	padding-right: 3px;
}

#outerWrapper #contentWrapper #content #leftinner ul li {
	margin-top: 8px;
	margin-bottom: 6px;
	padding-bottom: 8px;
	border-bottom: 1px dotted #5885C0;
	margin-right: 45px;
	display: block;
}
#outerWrapper #topNavigation .hold {
	margin: 0px;
	list-style: none;
	background: url(siteimages/navback.jpg) no-repeat center;
	height: 30px;
	display: block;
	padding-top: 12px;
	padding-bottom: 0;
	color: #FFF;
	font-size: 13px;
	text-align: center;
	font-weight: bold;
}
#outerWrapper #topNavigation .hold a {
	color: #FFF;
}
#outerWrapper #topNavigation .hold a {
	text-decoration: underline;
}
#outerWrapper #contentWrapper #content #innerheaderbar {
	background: #242E75 url(siteimages/innerheaderback.jpg);
	margin: 0px 44px 0px 8px;
}
#outerWrapper #contentWrapper #content #innerheaderbar #toplegend h2 {
	font-size: 21px;
	font-weight: normal;
	color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	line-height: normal;
	white-space: nowrap;
}
#outerWrapper #contentWrapper #content #innerheaderbar #toplegend {
	width: 207px;
	padding-left: 31px;
	padding-right: 25px;
	padding-top: 55px;
	float: left;

}
#outerWrapper #contentWrapper #content #rightinner h3 {
	margin-bottom: 18px;

}
#outerWrapper #contentWrapper #content #leftinner ul {
	list-style: none;
	padding: 0 0 12px;
	margin: 0 0 -1px;
}
#outerWrapper #contentWrapper #content #innerheaderbar #toplegend #buttons .thickbox img {
	margin-top: 8px;
}
#outerWrapper #contentWrapper #content #innerheaderbar #toplegend h3 {
	font-size: 13px;
	font-weight: normal;
	color: #FFF;
	letter-spacing: 0.1em;
	margin-bottom: 12px;
}
#outerWrapper #contentWrapper #content #innerheaderbar #toplegend  a {
	color: #FFF;
}
#outerWrapper #contentWrapper #content #rightinner {
	margin-right: 45px;
	font-size: 12px;
	padding-bottom: 30px;
	padding-top: 30px;
	padding-right: 40px;
	margin-left: 250px;
}
#outerWrapper #contentWrapper #content #rightinner h2 {
	font-size: 22px;
	color: #5885C0;
	line-height: normal;
	font-weight: normal;
}#gallery #content h2 {
	font-size: 24px;
	color: #FFF;
	line-height: normal;
	margin-top: 18px;
	padding: 0px;
	margin-bottom: 0px;
}
#outerWrapper #contentWrapper #content #rightinner ul {
	margin: 12px 0px 0px 12px;
	padding: 0px;
	list-style: none;
}
#outerWrapper #contentWrapper #content #rightinner ul li {
	background: url(siteimages/bullet.gif) no-repeat left top;
	padding-top: 4px;
	padding-left: 35px;
	padding-bottom: 12px;
}
#outerWrapper #contentWrapper #content #rightinner h3 {
	font-size: 14px;
	font-weight: bold;
	color: #5885C0;
	margin-bottom: 6px;
	margin-top: 8px;
}
#outerWrapper #contentWrapper #content #rightinner p {
	margin: 0px;
	padding: 0px 0px 12px;
}
#outerWrapper #contentWrapper #content #leftinner {
	float: left;
	width: 210px;
	padding-left: 15px;
	padding-top: 30px;
	padding-right: 30px;
}
#china #outerWrapper #contentWrapper #content #lefthome ul li .bitbigger em {
	font-size: 32px;
	line-height: 28px;
}
#china #outerWrapper #contentWrapper #content #lefthome ul li {
	font-size: 32px;
	line-height: 28px;
}
#china #outerWrapper #contentWrapper #content .featureback .featurecontent h2 {
	font-size: 23px;
	font-weight: bold;
	line-height: 22px;
}
#outerWrapper #contentWrapper #content #strategy {
	background: url(siteimages/strategyback.png) no-repeat center top;
	width: 705px;
	margin: auto;
	padding: 0px;
}
#outerWrapper #contentWrapper #content #strategy #electrical {
	margin: 0px;
	padding: 20px 0px 0px;
	width: 350px;
	float: left;
	color: #5353FF;
}
#outerWrapper #contentWrapper #content #strategy #electrical h2 {
	font-size: 24px;
	color: #4040FF;
	font-weight: normal;
	margin-bottom: 40px;
}

#outerWrapper #contentWrapper #content #strategy #electrical p {
	margin-right: 80px;
	margin-left: 20px;
	font-size: 14px;
	margin-top: 10px;
}

#outerWrapper #contentWrapper #content #strategy #aoi {
	margin: 0px;
	padding: 20px 0px 0px;
	width: 350px;
	color: #F00;
	text-align: right;
}
#outerWrapper #contentWrapper #content #strategy #aoi h2 {
	font-size: 24px;
	color: #F00;
	font-weight: normal;
	margin-bottom: 40px;
}
#outerWrapper #contentWrapper #content #strategy #aoi p {
	margin-right: 20px;
	margin-left: 80px;
	font-size: 14px;
	margin-top: 10px;
}#outerWrapper #contentWrapper #content #strategy #signal {
	margin: 0px;
	width: 350px;
	color: #396;
	text-align: right;
	padding-top: 45px;
	padding-left: 0px;
}
#outerWrapper #contentWrapper #content #strategy #signal h2 {
	font-size: 24px;
	color: #396;
	font-weight: normal;
	margin: 30px 0px 0px;
	padding: 0px;
}
#outerWrapper #contentWrapper #content #strategy #signal p {
	margin-right: 30px;
	margin-left: 100px;
	font-size: 14px;
}
#outerWrapper #contentWrapper #content #strategy #Strategymiddle {
	color: #000;
	font-size: 14px;
	font-weight: bold;
	position: relative;
	clear: both;
	text-align: center;
	margin: 0px;
	padding: 140px 275px 95px;
}

#outerWrapper #contentWrapper #content #strategy #xray {
	margin: 0px;
	padding: 25px 0px 12px;
	width: 350px;
	color: #F0F;
}
#outerWrapper #contentWrapper #content #strategy #xray h2 {
	font-size: 24px;
	color: #F0F;
	font-weight: normal;
	margin-top: 30px;
}
#outerWrapper #contentWrapper #content #strategy #xray p {
	margin-right: 80px;
	margin-left: 20px;
	font-size: 14px;
}
#outerWrapper #contentWrapper #content #innerheaderbar #toplegend #playanimation a {
}
#outerWrapper #contentWrapper #content #innerheaderbar #toplegend #playanimation .thickbox {
	background: url(siteimages/animation.png) no-repeat left top;
}
#outerWrapper #contentWrapper #content #innerheaderbar #toplegend #buttons .thickbox img {
	margin: 0px;
	padding: 0px;
}


#outerWrapper #contentWrapper #content #innerheaderbar #toplegend p {
	color: #F60;
	font-size: 14px;
	font-weight: bold;
}
#signal2 {
	font-size: 24px;
	color: #396;
	padding-top: 12px;
}
#xray2 {
	font-size: 24px;
	color: #F0F;
	padding-top: 12px;
}
#testpage #outerWrapper #contentWrapper #content #rightinner ol li {
	padding-bottom: 8px;
}
#outerWrapper #contentWrapper #content #rightinner p .caption {
	color: #666;
	font-size: 10px;
}
#outerWrapper #contentWrapper #content .longfeatureback {
	background: url(siteimages/featurebottom.jpg) no-repeat bottom;
	float: left;
	width: 176px;
	padding-bottom: 22px;
	margin-left: 3px;
}
#content .longfeatureback .featurecontent {
	background: url(siteimages/featuremid.jpg) repeat-y;
	padding-top: 10px;
	padding-right: 13px;
	padding-left: 13px;
}
.smaller {
	font-size: 90%;
}
#productpage #outerWrapper #contentWrapper #content .longfeatureback .featurecontent .smaller {
	font-size: 12px;
	line-height: normal;
	height: 100px;
	margin-top: 15px;
}
#outerWrapper #contentWrapper #content #rightinner ul li h3 {
	margin: 0px 0px 6px;
}
#homepage #outerWrapper #header h1 {
	margin-top: 12px;
}
#admin #outerWrapper #contentWrapper #content h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #7785C0;
	line-height: normal;
	margin-top: 8px;
	margin-bottom: 8px;
	margin-left: 0px;
}
#admin #outerWrapper #contentWrapper #content #contract_contract_contract .contract_contract li #fieldset .formList .formItem .buttonFieldGroup .sublabel {
	margin-top: 14px;
}
#admin #outerWrapper #contentWrapper #content #innerheaderbar {
	height: 200px;
}
#admin #outerWrapper #contentWrapper #content #innerheaderbar #toplegend {
	width: inherit;
}
#admin #outerWrapper #contentWrapper #content #rightinner ul {
	list-style: none;
}
#admin #outerWrapper #contentWrapper #content #rightinner #contract_contract_contract .contract_contract li {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
#admin #outerWrapper #contentWrapper #content #rightinner #contract_contract_contract .contract_contract li #fieldset .formList li.formItem {
	list-style: none;
}
input.formButton {
	margin-top: 6px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFF;
	background: url(siteimages/detailsback.jpg) no-repeat left top;
	height: 34px;
	width: 112px;
	padding: 8px 0px;
	display: inline;
	vertical-align: middle;
	text-align: center;
	border-style: none;
}
#admin #popup {
	background: #FFF;
	margin: 12px;
	text-align: left;
	padding: 10px;
	border: 1px solid #557EBC;
}
#admin #outerWrapper #contentWrapper #content #rightinner li {
	list-style: none;
	background: url(none);
	margin: 0px;
	padding: 0px;
}
#outerWrapper #contentWrapper #content #rightinner .nobullets {
	list-style: none;
	margin: 12px 0px 0px;
	padding: 0px;
}
#contactpage #outerWrapper #contentWrapper #content #rightinner .nobullets li {
	background: url(none);
	list-style: none;
	margin: 0px;
	padding: 0px;
}
#contactpage #outerWrapper #contentWrapper #content #rightinner {
	min-height:500px;

}
.error {
	color: #F00;
}
#china #outerWrapper #header h1 {
	margin-top: 30px;

}
#china #outerWrapper #header {
	height: 100px;
}
#customerpage #outerWrapper #contentWrapper #content #innerheaderbar {
	height: 220px;
}
#admin #outerWrapper #contentWrapper #content #rightinner li h2 a, #admin #outerWrapper #contentWrapper #content #rightinner li h2 a:visited {
	color: #FFF;
}
#customerpage #outerWrapper #contentWrapper #content #rightinner .notice {
	font-weight: bold;
	color: #C30;
	background: #FFC;
	padding: 12px;
	border: 1px solid #C30;
}
#customerpage #outerWrapper #contentWrapper #content #rightinner #WAATKLogInForm .WAATKDataTable tr td .WAATKTextField {
	width: 200px;
	border: 1px solid #999;
}
#customerpage #outerWrapper #contentWrapper #content #rightinner #emailAddress {
	width: 200px;
	border: 1px solid #999;
}
#customerpage #outerWrapper #contentWrapper #content #rightinner #WAATKUpdateForm input #update.formbutton {
margin-top: 6px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFF;
	background: url(siteimages/detailsback.jpg) no-repeat left top;
	height: 34px;
	width: 112px;
	padding: 8px 0px;
	display: inline;
	vertical-align: middle;
	text-align: center;
	border-style: none;
}
#customerpage #outerWrapper #contentWrapper #content #rightinner #WAATKUpdateForm input {
	width: 200px;
	border: 1px solid #999;
}

