/*
this style sheet should be linked to every page and contains:
- a style reset for most elements
- spacing and dimensional formatting for site-wide structural div's and html elements
- site-wide base typographical styles
- complete header and footer formatting
*/


/* ==== START all element style reset ==== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, div, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-family: inherit;
	vertical-align: top;
}

img {
    margin: 0;
	padding: 0;
	border: 0;
	}

:focus {
	outline: 0;
}

ol, ul {
	list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}

caption, th, td {
	text-align: left;
	font-weight: normal;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}

/* ====  END style reset ==== */


/* ====  START general element formatting  === */

body {
    padding-bottom: 20px;
    font-family: lucida grande, verdana, sans-serif;
    text-align: center;
    font-size: 62.5%;
    color: #444;
    background-color: #fff;
    }
/*
NOTE: the 'text-align: center;' is a catch-all just in case a browser doesn't render 'margin: 0 auto;' correctly. The auto margin is applied to the 'site-container' div along with 'text-align: left;'. 
*/

h1, h2, h3, h4, h5, h6 {
    font-family: helvetica, arial, sans-serif;
    font-weight: normal;
    }
    
h1 {
    margin-bottom: 4px;
    font-size: 2.7em;
    line-height: 1.1em;
    }

h1.applications {
margin: 10px 0 2px 0 !important;
	font-size: 2em !important;
    line-height: 1.2em !important;
}

h2 {
    margin-bottom: 2px;
    font-size: 2.5em;
    line-height: 1.1em;
    }

h3 {
    margin-bottom: 2px;
    font-size: 2.2em;
    line-height: 1.1em;
    }

h4 {
    margin: 10px 0 2px 0;
    font-size: 2em;
    line-height: 1.2em;
    }
h4.intro-copy {
    margin: 10px 0;
    }

h5 {
    margin-bottom: 3px;
    font-size: 1.8em;
    line-height: 1.4em;
    }

h6 {
    font-size: 1.6em;
    line-height: 1.5em;
    }

h6.intro-copy {
    margin: 10px 0;
    }

p {
    margin-bottom: 15px;
    font-size: 1.2em;
    line-height: 1.4em;
    }
    
table {
    width: 100%;
    margin-bottom: 15px;
    }

th, td {
    padding: 5px 0;
    line-height: 1.4em;
    }

td.product-img {
    width: 100px;
    }

.item {
    width: 35%;
    font-weight: bold;
    }

.desc {
    width: 65%;
    }
    
th {
    width: 35%;
    padding-right: 15px;
    font-weight: bold;
    font-size: 1.2em;
    }
    

ol, ul {
    margin-bottom: 15px;
    }

ol {
    margin-left: 45px;
    list-style: decimal outside;
    }

ul {
    list-style-position: outside;
    }

li {
    margin-bottom: 5px;
    font-size: 1.2em;
    line-height: 1.4em;
    }

.sidebar ul li {
    margin-bottom: 2px;
    }

/* nested <ul> level 2 */
ul li ul {
    margin: 5px 0 5px 12px;
    font-size: 10px;
    }

/* nested <ul> level 3 */
ul li ul li ul {
    margin: 4px 0 4px 16px;
    font-size: 10px;
    }

/* optional class for bulleted list */
ul.bullet-list {
    margin-left: 40px;
    list-style: circle outside;
    }

ul.meta-nav {
    margin: 0;
    padding: 0;
    font-size: 9px;
    }

ul.meta-nav li {
    margin: 0 10px 0 0;
    padding: 0 10px 0 0;
    line-height: 1.6em;
    float: left;
    background: transparent url(images/meta_nav_divider.gif) center right no-repeat;
    }

ul.meta-nav li.last-nav-item,
ul#header-nav li.last-nav-item {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
    background: none;
    }

ul#product-specs {
    padding-top: 5px;
    }

/* header meta nav cascading structure */

#header-nav, #header-nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}


#header-nav li { /* all list items */
    margin: 0 15px 0 0;
    padding: 0 15px 0 0;
    float: left;
    z-index: 100;
    background: transparent url(images/meta_nav_divider.gif) center right no-repeat;
}

