/* 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: #909ef9;/*717ed3*/
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
  /*font-size: 11px;*/
  line-height: 1.166em;
  margin: 0 0 0 0; /* Sets the margin properties for an element (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}

h1 {
  color: #000080;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: normal;
}

h1.spec {
  color: #000080;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: normal;
}

h2 {
  color: #000080;
  font-size: 18px;
  line-height: normal;
}

h3 {
  color: #000066;
  font-size: 16px;
}

h4 {
  color: #000066;
  font-size: 14px;
}

h5 {
  color: #000066;
  font-size: 12px;
}

h6 {
  color: #000080;
  font-size: 14px;
  font-weight: bold;
}
/* Sets the style for unvisited and visited links. */
a,  a:link a:visited {
  color: #000080;
  font-weight: bold;
  text-decoration: none;
}

/* Sets the style for links on mouseover. */
a:hover {
  color: #000080;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000080;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #0033FF;
  font-weight: bold;
  text-decoration: underline;
}

ul{ line-height: 1.5em;}

ul.main {
	list-style:none;
	line-height: 2em;
	font-size:12px;
	padding: 0 0 1px 5px;
	margin-left: 1px;
	text-align:left;
	}

ul.mainIndex {
	list-style:none;
	font-size:11px;
	padding: 0 0 1px 5px;
	margin-left: 1px;
	text-align:left;
	}
	
.mainIndex a:hover {color:#fff;
	background-color:#000099;
	display:block;
	text-decoration: none;
	margin-left:-8px;
	padding-left: 8px;
	}
	
ul.main2 {
	list-style: square;
	line-height: 1.7em;
	font-size:12px;
	padding: 0 0 1px 5px;
	margin-left: 15px;
	text-align:left;
	}

ul.main3 {
	list-style: square;
	line-height: 1.4em;
	font-size:12px;
	padding: 0 0 1px 5px;
	margin-left: 15px;
	text-align:left;
	}

ul.secondary {
	list-style:none;
	line-height: 1.5em;
	font-size:14px;
	padding-left: 10px;
	/*margin-left: 1em;*/
	}

/* Sets line break properties */
hr {
	border: 0;
	color: #717ed3;
	background-color:#717ed3;
	height: 1px;
	text-align: center;
	}

/* 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-color: #fff;
  margin: 10px auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  border-right: solid 1px #000080;
  border-left: solid 1px #000080;
  width: 800px;
}
#outerWrapper #header {
  background-color: #0810bb;
  border-bottom: solid 1px #767a7f; /* Sets the bottom border properties for an element using shorthand notation */
  font-size: 18px;
  font-weight: bold;
  line-height: 15px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #headerPrint {
	margin: 0px 0px 0px 0px;
	position:relative;
	display:none;
}

#outerWrapper #navBar {
  background-color: #ff0000; /*0810bb*/
  border-bottom: solid 1px #767a7f; /* Sets the bottom border properties for an element using shorthand notation */
  }

#outerWrapper #feature{
float:left;
	padding: 0px 10px 0px 10px;
	font-size: 14px;
	color: #000080;
	font-weight: bold;
	margin: 10px 10px;
	width:95%;
}
#outerWrapper #contentWrapper #feature img{
	z-index:1;
}

/******** Contains the main page content. ********/
#outerWrapper #contentWrapper #content {
float:left
  margin: 0 10px 0 10px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 10px 0px 10px; /* Sets the padding properties for an element */
  font-size: 14px;
  line-height: 1.2em;
}

.center  { text-align:center;}
.justify { text-align:justify; }
.left {text-align:left;}
.right {text-align:right;}

.imgLeft {float:left;
	padding: 0px 5px 0px 0px;
	border:none;}
.imgRight {float:right;
	padding: 0px 0px 0px 5px;}
.imgRight2 {float:right;
        border:none;
		margin-right:3px;}		
.imgRight3 {float:left;
	padding: 0px 0px 10px 5px;}
.imgNone {border:none;}

.spacer { vertical-align: text-top; }
.width95 { width:95%;
	float:left;
	margin-left:15px;}

.width300 {width:300px;}