#header-nav li li {
    width: 200px;
    padding: 0;
	margin: 0;
	background: none;
    }

#header-nav li ul { /* second-level lists */
    padding-top: 10px;
	position: absolute;
	width: 200px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#header-nav li ul ul { /* third-and-above-level lists */
	margin: -25px 0 0 200px;
	padding: 0;
}

#header-nav li:hover ul ul, #header-nav li.sfhover ul ul {
	left: -999em;
}

#header-nav li:hover ul, #header-nav li li:hover ul, #header-nav li.sfhover ul, #header-nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}


/* home page main nav */

ul#main-nav {
    width: 960px;
    margin: 0;
    padding: 0;
    }

ul#main-nav li {
    float: left;
    margin: 0;
    }


ul#footer-bu-nav li {
    text-transform: uppercase;
    }

dl {
    margin-bottom: 15px;
    }

input {
    color: #666;
    }

/*
NOTE: Rather than add font-size, line-height and other typgraophic formatting to <dd> elements, use <p>, <ul> and other tags to mark-up content within <dd> and utilize <dd> for structure if necessary.
dd { }
*/

dt {
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.4em;
    margin-bottom: 3px;
    }

blockquote {
    padding: 0 20px 20px 20px;
    }

/*
NOTE: Rather than using <em> for italic or oblique, it is set to bold for emphasizing text in its inherited color. <strong> is used for bold text set in the Business Unit accent color, which is applied in the BU specific style sheet.
*/

em {
    font-weight: bold;
    }

strong {
    font-weight: bold;
    }

img,
p img {
    margin-bottom: 10px;
    margin-right: 10px;
    display: block;
    }

p img {
    float: left;
    }

img.no-margin {
    margin: 0;
    }

/* General links */

/*
NOTE: The color of most links are set in the Business Unit style sheets.
*/

a:link, 
a:visited,
a:hover,
a:active {
    text-decoration: none;
    }

a:hover,
a:active,
a.current {
    text-decoration: underline;
    }

/* home page main nav */

#main-nav li a:link,
#main-nav li a:visited,
#main-nav li a:hover,
#main-nav li a:active {
    width: 161px;
    height: 35px;
    text-indent: -9999px;
    display: block;
    background-position: 0 0;
    background-repeat: no-repeat;
    }

#main-nav li a:hover,
#main-nav li a:active {
    background-position: 0 -35px;
    text-decoration: none;
    }
    
#main-nav li#products a {
    width: 158px;
    background-image: url(images/nav/products.gif);
    }

#main-nav li#applications a {
    background-image: url(images/nav/applications.gif);
    }

#main-nav li#about a {
    background-image: url(images/nav/about.gif);
    }

#main-nav li#contact a {
    background-image: url(images/nav/contact.gif);
    }

#main-nav li#support a {
    background-image: url(images/nav/support.gif);
    }

#main-nav li#partners a {
    width: 158px;
    background-image: url(images/nav/partners.gif);
    }

/* icon links */

a.buy-now:link, 
a.buy-now:visited,
a.buy-now:hover,
a.buy-now:active {
    width: 80px;
    height: 25px;
    text-indent: -9999px;
    display: block;
    background: url(images/buy_now_button.gif) 0 0 no-repeat;
    text-decoration: none;
    }

a.buy-now:hover,
a.buy-now:active {
    background-position: 0 -25px;
    }

a.more:link, 
a.more:visited,
a.more:hover,
a.more:active {
    width: 62px;
    height: 25px;
    text-indent: -9999px;
    display: block;
    background: url(images/more_button.gif) 0 0 no-repeat;
    text-decoration: none;
    }

a.more:hover,
a.more:active {
    background-position: 0 -25px;
    }


a.print:link, 
a.print:visited,
a.print:hover,
a.print:active {
    padding: 1px 0 1px 15px;
    background: transparent url(images/print.gif) center left no-repeat;
    }

a.download:link, 
a.download:visited,
a.download:hover,
a.download:active {
    padding: 1px 0 1px 15px;
    background: transparent url(images/download.gif) center left no-repeat;
    }

a.email:link, 
a.email:visited,
a.email:hover,
a.email:active {
    padding: 1px 0 1px 15px;
    background: transparent url(images/email.gif) center left no-repeat;
    }

a.more-docs:link, 
a.more-docs:visited,
a.more-docs:hover,
a.more-docs:active {
    padding: 1px 0 1px 15px;
    background: transparent url(images/more_docs.gif) center left no-repeat;   
    }

/* header / drop down navigation links */

/*
NOTE: All footer and header nav styles are the same site-wide regardless of Business Unit, so their colors are set here.
*/

ul#header-nav a:link,
ul#header-nav a:visited,
ul#header-nav a:hover,
ul#header-nav a:active {
    color: #999;
    display: block;
    text-decoration: none;
 
    }

ul#header-nav a:hover,
ul#header-nav a:active {
    color: #7c98ae;
 

    }

ul#header-nav ul a:link,
ul#header-nav ul a:visited,
ul#header-nav ul a:hover,
ul#header-nav ul a:active {
    width: 180px;
    height: 25px;
    line-height: 25px;
    padding: 0 10px;
    color: #444444;
    background: #DDDDDD;
    display: block;
 

    }

ul#header-nav ul a:hover,
ul#header-nav ul a:active {
    color: #004466;
 
    background: #BBBBBB;
    }

ul#header-nav ul ul a:link,
ul#header-nav ul ul a:visited,
ul#header-nav ul ul a:hover,
ul#header-nav ul ul a:active {
    color: #fff;
    background: #666;
 

    }

ul#header-nav ul ul a:hover,
ul#header-nav ul ul a:active {
    color: #fff;
    background: #888;
 

    }


ul.meta-nav li a:link,
ul.meta-nav li a:visited,
ul.meta-nav li a:hover,
ul.meta-nav li a:active {
    color: #999;
    } 

ul#footer-bu-nav li a:link,
ul#footer-bu-nav li a:visited,
ul#footer-bu-nav li a:hover,
ul#footer-bu-nav li a:active {
    color: #7c98ae;
    }
    
/* ===  END general element formatting  === */



/* ===  START structural div formatting  === */

/*
NOTE: 'Container' divs are used for float position and setting widths. That way, we can nest a 'column' div within the 'container' and apply padding, vertical borders in the background, etc. to the 'column' without breaking the layout.

IMPORTANT: The rendering of each column is dictated by its parent div.
*/

#site-container {
    width: 960px;
    margin: 0 auto;
    text-align: left;
    }

/* header */

#header {
    width: 960px;
    padding-bottom: 30px;
    }

#header .column-1-container {
    width: 330px;
    float: left;
    }

#header .column-1 {
    margin: 0;
    padding: 0;
    }

#header .column-2-container {
    width: 630px;
    float: right;
    }

#header .column-2 {
    margin: 0;
    padding: 0;
    }

#header-search {
    width: 185px;
    margin: 10px 0;
    float: right;
    }

#search-input {
    float: left;
    }

#search-input input {
    width: 150px;
    }

#search-button {
    float: right;
    }

#header-nav-container {
    float: right;
    }

/* home page main nav */

#main-nav-container {
    width: 960px;
    margin-bottom: 15px;
    }
    

/* content container */

#content-container {
    width: 780px;
    float: left;
    clear: left;
    }


/* main-column-container */

#main-column-container {
    width: 780px;
    }

#main-column-container .column-1-container {
    width: 450px;
    float: left;
	
    }


#main-column-container .column-1 {
    padding-right: 15px;
    background: transparent url(images/vert_col_divider.gif) top right repeat-y;
    }

#main-column-container .column-2-container {
    width: 330px;
    float: right;
    }

#main-column-container .column-2 {
    padding: 0 15px 0 20px;
    background: transparent url(images/vert_col_divider.gif) top right repeat-y;
    }

#homepage #main-column-container .column-1-container {
    width: 330px;
    float: left;
    }

#homepage #main-column-container .column-2-container {
    width: 450px;
    float: right;
    }

/*
NOTE: The 'single-product-container' class should be added to the 'main-column-container' div on the PRODUCT LEVEL PAGE ONLY. It adds a border to the top of the div and pads the top of the columns within it, which is specific to the product level page layout.
*/
.single-product-container {
    border-top: 1px solid #dedede;
    }