.width490 { width:490px;
	float:left;
	margin-left:15px;
	margin-bottom:15px;}

.width700 { width:700px;
	margin-bottom:15px;}

.widthFifty {width:50%;}
	
.story { clear: both;}

.story2 {
	padding: 10px 10px 10px 10px;
	text-align:left;
	font-size: 14px; /* affects size of body print in Story2 div*/
	font-weight:bold;
	color:#000066;
}
 
.story3 {text-align: right;
	font-size: 20px;  /*affects size of body print in Story3 div*/
	font-weight:bold;}

.size1  { font:Arial, Helvetica, sans-serif bold 14px;
     width:50px;	 }

.size2  {font:Arial, Helvetica, sans-serif bold 11px;
     width:100px;	 }
	 
.size3  {font:Arial, Helvetica, sans-serif bold 11px;
     width:500px;	 }

.regular {font-size:12px;}

/************** Rounded Box Styles ********/
.spectecDiv  {
	float:left;
	margin-right:10px;
	margin-bottom:15px;
	width:360px;
}
.spectecDiv1  {
	float:left;
	margin-left:25px;
	margin-right:25px;
	margin-bottom:15px;
	width:360px;
}
.spectecDiv p { padding:0px 10px;}

.roundCorner {
	border:solid 1px #646464;
	border-radius: 10px;	
	-moz-border-radius:10px;
	-webkit-border-radius:10px;	
	padding-bottom:10px;	
}

p.roundCornerHdr {
	border-top-left-radius: 10px;	
	-moz-border-radius-topleft:10px;
	-webkit-border-top-left-radius:10px;	
	border-top-right-radius: 10px;	
	-moz-border-radius-topright:10px;
	-webkit-border-top-right-radius:10px;	
	background-color:#acacac;
	padding:10px 0px 10px 0px;
	margin:0px 0px 5px 0px;
	color:#0810bb;
	font-size:16px;
}
p.roundCornerHdr a, p.roundBoxHdr a:hover, p.roundBoxHdr a:visited {color:#000080;}

p.magneticSensors { background-color:#acacac;}

p.hallEffectSensors { background-color:#acacac;}

p.rfSpeedSensors { background-color:#acacac;}

.internalRtDiv { margin-right:0;}
   
 /* Table styles */
table { /*this rule centers all tables in their page or div */
  margin-left: auto;
  margin-right: auto;
  }

table.main {
  border: solid 1px #000081;
  border-spacing: 0px;
  border-collapse: separate;
}

table.main th {
  font-weight:bold;
  border: solid 1px #000081;
  background-color:#ffff66;
  padding: 1px;
}

table.main td { border: solid 1px #000081;}

.yellowBkgd { background-color:#ffff66;}

/************** .chart styles *****************/
.chart{
	clear: both;
	margin: 0px 0 0px 0; 
	padding: 0px 5px 5px 5px;
}
.chart2{
	clear: both;
	margin: 0px 0 0px 0; 
	padding: 0px 5px 5px 5px;
}
.chart img{
    text-align:center;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 5px 5px;
	border-style:solid;
	border-color:#000000;
	border-width:1px;
}

/**************** .image styles ****************/
.image2 img{
	float: right;
	padding: 0px 0px 0px 0px;
	margin: 0 2px 0px 0;
	border-color:#000000;
}

.verticalimage img{
	float: left;
	padding: 0px 0px 0px 0px;
	margin: 0px 0% 0px 0;
}

.verticalimage2 img{
	float: left;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

/**************** footer styles ****************/

#outerWrapper #footer {
  background-color: #9295db;
  /*background-image: url(../p7pm/img/pmgreystone_root2_inv.jpg);
  background-repeat: repeat-x;*/
  border-top: solid 1px #9ea3aa; /* Sets the top border properties for an element using shorthand notation */
  padding: 3px 10px 3px 10px; /* padding properties for footer element top, right, bottom, left) */
  font-size: 12px;
  /*font-weight: bold;*/
  color: #000080;
}

#outerWrapper #footer a:hover { text-decoration: underline; }

#outerWrapper #footer a { font-weight:normal; }