#main-column-container.single-product-container .column-2 {
    padding-top: 20px;
    }
    

/* billboard content */

#billboard-container-3col {
    width: 960px;
    margin-bottom: 15px;
    clear: both;
    }

#billboard-container-2col {
    width: 780px;
    margin-bottom: 15px;
    }
    

/* feature content */

.feature-container-1col {
    width: 450px;
    margin-bottom: 15px;
    background: transparent url(images/feature_mid_1col.gif) top center repeat-y;
    }

.feature-1col {
    padding: 20px 20px 0 20px;
    background: transparent url(images/feature_top_1col.gif) top center no-repeat;
    }

.feature-footer-1col {
    width: 450px;
    height: 5px;
    background: transparent url(images/feature_bottom_1col.gif) bottom center no-repeat;
    }

.feature-container-2col {
    width: 780px;
    margin-bottom: 15px;
    background: transparent url(images/feature_mid_2col.gif) top center repeat-y;
    }

.feature-2col {
    padding: 20px;
    background: transparent url(images/feature_top_2col.gif) top center no-repeat;
    }

.feature-footer-2col {
    width: 780px;
    height: 5px;
    background: transparent url(images/feature_bottom_2col.gif) bottom center no-repeat;
    }

.feature-container-3col {
    width: 960px;
    margin-bottom: 15px;
    clear: both;
    }

#homepage .feature-container-3col .column-1,
#homepage .feature-container-3col .column-2,
#homepage .feature-container-3col .column-3 {
    width: 310px;
    float: left;
    }

#homepage .feature-container-3col .column-2 {
    margin: 0 15px;
    }

/* product overview content */

#product-overview-container {
    width: 780px;
    background: transparent url(images/vert_col_divider.gif) top right repeat-y;
    }

#product-overview-container .column-1-container {
    width: 400px;
    float: left;
	    padding-bottom: 15px;
    }

#product-overview-container .column-2-container {
    width: 380px;
    float: right;
    }

#product-overview-container .column-2 {
    padding: 0 15px 0 0;
    }

/* sidebar */

.sidebar-container {
    width: 180px;
    float: right;
    }

.sidebar {
    padding-left: 10px;
    }
    
    
/* footer */

#footer {
    margin-top: 10px;
    width: 960px;
    background: transparent url(images/footer_mid.gif) repeat-y;
    }

#footer-top {
    width: 960px;
    height: 20px;
    background: transparent url(images/footer_top.gif) no-repeat;
    }

#footer-bottom {
    width: 960px;
    height: 20px;
    clear: both;
    background: transparent url(images/footer_bottom.gif) no-repeat;
    }

#footer .column-1-container {
    width: 170px;
    float: left;
    }

#footer .column-1 {

    }

#footer .column-2-container {
    width: 790px;
    float: right;
    }

#footer .column-2 {
    padding: 0 20px;
    background: transparent url(images/vert_col_divider.gif) top left repeat-y;
    }

.clear {
    clear: both; 
    line-height: 0;   
    }

.divider {
    width: 100%;
    height: 15px;
    margin-bottom: 15px;
    clear: both;
    background: transparent url(images/horiz_divider.gif) center left repeat-x;
    }

#footer .divider {
    margin-bottom: 0;
    }
    
/* ====  END structural div formatting  === */

/* contact form styles - js july 9, 2010  */
#leadform{}
div.contactform {
	margin: 0 40px 0 10px;
    padding: 10px 0 10px 20px;
	float: left;
	width: 50%;
}
div.extracontent {}
span.err {
	color: #f47b20;
}
div.contactform label{
	display: block;
	color: #666666;
	font-size: 1.2em;
	font-weight: bold;
} 
input.entrydata,
select.entrydata,
textarea.entrydata{
	margin: 3px 0 18px 3px;
	width: 225px;
	border: 1px solid #a5a5a5;
	color: #555;
}
textarea.entrydata{
font-family: inherit;
font-size: 1.2em;
}
.formbutton {
	padding: 2px;
	color: #004165;
	width: 100px;
	display: block;
}
hr {
	clear: both;
	visibility: hidden;
}