/*
DT.com merged CSS, developing
1. Initialize CSS / core wrapper / tabs / tab container
2. Menus
3. Remaining core wrapper
4. Transitional (new styles)
5. Specialty (buttons, rotator, etc.)
Version : 5.0
*/

/*
Item Name : CSS3 Mega Drop Down Menu 5.0
*/

/*  _______________________________________

	01 MENU BAR
    _______________________________________  */

.wrapper_menu {
	display:block;
	position: relative;
	z-index:99; /* popups from menu must be 100+ */
}
	.wrapper_menu .menu {
		list-style:none;
		margin:0 auto;
		/*margin-bottom:2px;*/
		/*height:29px;*/
		height:29px;
		/*padding-bottom:3px;*/
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
	}
.menu li {
	float:left;
	text-align:center;
	position:relative;
	margin-right:1px;	
	margin-top:0px;	
	border:none;
}
.menu .fullwidth {
	position: static !important;
}
.menu li:hover {
	border-bottom:none;
	margin-right:0px;	
    -webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
.menu li.nodrop:hover {
	padding: 4px 10px 4px 9px;
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
    border-radius: 5px;
}
.menu li.nodrop:hover a {
	padding: 0;
}
.menu li a {
	outline:0;
	padding: 1px 7px 0px 7px;	
	margin-top:0px;
	text-decoration:none;
	display:block;
}
.menu li:hover a {
	text-shadow: none;
	position:relative;
	z-index:11;
	margin-top:0px;	
	padding: 0px 6px 1px 6px;	
}
.menu li:hover div a {
	display:inline;
}

.menu li .drop,
.menu li:hover .drop {
	padding-right:10px;
}

/* Right aligned menu item */

.menu li.right {
	float:right;
	right:0;
	margin-right:0;
}
.menu li.right:hover {
	margin-right:-1px;
}


/*  _______________________________________

	02 DROP DOWN MENU - unchanged
    _______________________________________  */

/* Left & right aligned common styles */

.menu .dropdown_1column, 
.menu .dropdown_2columns, 
.menu .dropdown_3columns, 
.menu .dropdown_4columns,
.menu .dropdown_5columns,
.menu .dropdown_fullwidth {
	margin:4px auto;
	left:-999em;
	position:absolute;
	padding:10px;
	text-align:left;
	-webkit-border-radius: 0 5px 5px 5px;
	-moz-border-radius: 0 5px 5px 5px;
	border-radius: 0 5px 5px 5px;
}

/* Drop Downs Sizes */

.menu .dropdown_1column {width: 145px;}
.menu .dropdown_2columns {width: 300px;}
.menu .dropdown_3columns {width: 455px;}
.menu .dropdown_4columns {width: 610px;}
.menu .dropdown_5columns {width: 765px;}
.menu .dropdown_fullwidth {
	width: 920px;
    -webkit-border-radius:5px;
	-moz-border-radius:5px;
    border-radius:5px;
}
.menu li .first_fullwidth {
    -webkit-border-radius: 0 5px 5px 5px;
	-moz-border-radius: 0 5px 5px 5px;
    border-radius: 0 5px 5px 5px;
}

/* Showing Drop Down on Mouse Hover - Left aligned */

.menu li:hover .dropdown_1column, 
.menu li:hover .dropdown_2columns, 
.menu li:hover .dropdown_3columns,
.menu li:hover .dropdown_4columns,
.menu li:hover .dropdown_5columns {
	left:-1px;
}
.menu li:hover .dropdown_fullwidth {
	left:21px;
	display: block;
}

/* Showing Drop Down on Mouse Hover - Right aligned */

.menu li .align_right {
    -webkit-border-radius: 5px 0 5px 5px;
	-moz-border-radius: 5px 0 5px 5px;
    border-radius: 5px 0 5px 5px;
}
.menu li:hover .align_right {
	left:auto;
	right:-1px;
	top:25px;
}
.menu li.right:hover .dropdown_fullwidth {
	right:18px;
	top:33px;
}

/* Columns Sizes */

.menu .col_1,
.menu .col_2,
.menu .col_3,
.menu .col_4,
.menu .col_5,
.menu .col_6 {
	float: left;
	margin-left: 10px;
}
.menu .col_1 {width:145px;}
.menu .col_2 {width:300px;}
.menu .col_3 {width:455px;}
.menu .col_4 {width:610px;}
.menu .col_5 {width:765px;}
.menu .col_6 {width:920px;}

/* IMPORTANT */

/* Use the firstcolumn class for the items that stick to the left edge of the dropdown */
.menu .firstcolumn {
	margin-left: 0; /* Clearing margin & left */
	clear: left;
}


/*  _______________________________________

	05 LIGHT THEME (customized)
    _______________________________________  */

.menu_light_theme ul li:hover,
.menu_light_theme ul li.nodrop:hover {
	background:#eeeeee;
	border:1px solid #444444;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#F4F4F4), to(#EEEEEE));
	background: -webkit-linear-gradient(top, #F4F4F4, #EEEEEE);
	background: -moz-linear-gradient(top, #F4F4F4, #EEEEEE);
	background: -o-linear-gradient(top, #F4F4F4, #EEEEEE);
	background: -ms-linear-gradient(top, #F4F4F4, #EEEEEE);
	background: linear-gradient(top, #F4F4F4, #EEEEEE);	
}

.menu_light_theme ul .dropdown_1column, 
.menu_light_theme ul .dropdown_2columns, 
.menu_light_theme ul .dropdown_3columns, 
.menu_light_theme ul .dropdown_4columns,
.menu_light_theme ul .dropdown_5columns,
.menu_light_theme ul .dropdown_fullwidth,
.menu_light_theme ul .levels li ul {
	background:#eeeeee;
	border:1px solid #444444;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFFFFFFF, endColorstr=#FFEEEEEE);	
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFFFFFFF, endColorstr=#FFEEEEEE)";	
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EEE));
	background: -webkit-linear-gradient(top, #FFF, #EEE);
	background: -moz-linear-gradient(top, #FFF, #EEE);
	background: -o-linear-gradient(top, #FFF, #EEE);
	background: -ms-linear-gradient(top, #FFF, #EEE);
	background: linear-gradient(top, #FFF, #EEE);
}

.menu_light_theme ul h1, 
.menu_light_theme ul h2, 
.menu_light_theme ul h3 {
	border-bottom:1px solid #000;	
}

.menu  hr {
	border: 0;
	margin: 0px;	
	color: #000;
	background-color: #000;	
	height: 1px;
	text-align: left;
}

.col_2imgleft hr {
	width:60%;
}

.menu_light_theme ul .imgshadow_dark { /* Better style on dark background */
	background:#FFFFFF;
	border:1px solid #333333;
	-moz-box-shadow:0 0 5px #000000;
	-webkit-box-shadow:0 0 5px #000000;
	box-shadow:0 0 5px #000000;
}
.menu_light_theme ul .imgshadow_light { /* Better style on light background */
	background:#FFFFFF;
	border:2px solid #FFFFFF;
	-webkit-box-shadow:0 0 5px #666666;
	-moz-box-shadow:0 0 5px #666666;
	box-shadow:0 0 5px #666666;
}

.menu_light_theme ul .levels a.parent, 
.menu_light_theme ul .levels a.parent:hover {
	background: url("../images/template/mmenu/arrow_right1.png") right center no-repeat;
}


/* 2-Levels Drop Down */

.menu .levels, 
.menu .levels ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.menu li:hover .levels a {
	display:block;
}
.menu .levels a {
	display: block;
	width: 10em;
}
.menu .levels li {
	float: left;
	width:150px;
}
.menu .levels li ul {
	position: absolute;
	top:-23px;
	margin:15px 0 0 4px;
	padding:6px;
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
    border-radius: 5px;
	left: -999em;
}
.menu .levels li:hover ul ul, 
.menu .levels li:hover ul ul ul {
	left: -999em;
}
.menu .levels li:hover ul, 
.menu .levels li li:hover ul, 
.menu .levels li li li:hover ul {
	left: 142px;
}


/*  _______________________________________

	CONTENT STYLES (custom)
    _______________________________________  */


/* top menu names on masthead */
#menu_ul_structure .mbuttons,
#menu_ul_structure .mbuttons,
.mbuttons,
.mbuttons {
	position:relative;
	float:left;
	font-size:11px;	
	font-weight:bold;
	/*margin-top:5px;*/
	font-family:Verdana, Arial, Helvetica, sans-serif;	
	color:#000000;	
}

/* HEADER STYLES */
.menu h1 {
	font-weight:400;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:16px;
	font-weight:bold;
	padding-top:16px;
	margin-top:4px;	
	margin-bottom:8px;	
	padding-bottom:8px;
}

.menu h2 {
	font-weight:400;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:bold;	
	padding-top:16px;	
	margin-bottom:0px;	
	padding-bottom:8px;
}
.menu h3 {
	font-weight:600;
	font-size:14px;
	margin-bottom:4px;
	margin-top:2px;	
	padding-bottom:3px;	
}

.menu h4 {
	font-size:14px;
	padding:0; 
	margin:10px 0px 2px 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;	
}

#menu_ul_structure .b {font-weight: bold;}


/* UL LIST STYLES */

/* Standard lists styles */

.menu li ul {
	list-style:none;
	padding:0;
	margin:0;	
	margin:0 0 12px 0;
}
.menu li ul li {
	font-size:12px;
	line-height:22px;
	position:relative;
	margin:0;
	padding:0;	
	float:left;
	text-align:left;
	width:145px;
}

.menu li ul li:hover {
	background:none;
	border:none;
}
	
.menu_light_theme ul li .ulwide li {
	width: 100%;
	padding-left:0;
	margin-left:24px;
	list-style:square;	
	font-weight:normal;	
}

.menu_light_theme ul .ulwide li {
	width: 100%;
	padding-left:0;
	margin-left:24px;
	list-style:square;
	font-weight:normal;	
}

.menu_light_theme li .compact a:hover,
.menu_light_theme li .compact {
	font-size:12px;
	line-height:14px;
	font-weight:normal;	
	padding-top:1px;
	padding-bottom:1px;	
	margin-top:1px;
	margin-bottom:1px;	
}

.menu_light_theme li .compact2 a:hover,
.menu_light_theme li .compact2 {
	font-size:12px;
	line-height:14px;
	font-weight:normal;	
	padding-top:1px;
	padding-bottom:1px;	
	margin-top:1px;
	margin-bottom:1px;	
}

/*** PADDING, standard tags ****/

.menu_container p {
	font-weight: normal;
}

.menu p {
	font-family:Verdana, Arial, Helvetica, sans-serif;	
	font-size:12px;
	line-height:14px;	
	padding: 1px 0px 1px 0px;
	margin:5px 0px 5px 0px;
}

/*** PADDING by CLASS ****/

.menu_container .br {
	padding:0px;
	margin:0px;
	margin-bottom:2px;	
	font-size:12px;		
	line-height:16px;	
	font-weight:normal;		
}

.menu_firstheader {
	padding-top:0px !important;	
}

.menu .pusher { /* Use this pucher if you want to give more vertical spacing between your rows of content */
	margin-top:10px;
}

#menu_ul_structure .menu_container hr {
    margin-bottom: 2px;
    margin-top: 1px;	
}


/* Align all text left */

.menu p,
.menu ul,
.menu li,
.menu h1,
.menu h2,
.menu h3, 
.menu h4 {
	text-align:left;
}


/* LINK STYLES */
/* Important! Define in sequence: link, visited, hover, active */

/*masthead button links */
#menu_ul_structure .mbuttons a:link,
#menu_ul_structure .mbuttons a:visited,
.mbuttons a:link,
.mbuttons a:visited {
	color:#222 !important;
	border:0px;	
}

#menu_ul_structure .mbuttons a:hover,
#menu_ul_structure .mbuttons a:hover,
.mbuttons a:hover,
.mbuttons a:hover {
	color:#0000FF !important;
	background:transparent !important;	
}

#menu_ul_structure .mbuttons a:active,
#menu_ul_structure .mbuttons a:active,
.mbuttons a:active,
.mbuttons a:active {
	color:#C00 !important;
	background:transparent !important;	
}

#menu_ul_structure .menu_container a:link,
#menu_ul_structure .menu_container a:visited,
.mbuttons a:link,
.mbuttons a:visited {
	color:#020D9E !important;
}

#menu_ul_structure .menu_container a:hover,
#menu_ul_structure .menu_container a:hover,
.mbuttons a:hover,
.mbuttons a:hover {
	color:#0000FF !important;
	background:#ffffaa !important; /*W3C yellow*/
}

#menu_ul_structure .menu_container a:active,
#menu_ul_structure .menu_container a:active,
.mbuttons a:active,
.mbuttons a:active {
	color:#C00 !important;
	background:transparent !important;	
}


/*links from inside menus */

.menu_light_theme .menu li div a,	
.col_1 li a,
.col_1 a:link, 
.col_1 a:visited,
.dropdown_2columns li a,
.dropdown_2columns a:link, 
.dropdown_2columns a:visited,
.dropdown_1column li a,
.dropdown_1column a:link, 
.dropdown_1column a:visited {
	color:#020D9E;
	font-family:Verdana, Arial, Helvetica, sans-serif;		
	border-bottom:none;
	text-decoration:none;
	text-shadow:none;
	border:none;
	padding:0;	
	display:inline;	
	position:relative;
	z-index:11;
	margin-top:0px;	
	outline:0;	
}	

.col_2  li a:link, 
.col_2  li a:visited {
	font-weight: normal;
}

.col_2  li a:active {
	color: #C00000  !important; /*W3C red*/
}


#menu_ul_structure .menu_container li div a,	
#menu_ul_structure .menu_container  li a,
#menu_ul_structure .menu_container  a:link, 
#menu_ul_structure .menu_container  a:visited,
#menu_ul_structure .menu_container  li a,
#menu_ul_structure .menu_container  a:link, 
#menu_ul_structure .menu_container  a:visited {
	color:#020D9E !important;
}	

#menu_ul_structure .menu_container li a:hover, 
#menu_ul_structure .menu_container h4 a:hover {
	color:#0000FF !important;
}	

#menu_ul_structure .menu_container h4 a:hover {
	background:#ffa; /*W3C recommended light yellow*/
}	

#menu_ul_structure .menu_container h4  a:active {
	color:#C00000 !important; /*W3C recommended red, #C00000 aka #C00 */
}

#menu_ul_structure .menu_container a img,
#menu_ul_structure .menu_container :link img,
#menu_ul_structure :visited img {
	border:0 !important;
	background:transparent !important;	
	}

	
#menu_ul_structure .menu_subhead a.subhead_partial_href {
	color: inherit !important;
}	

/*No yellow background on images / buttons on hover */

#menu_ul_structure .menu_container a.button:hover {
	background:transparent !important;
}

a img,
a:link img,
a:hover img,
a:active img,
a.noline:hover img,
.noline,
.drop .noline,
#menu_ul_structure .menu_container .noline,
#menu_ul_structure .menu_container a img,
#menu_ul_structure .menu_container a:hover img {
	background:transparent !important;
}





/*** SPECIALTY FORMATTING ****/
/* Icon paragraphs */

.menu .help,
.menu .favorite,
.menu .mail,
.menu .print {
	padding-left:36px;
	margin-bottom:18px;
}
.menu .help {background:url("/images/template/mmenu/help.png") no-repeat 0 2px;}
.menu .favorite {background:url("/images/template/mmenu/favorite.png") no-repeat 0 2px;}
.menu .mail {background:url("/images/template/mmenu/mail.png") no-repeat 0 2px;}
.menu .print {background:url("/images/template/mmenu/print.png") no-repeat 0 2px;}

/* Images styles */

.menu .imgshadow_dark,
.menu .imgshadow_light {
	/*padding:4px;*/
	padding:0px;	
	margin-top:5px;
}
.menu .img_left { /* Image sticks to the left */
	width:auto;
	float:left;
	margin:2px 15px 5px 0;
}
.menu .img_right { /* Image sticks to the right */
	width:auto;
	float:right;
	margin:2px 0 5px 15px;
}

/*  _______________________________________

	04 CONTACT FORM
    _______________________________________  */

.contact_form label, 
.contact_form legend {
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
}
.contact_form legend {
	margin-bottom:10px;
}
.contact_form {
	display: block;
	margin-bottom:10px;
}
.contact_form label {
	display: inline-block; 
	float: left; 
	height: 36px; 
	line-height: 36px; 
	width:80px;
	font-size:12px; 
}
.contact_form input, 
.contact_form textarea, 
.contact_form select {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	width:200px;
	padding: 5px;
	margin: 7px 0; 
    -webkit-border-radius: 3px;
	-moz-border-radius: 3px;
    border-radius: 3px;
}   
.contact_form textarea {
	resize:none;
}   
.contact_form .required {
	color:#C00;
}
.contact_form .form_buttons {
	margin:4px 0 0 80px;
}
.contact_form input.button {
	width: 80px;
	margin-right:10px;
	cursor: pointer;
	padding: 4px 7px 4px 7px;
}
.contact_form .special {
	display:none;
}
.contact_form .error, 
.contact_form .sent {
	font-size:11px;
	padding:2px 5px 2px 5px;
	text-shadow:none;
	-webkit-border-radius:3px; 
	-moz-border-radius:3px; 
	border-radius: 3px;
}
.contact_form .error {
	background:#FBE5E2; 
	border:#F2A197 solid 1px; 
	color:#992213;
}
.contact_form .sent {
	background:#E1F8CB; 
	border:#C6D880 solid 1px; 
	color:#37620d;
}

/*  _______________________________________

	FORM - 05 LIGHT THEME - adjusts prior
    ____________________________________  */

.menu_light_theme ul .contact_form input:focus, 
.menu_light_theme ul .contact_form textarea:focus, 
.menu_light_theme ul .contact_form select:focus,
.menu_light_theme ul .contact_form input:hover, 
.menu_light_theme ul .contact_form textarea:hover, 
.menu_light_theme ul .contact_form select:hover {
	box-shadow: rgba(0,0,0, 0.7) 0 0 3px;
	-moz-box-shadow: rgba(0,0,0, 0.7) 0 0 3px;
	-webkit-box-shadow: rgba(0,0,0, 0.7) 0 0 3px;  
	border:1px solid #333333;
}
.menu_light_theme ul .contact_form input, 
.menu_light_theme ul textarea, 
.menu_light_theme ul select {
	color: #000; 	
	background-color:#fff;	
	border:1px solid #0A0A0A;
}
.buttonMM {
	background-color:#FFF !important;
	border:1px solid #0A0A0A !important;
	color:#000 !important;	
	cursor: pointer !important;	
}
.menu_light_theme ul .contact_form input.button {
	background-color:#1E1E1E;
	border:1px solid #0A0A0A;
	color:#cccccc;	
}
.menu_light_theme ul .contact_form input.button:hover {
	color:#eeeeee;	
	background-color:#222222;
	border:1px solid #000000;
}


/*  _______________________________________

	Core Wrapper
    _______________________________________  */

.foo{display:none;}
BODY {FONT: 11px Verdana; BACKGROUND-COLOR: #FFFFFF; background: url('/images/template/bg-shimmer-optimal_2560x1.png'); background-position: top center; background-repeat: repeat-y; text-align: center;}
.print-only {display:none;}
/*Zero down margin and padding on all elements*/
* {margin:0;padding:0;}
table {
	border-spacing:0;
	border-collapse:collapse;
}
body {font-size:11px;font-family:Verdana,Arial,Helvetica,sans-serif;background-color:#ffffff;}
TABLE, TD {font-size:11px;font-family:Verdana,Arial,Helvetica,sans-serif;}
/*next: styles required by cart; list early to overwrite later as needed*/
/*core*/
h1,h2,h3,h4,h5,h6,pre,code {font-size:1em;}
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input {margin:0;padding:0}
address {font-style:normal}
/* standard HTML headers */
h1 {font-family:Arial,Helvetica,sans-serif;font-size:14pt;padding-bottom:14px;}
h2 {font-family: Arial,Helvetica,sans-serif;font-size:13pt;padding-bottom:14px;}
h2.nopadding {padding-bottom:2px;}		
h3 {font-family: Arial, Helvetica, sans-serif;font-size: 12pt;padding-bottom:14px;}
h4 {font-family: "Trebuchet MS",Trebuchet,Verdana,Arial,Helvetica,sans-serif;font-size:11pt;padding-bottom:10px;}
h5 {font-family: Verdana,Arial,Helvetica,sans-serif;font-size:10pt;padding-top:8px;padding-bottom:8px;color:#333333;/*dark grey*/}
h6 {font-family: Verdana,Arial,Helvetica,sans-serif;font-size:11px;line-height:15px;padding-top:8px;padding-bottom:8px;color:#333333;/*dark grey*/}
/*link styles*/
a img,:link img,:visited img {border:0 !important}
a:focus{outline:none;}
a:link{color:#000;text-decoration:none;border-bottom:1px dotted #95a0aa;}
a:visited{color:#000;text-decoration:none;border-bottom:1px dotted #95a0aa;}
a:hover{color:#0000FF;text-decoration:none;border:0px;}
a:active{
	color:#C00 !important;
	text-decoration:none;
	border:0px;
}
a.noline:link,a.noline:visited,a.noline:hover,a.noline:active{border:0;}
a.hlink:link,a.hlink:visited,a.hlink:hover{border:0 !important;}
.hlink{font-weight:bold;border:none;font-family: "Trebuchet MS",Trebuchet,Arial,Helvetica,sans-serif;}
a.nolineBold:link,a.nolineBold:visited,a.nolineBold:hover,a.nolineBold:active{border:0 !important;}
.nolineBold{font-weight:bold;border:none;}
a.nolineBoldGrey:link,a.nolineBoldGrey:visited,a.nolineBoldGrey:hover{border:0 !important;color:#515151;}
a.nolineBoldGrey:hover{color:#009900;}
.nolineBoldGrey{font-weight:bold;border:none;}
a.hoverLine:hover {border-bottom:1px solid #009900 !important;}
a.hoverLine {border:0pt none !important;}
a.hoverLineBold:hover {font-weight:bold;color:#0000FF;}
a.hoverLineBold {font-weight:bold; border:0pt none !important;}
a.linkBold:hover {font-weight:bold; border-bottom:1px solid #009900 !important;}
a.linkBold {font-weight:bold; border-bottom:1px solid #95a0aa !important;}
.zbHeadline{color:#009900;font-weight:bold;border:none;}
a.zbHeadline:link,a.zbHeadline:visited{color:#009900;font-weight:bold;border:none;}
a.zbHeadline:hover {color:#000000;font-weight:bold;border-bottom:1px solid #009900 !important;}
.zbLink{color:#008800;font-weight:bold;border:none;}
a.zbLink:link,a.zbLink:visited{color:#008800;font-weight:bold;}
a.zbLink:hover {color:#000000;font-weight:bold;border-bottom:1px solid #009900 !important;}
a.dotted:hover {color:#009900;background-color:yellow;text-decoration:none;border-bottom:1px solid #009900 !important;}
a.dotted:link,a.dotted:visited{text-decoration:none;color: #000000;border-bottom:1px dotted #009900 !important;}
a.dottedbold:link,a.dottedbold:visited{text-decoration:none;font-weight:bold;color: black;border-bottom:1px dotted black !important;}
a.dottedbold:hover {font-weight:bold;color:#000000;background-color:yellow;text-decoration:none;border:0px;}
a.dottedbold:active {color:#C00000;}
a.dashed:hover {font-weight:bold;color:#009900;background-color:yellow;text-decoration:none;border-bottom:1px solid #009900 !important;}
a.dashed:link,a.dotted:visited{text-decoration:none;color: #000000;border-bottom:1px dashed #009900 !important;}
/*a:zbHeadline {color:#009900;font-weight:bold;border:none;}
a:zbHeadline:hover {color:#000000;font-weight:bold;border-bottom:1px solid #009900 !important;}*/
a img,:link img,:visited img {border:0 !important}
.menuStyle{font-weight:bold !important;}
.nprt {border:0px}
.mmenuDT{font-weight:bold;border:0 !important;}

.tdn {text-decoration:none;border:none;}
.zenlink {color:#00CC00;/*zen green-"multi-monitor revolution*/}
.zenlink2 {color:#009900;/*zen green-"multi-monitor revolution*/}
.zenlink2:hover {color:#333333;}
.blacklink {color:#000000;}
.blacklink:hover {color:#009900;}
.whitelink {color:#FFFFFF;}
.orangelink {color:#ff8429;}
.graylink {color:#565656;}
/*typography*/
/*Mega Menu suppress next lines */
p {padding-top:0.8em;padding-bottom:0.8em;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;line-height:15px}
ul {padding-left:0;margin-left:24px;list-style:square;}
li {font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;line-height:15px;margin-top:0;margin-bottom:0;padding-top:4px;padding-bottom:3px;}
ul.ulg{padding-left:0;margin-left:16px;list-style-type:square;padding-top:1px;padding-bottom:1px;
list-style-image:url(/images/template/bullet12g.gif);}
ul.ulb{padding-left:0;margin-left:16px;list-style-type:square;padding-top:2px;padding-bottom:2px;
list-style-image:url(/images/template/bullet12.gif);}
ul.ulbi{padding-left:0;margin-left:32px;list-style-type:square;padding-top:1px;padding-bottom:1px;
list-style-image:url(/images/template/bullet12.gif);}
li.compact {font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11px;line-height:13px;margin-top:0;margin-bottom:0;padding-top:1px;padding-bottom:1px;}
.compact {font-family:Verdana,Arial,Helvetica,sans-serif;font-size:10px;line-height:12px;margin-top:0;margin-bottom:0;padding-top:1px;padding-bottom:1px;}
li.compact2 {font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13px;line-height:15px;margin-top:0;margin-bottom:0;padding-top:1px;padding-bottom:1px;}
ul.ul0{padding-left:0;margin-left:0px;list-style-type:none;padding-top:1px;padding-bottom:1px;}
ul.footnote{padding-top:5px;padding-bottom:10px;}


.xp {font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11px;line-height:14px;margin-top:0;margin-bottom:0;padding-top:4px;padding-bottom:4px;}
.i {font-style:italic;}
.b {font-weight:bold;}
.gb {color:#333333;font-weight:bold;/*grey*/}
.zb {color:#009900;font-weight:bold;/*zen green*/}
.mb {color:#990000;font-weight:bold;/* zen maroon */}
.ob {color:#ff8429;font-weight:bold;/*zen orange*/}
.dob {color:#dd6600;font-weight:bold;/*dark orange*/}
.dgb {color:#589346;font-weight:bold;/*Dell green bold*/}

hr {
	border: 0px;
	margin: 0px;	
	color: #aaa;
	background-color: #aaa;	
	height: 1px;
	text-align:left;	
}

#home_whatsnew hr,
hr.hr_trimmed {
	width:95%;
}

#brand-wrapper {
	position:relative;
	float:left;
	margin:0px;
	padding-top:5px;
	font-size:12px;	
	font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;
}
	
#breadcrumb {
	margin-bottom:0px;
	padding-bottom:0px;
	padding-top:10px;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	width:100%;
	padding:5px 0px 5px 15px;	
}
#stratosphere-teasertext {
	margin-left:20px;
	margin-right:20px;
	margin-bottom:30px;
	padding:0px;
}

#stratosphere-teasertext-leftcol {
	width:62%;
	padding-right:20px;
	font-size:14px;
	font-family: Verdana,Arial,Helvetica,sans-serif;
}

#stratosphere-teasertext-rightcol {
	width:38%;
	padding-left:10px;
}

#stratosphere-teasertext-price {
	font-size:14px;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-weight:bold;
	padding-bottom:15px;
}

#stratosphere-teasertext-highlights {
	font-weight:bold;
	padding-bottom:5px;
}

#infobar {
	padding-left:20px;
	margin-bottom:0px;
	padding-bottom:0px;
} 
#maintabscontainer{
	text-align:left;
	width:100%;
}

#stratosphere-model-overview {
	width:95%;
	margin:auto;
	text-align:center;
	margin-bottom:20px;	
}

#stratosphere-model-leftcol {
	width:50%;
	padding-top:20px;	
	padding-right:5px;	
	vertical-align:top;
	text-align:left;
}

#stratosphere-model-rightcol {
	width:50%;
	padding-top:20px;	
	padding-left:40px;
	margin-right:5px;		
	vertical-align:top;
	text-align:left;
}

h1.stratosphere-model-headline {
	font-family: "Trebuchet MS",Trebuchet,Arial,Helvetica,sans-serif;
	font-size:15pt;
	font-weight:bold;
}

div.stratosphere-model-head2 {
	font-size:13pt;
	padding-top:10px;
}

.section-header {
	padding-top:10px;
	padding-bottom:5px;
}


.bkb {color:Black;font-weight:bold;}
.fwn {font-weight:normal;}
.red {color:Red;}
.white {color:White;}
.black {color:Black;}
.z {color:#009900;/*alt zen green*/}
.zengreen {color:#00BF19;}
.darkgreen {color:#006600;}
.dgb {color:#006600;font-weight:bold;/*dark green bold*/} 
.zenblue {color:#0000CC;}
.zenblue2 {color:#0033ff;}
.subhead {font-size:10pt;font-family:Verdana,Arial,Helvetica,sans-serif;font-weight:bold;line-height:18px;}
.greysubhead {font-family:Verdana,Arial,Helvetica,sans-serif;font-size:10pt;font-weight:bold;color:#565656;}
.verdana {font-family:Verdana,Arial,Helvetica,sans-serif;}
.trebuchet {font-family: "Trebuchet MS",Trebuchet,Arial,Helvetica,sans-serif;}
.arial {font-family: Arial, Helvetica, sans-serif;}
.lucida {font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;}
.verdana9bw {font-size:9pt;font-family:Verdana,Arial,Helvetica,sans-serif;font-weight:bold;color:White; /* footer text */}
.verdana11pxg {font-size:11px;font-family:Verdana,Arial,Helvetica,sans-serif;font-weight:bold;color:#333333;/* Strat table headers */}
.verdana11px {font-size:11px;font-family:Verdana,Arial,Helvetica,sans-serif; /* Strat table headers */}
.whitesmall {color:white;font-family:Arial,Helvetica,sans-serif;font-size:8pt; /* footer text */}
.sidebar {font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13px;line-height:17px;}
.feature {font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13px;line-height:18px;/*alt = 9pt*/}
.highlights {font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;line-height: 17px;}
.navtext {color:#00bf19;text-decoration:none;font-weight:normal;font-size:14px; font-family:Verdana,Arial,Helvetica,sans-serif;}
.footertext {color:#565656;text-decoration:none;font-weight:normal;font-size: 9px; font-family:Verdana,Arial,Helvetica,sans-serif;}
.footertext2 {color:black;text-decoration:none;font-weight:bold; font-size:12px; font-family:Verdana,Arial,Helvetica,sans-serif;}
.mouse {color:#565656;text-decoration:none;font-weight:normal;font-size:8px;font-family:Verdana,Arial,Helvetica,sans-serif;}
.popgloss {font-family:Verdana,Arial,Helvetica,sans-serif;font-size:1em;line-height:15px;background-color:white; margin:0px 35px;padding:20px 0px;text-align:left;/*alt = 9pt*/}
/*font size*/
.smaller {font-size:smaller;}
.px11 {font-size:11px;/*footer text*/}
.px12 {font-size:12px;}
.px13 {font-size:13px;}
.px14 {font-size:14px;}
.px16 {font-size:16px;}
.pt8 {font-size:8pt;}
.pt9 {font-size:9pt;}
.pt10 {font-size:10pt;}
.pt11 {font-size:11pt;}
.pt12 {font-size:12pt;}
.pt13 {font-size:13pt;}
.pt14 {font-size:14pt;}
.pt15 {font-size:15pt;}
.pt16 {font-size:16pt;}
.pt17 {font-size:17pt;}
.pt18 {font-size:18pt;}
.pt20 {font-size:20pt;}
.pt24 {font-size:24pt;}
.lh13 {line-height:13px;padding-top:2px;padding-bottom:2px;}
.currencysuffix {font-weight: normal;}
.sbullet_td{text-align:left;padding-left:10px;width:100%;vertical-align:middle;}
/*forms*/
.radiodiv {margin-left:5px;margin-top:2px;margin-bottom:2px;padding-bottom:0px;font-size:10px;}
.radiobutton {margin-top:2px;}
/* borders and boxes */
.gspot {border: 1px solid #565656;/*grey*/}
table.tborder, td.tborder{border-color: #aaa;border-style: solid;}
table.tborder{border-width: 1px 1px 1px 1px;border-spacing: 0;border-collapse: collapse;}
td.tborder{margin: 0;padding: 4px;border-width: 1px 1px 0 0;background-color: #FFF;}
td.tbgrnctr, td.tbctr, td.tbgrnctr4col, td.tbctr4col, td.tbctrspan{border-color: #aaa;border-style: solid;}
td.tbctr{margin: 0;padding: 2px 4px;border-width: 1px 1px 0 0;background-color: #FFF;text-align:center;width:120px;}
td.tbgrnctr{margin: 0;padding: 2px 4px;border-width: 1px 1px 0 0;background-color: #FFF;text-align:center;width:120px;background-color:#dafccb;}
td.tbctrspan{margin: 0;padding: 2px 2px;border-width: 1px 1px 0 0;background-color: #FFF;text-align:center;}
td.tbctr4col{margin: 0;padding: 2px 2px;border-width: 1px 1px 0 0;background-color: #FFF;text-align:center;width:94px;}
td.tbgrnctr4col{margin: 0;padding: 2px 2px;border-width: 1px 1px 0 0;background-color: #FFF;text-align:center;background-color:#dafccb;}
table.listproduct{width:100%;border-color: #aaa;border-style: solid;border-width: 1px 0px 0px 0px;border-spacing: 0;border-collapse: collapse;}
table.listproduct2{border-color: #aaa;border-style: solid;border-width: 1px 0px 0px 0px;border-spacing: 0;border-collapse: collapse;}
.lcdreview{width:410px;margin-top:20px;margin-bottom:10px;border-color: #aaa;border-style: solid;border-width: 1px 1px 1px 1px;border-spacing: 0;border-collapse: collapse;}
.lcdreviewlogo{vertical-align:top;padding-top:15px;padding-left:5px;}
.lcdreviewtd2{text-align:left;padding:15px 13px 0px 7px;}
.lcdreviewheadline{font-size:10pt;font-weight:bold;padding-bottom:5px;}
.lcdreviewtr2{padding:0px 10px 15px 5px;}
.lcdreviewtd2all{text-align:left;padding:15px 5px 15px 10px;}
#price-inline {position: relative;padding-top: 5px;font-size:9pt;}
.productprice {font-family: Arial, Helvetica, sans-serif;font-size:12pt;font-weight: bold;color : #333333; /* grey */}
.priceline2 {float: left;font-size: 9pt;font-weight: normal;}
.relative {position: relative;}
.container {position: relative;float: left;}
.container2 {position: relative;float: right;padding-top: 5px;}
#addtocart-placeholder {position: relative;z-index: 1;}
#addtocart-inline {position: relative;padding-top: 5px;padding-left: 10px;}
#wishlist-inline {position: relative;padding-left: 33px;top: -1px;}
#emailpage-inline {position: relative;padding-left: 18px;padding-top: 6px;top: -1px;}
.padtop10 {padding-top: 10px;}
#afterprice {position: relative;float: left;top: -7px;}
.sbullet{width:420px;margin-top:10px;}
.warranty{margin-top:5px;margin-bottom:0px;}
.spotlight{margin-top:10px;margin-bottom:20px;}
.blackbox{border:1px solid #000;padding:10px}
.blackbox6{border:1px solid #000;padding:5px;margin-top:5px;}
.headerspotlight1{font-family:Arial,Helvetica,sans-serif;font-size:14pt;padding-top:20px;padding-bottom:0px;line-height:16pt;}
.headerspotlight2{font-family:Arial,Helvetica,sans-serif;font-size:12pt;padding-top:20px;padding-bottom:0px;line-height:14pt;}
.larger{font-size:13px;line-height:16px;}

/*page structure*/
/*#wrapper {background-color:#fff;overflow:hidden;border-left:2px solid #aaa;border-right:2px solid #aaa;width:92em;max-width:100%;margin:0 auto;text-align:left;}*/
#wrapper {background-color:#fff;overflow:hidden;border-left:2px solid #aaa;border-right:2px solid #aaa;width:92em;max-width:100%;margin:0 auto;text-align:left;}
#wrapper2 {background-color:#fff;border-left:2px solid #aaa;border-right:2px solid #aaa;width:1100px;text-align:left;}
.wrapperclass {background-color:#fff;overflow:hidden;border-left:2px solid #aaa;border-right:2px solid #aaa;width:92em;max-width:100%;margin:0 auto;text-align:left;}
#masthead {position:relative;margin:0;padding:0;height:60px;background-color:#fff;border-top:4px solid #00bf19;border-bottom:2px solid #aaa;padding-top:2px;}
#nomasthead {position:relative;margin:0;padding:0;background-color:#fff;border-top: 4px solid #00bf19;border-bottom:2px solid #aaa;}
#innerwrapper {width:100%;margin:0;padding-top:20px;padding-left:20px;padding-right:20px;padding-bottom:20px;background-color:#fff;text-align:left;}
#innerwrapper2 {margin:0;padding-top:20px;padding-left:20px;padding-right:20px;padding-bottom:20px;background-color:#fff;text-align:left;}
#underwrapper {max-width:100%;margin:0;padding-top:0px;padding-left:20px;padding-right:20px;padding-bottom:20px;background-color:#fff;text-align:left;}
#centerwrapper {max-width:100%;margin:0;padding-top:20px;padding-left:20px;padding-right:20px;padding-bottom:20px;background-color:#fff;text-align:center;}
#sidewrapper {max-width: 100%;margin: 0;padding-left: 20px;padding-right:20px;background-color:#fff;text-align:left;}
#leftwrapper {margin:0;padding-left:20px;background-color:#fff;text-align:left;}
#simplewrapper{
  max-width: 100%;
  margin: 0;
  background-color:#fff;
  text-align: left;
  border-top: 4px solid #00bf19;
  border-bottom: 2px solid #00bf19;
}
/* COLUMNS */
/* CENTER / RIGHT / LEFT */
.right {padding:0px;margin:0.8em 0 0.8em 22px;border:0px;float:right;clear:right;}
.left {padding:0px;margin:0.8em 22px 0.8em 0;border:0px;float:left;clear:left;}
.centered {display: block;padding:3px;margin:0.8em auto;text-align:left;border:0px;float:none;clear:both;}
.centerwrapper {width:100%;text-align:center;}
/* DUAL COLUMNS */
.leftcolumn {position:relative; float:left; width:400px;text-align:left;}
.rightcolumn {margin-left:470px; width:400px;text-align:left;}
/* BOX COLUMNS / SIDEBARS */
.boxleft {position:relative; float:left; width:385px;border:1px solid #aaa;padding:10px 15px;text-align:left;margin-left:-15px;}
.boxright {margin-left:455px; width:385px;border:1px solid #aaa;padding:10px 15px;text-align:left;}
.boxcentered {display: block;padding:10px;margin:0.8em auto;border:1px solid #aaa;text-align:left;border:0px;float:none;clear:both;}
/* TAB COLUMNS (columns in tabs) */
.tableftcolumn {position:relative; float:left; width:410px;text-align:left;margin-top:5px;margin-left:30px;padding-bottom:20px;}
.tableftflex {position:relative; float:left; width:210px;margin-left:30px;margin-top:5px;text-align:left;}
.tabrightcolumn {margin-left:480px; width:380px;margin-top:5px;text-align:left;padding-bottom:20px;}
.tabrightflex {margin-left:280px;width:600px;text-align:left;}
/* END COLUMNS CSS */
.indented {position:relative;left:40px;}
.indented20 {position:relative;left:20px;}
.OLDcentered {text-align:center;}
.fullwidth {width:100%;}
.fullwidth100 {width:100%;}
.columns {position:relative;float:left;}
.columnleft0 {position:relative;float:left;margin:0;padding:0;}
.columnleft20 {position:relative;float:left;margin-left:20px;}
.columnright20 {position:relative;float:right;margin-right:20px;text-align:right;}
.columnright0 {position:relative;float:right;margin:0;padding:0;text-align: right;}
.mbuttonrow {width:100%;height: 24px;background:url('/images/template/shade-grayscale.gif');}
.mbuttons {position:relative;float:left;font-weight:bold;margin-top:8px;}
.mbuttons_tall {position:relative;float:left;font-weight:bold;margin-top:5px;}
#footerCarpe {height:20px;margin:0;padding:4px;text-align:center;border-top:2px solid #00bf19;border-bottom:4px solid #00bf19;}
#footer {position:relative;margin:0;padding:0;background-color:#fff;border-top:1px solid #aaa;border-bottom:4px solid #00bf19;}
#footer_wrapperclass {background-color:#fff;border-top:1px solid #aaa;border-bottom:4px solid #00bf19;}
.fbuttonrow {width:100%;height: 20px;background:url('/images/template/shade-grayscale-invert20.gif');}
.fbuttons {position:relative;float:left;font-weight:bold;}
#footerwrapper {overflow:hidden;width:1010px;margin:0 auto;}
.footertext:hover {color:#009900;text-decoration:none;}
#footerbuffer {height: 15px;}
#ibuffer {padding-top:20px;}
#icontainer {top:0px;left:0px;display: block;}
#highlights_left {padding-top:15px;}
/* navigator tooltip: FIX WIDTH */
#tiphalo {
  /*filter: shadow(color=#777777, direction=135, strength=5);*/
  width: 500px; 
  text-align: left;
  z-index:8000;
  position: relative;
  margin: 0;
  padding-bottom: 3px;
  background-color: transparent;
  background: transparent;
  }
#tipwrapper {
  z-index:9000;
  background: url('/images/template/bg-shimmer-optimal_1200x1.png'); 
  background-position: top center;
  background-repeat: repeat-y;
  width: 500px; 
  position: relative;
  border:1px solid #c8c8c8;
  padding-top: 0px;
  padding-bottom: 4px; 
  float: left;
}
div#tipDiv {
  position:absolute; visibility:hidden; left:0; top:0; z-index:10000;
  background-color:#fcfcfc; 
  width:480px; padding:0px;
  color:#000; font-size:11px; line-height:1.8;
  margin: 5px;
}
div#tipDiv div.img { text-align:center; margin-top:6px;}
div#tipDiv div.txt { text-align:center; margin-top:4px; margin-bottom:6px; }
/* for when the tooltip only displays text */
div#tipDiv div.otxt { text-align:left; margin-top:-4px; }
div#tipDiv .alt { text-align:center; color:#336; font-weight:bolder; font-style:italic; }
.tt {	color : #333333; font-weight : bold; /* =tiptitle =gb */ }
.tsl { color : #006600; /* =tipspeclable =darkgreen */}
/* END navigator tooltip */

/* BEGIN navigator tooltip WIDE version */
#tiphalowide {
  /*filter: shadow(color=#777777, direction=135, strength=5);*/
  width: 867px; 
  text-align: left;
  z-index:0;
  position: relative;
  margin: 0;
  padding-bottom: 3px;
  background-color: transparent;
  background: transparent;
  }
#tipwrapperwide {
  z-index:0;
  background: url('/images/template/bg-shimmer-optimal_2560x1.png');  
  background-position: top center;
  background-repeat: repeat-y;
  width: 864px; 
  position: relative;
  border:3px solid #c8c8c8;
  padding-top: 10px;
  padding-bottom: 8px; 
  float: left;
}
div#tipDivwide {
  position:absolute; visibility:hidden; left:0; top:0; z-index:0;
  background-color:#fcfcfc; 
  width:844px; padding:0px;
  color:#000; font-size:11px; line-height:1.1;
  margin: 5px;
}
div#tipDivwide div.img { text-align:left; margin-top:6px;}
div#tipDivwide div.txt { text-align:left; margin-top:4px; margin-bottom:6px; }
/* for when the tooltip only displays text */
div#tipDivwide div.otxt { text-align:left; margin-top:-4px; }
div#tipDivwide .alt { text-align:left; color:#336; font-weight:bolder; font-style:italic; }
.tt {	color : #333333; font-weight : bold; /* =tiptitle =gb */ }
.tsl { color : #006600; /* =tipspeclable =darkgreen */}
/* END navigator tooltip WIDE version */

.menu-tranparency { /* Firefox */
	background: white;
	background-color: white;
	-moz-opacity:.50;
	opacity:.50;
	float: left
}
/*slider*/
.slider_track {width: 140px;color: #333; background-color: #fff;border: 1px solid; border-color: #ded #9a9 #9a9 #ded;margin: 0;margin-bottom:10px;margin-left: 22px;font-size: 0px;line-height: 0px;text-align: left;padding: 4px;float: left;}
.slider_display_holder {width: 64px; height: 16px;color: #333; background-color: #fff;border: 1px solid; border-color: #ddd #999 #999 #ddd;	text-align: right;margin: 0; margin-left: 5px;padding: 0 2px 0 0;float: left;}
.slider_display {width: 60px;color: #333; background-color: #fff;font-size: 8pt; font-weight: bold; line-height: 10px;font-family: verdana, arial, helvetica, sans-serif; text-align: center;padding-top: 2px; padding-right: 2px;border: 0; cursor: default;}
.slider_slit {width: 120px; height: 2px;color: #ccc; background-color: #232;margin: 4px 8px 2px 2px;line-height: 0px;border: 1px solid; border-color: #999 #ddd #ddd #999;position: absolute; z-index: 1;}
.horizontal_slider {width: 16px; height: 8px;color: #333; background-color: #696;border: 1px solid; border-color: #9c9 #363 #363 #9c9;margin: 0;line-height: 0px;font-size: 0px;text-align: left;position: relative; padding-left: 3px; z-index: 1;}
.slider_track_tab {width: 145px;color: #333; background-color: #fff;border: 1px solid; border-color: #ded #9a9 #9a9 #ded;margin: 0;margin-bottom:10px;margin-left: 5px;font-size: 0px;line-height: 0px;text-align: left;padding: 4px;float: left;}
.slider_display_holder_tab {width: 56px; height: 16px;color: #333; background-color: #fff;border: 1px solid; border-color: #ddd #999 #999 #ddd;	text-align: right;margin: 0; margin-left: 5px; padding-left: 5px; padding: 0 2px 0 0;float: left;}
.slider_display_tab {width: 52px;color: #333; background-color: #fff;font-size: 8pt; font-weight: bold; line-height: 10px;font-family: verdana, arial, helvetica, sans-serif; text-align: center;padding-top: 2px; padding-right: 0px;border: 0;	cursor: default;}
/*product comparison*/
#aDiv {width:100%;}
.left {position:relative;float:left;}
.categorynote {display:none;}
.introtip {position:relative;float:right;padding-right:20px;font-family:"Lucida Sans","Lucida Sans Unicode",Verdana, sans-serif;font-style:italic;font-size:12px;text-align:right;}
.BXbgT {border-top:2px solid #00bf19;}
.BXbgTB {border-top:2px solid #00bf19;border-bottom:2px solid #00bf19;}
.BXbgB {border-bottom:2px solid #00bf19;}
/*.THbgL {border-left:1px solid #00bf19;font-size:9pt;font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;text-align:center;padding-top:4px;padding-bottom:10px;}*/
.arial10b {font-size:10pt;font-weight:bold;color:#000000;font-family:Arial, Helvetica, sans-serif;}
.arial11b {font-size:11pt;font-weight:bold;color:#000000;font-family:Arial, Helvetica, sans-serif;}
.THbgL {border-left:1px solid #00bf19;text-align:center;padding-top:0px;padding-bottom:0px;}
.luc9 {font-size:9pt;font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;}
.luc9b {font-size:9pt;font-weight:bold;font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;}
.luc10 {font-size:10pt;font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;}
.luc10b {font-size:10pt;font-weight:bold;font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;}
.luc11 {font-size:11pt;font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;}
.luc11b {font-size:11pt;font-weight:bold;font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;}
.luc12 {font-size:12pt;font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;}
.luc12b {font-size:12pt;font-weight:bold;font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;}
.luc10i {font-size:10pt;font-style:italic;font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;}
.luc11i {font-size:11pt;font-style:italic;font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;}
.luc12i {font-size:12pt;font-style:italic;font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;}
.luc16i {font-size:16pt;font-style:italic;font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;}
.text {font-size: 9pt;}
.pricecolor {font-size: 11pt; color: #006600;}
.maintitle {color:#009900;font-weight:bold;}
.THbgLT {border-left:1px solid #aaa;text-align:center;padding:0px;border-top:2px solid #00bf19;}
.THbL {border-left:1px solid #aaa;text-align:center;padding-top:4px;padding-bottom:2px;}
.THbLT {border-left:1px solid #aaa;border-top:1px solid #aaa;text-align:center;padding-top:4px;padding-bottom:2px;}
.TDbL {border-left:1px solid #aaa;text-align:center;padding-top:5px;padding-bottom:5px;}
.TDbLT {border-left: 1px solid #aaa;border-top:1px solid #aaa;text-align:center;padding-top:5px;padding-bottom:5px;padding-left:10px;padding-right:10px;}
.TDbgLT {border-left: 1px solid #00bf19;border-top:2px solid #00bf19;text-align:center;padding-top:5px;padding-bottom:5px;padding-left:10px;padding-right:10px;}
.TDbgT {border-top:2px solid #00bf19;text-align:center;padding-top:5px;padding-bottom:5px;padding-left:10px;padding-right:10px;}
.TDbLT_grey {border-left: 1px solid #aaa;border-top:1px solid #aaa;text-align:center;padding-top:5px;padding-bottom:5px;padding-left:10px;padding-right:10px;background-color:#f1f1f1;}
.CLabel {width:212px;text-align:center;padding-bottom:5px;padding-left:1px;padding-right:1px;}
.CLabelT2 {width:212px;text-align:center;padding-bottom:5px;padding-left:1px;padding-right:1px;border-top:1px solid #aaa;}
.CLabelT2T {width:212px;text-align:center;padding-bottom:5px;padding-left:1px;padding-right:1px;}
/*row label*/
.RL {width: 212px;text-align:center;vertical-align:middle;padding-top:5px;padding-bottom:5px;padding-left:1px;padding-right:1px;border-top:1px solid #aaa;color:black;font-weight:bold;} 
.inline {position:relative;float:left;padding-top:5px;}
.actionbutton1 {position:relative;float:left;padding-left:25px;padding-right:10px;padding-bottom:40px;}
.actionbutton2 {position:relative;float:left;padding-left:10px;padding-right:10px;padding-bottom:40px;}
.actionbutton3 {position:relative;float:left;padding-left:5px;padding-right:10px;padding-bottom:40px;}
.actionbutton4 {position:relative;float:left;padding-left:10px;padding-right:10px;padding-bottom:40px;}
.checkbox {position:relative;float:left;width:30px;padding-left:15px;padding-top:70px;top:-40px;vertical-align:middle;}
.checkbox_right {position: relative;float:right;padding-right:20px;padding-top:70px;top: -40px;vertical-align:middle;text-align:center;/*width: 30px;*/}
.categorynote {position:relative;float:left;padding-left:121px;font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;font-style:italic;font-size:12px;}
.compareselected {position:relative;float:right;padding-right:30px;}
h6 { font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;font-size:10pt;}
/*h4 { font-family:"Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;}*/
.dyBoxFullWidth {border-bottom:2px solid #00bf19;width:100%;}
.dyRowFullWidth {border-bottom: 1px solid #aaa;width:100%;}
/*.top {position: relative;float:right;top:-30px;padding-right:10px;}*/
.top {position: relative;float:right;padding-right:10px;}
/*volusion*/
.bgcolor1 {	BACKGROUND-COLOR: #24991b; FONT: bold 11px Arial; COLOR: #FFFFFF; }
.bgcolor2 {	BACKGROUND-COLOR: #24991b; FONT: bold 11px Arial; COLOR: #FFFFFF; }
.bgcolor3 {	BACKGROUND-COLOR: #24991b; FONT: bold 11px Arial; COLOR: #FFFFFF; }
.bglinecolor { BACKGROUND-COLOR: #000000; }
.carttext { FONT: 11px Verdana; COLOR: #000000; TEXT-DECORATION: none; }
a.carttext { FONT: 12px Verdana; COLOR: #006600; TEXT-DECORATION: none; }
a.carttext:hover { FONT: 12px Verdana; COLOR: #0055BB; TEXT-DECORATION: underline; }
.ProductNameColorLARGE {FONT: 14pt Verdana; COLOR: #006600; TEXT-DECORATION: none; font-weight: bold;}
/*imagetabs*/
.imagetabs{padding:3px 0;margin:0;font:bold 12px Verdana;list-style-type:none;text-align:left;
 /*set to left, center, or right to align the menu as desired*/}
.imagetabs li{display:inline;margin: 0;}
.imagetabs li a{text-decoration:none;position:relative;top:4px;z-index:1;padding:2px 4px;margin-right:2px;margin-left:0px;border:1px solid #778;border-bottom:0;color:#2d2b2b;
background:white url(/images/template/shade-grayscale.gif) top left repeat-x;} 
.imagetabs li a:visited{color:#2d2b2b;}
.imagetabs li a:hover{text-decoration:underline;color:#2d2b2b;}
.imagetabs li a.selected{position:relative;top:5px;/*selected main tab style */}
.imagetabs li a.selected{background-image:url(/images/template/shadeactive.gif);border-bottom-color:white;
/*selected main tab style */}
.imagetabs li a.selected hover{text-decoration: none;/*selected main tab style*/}
.imgtab {position:relative;font:bold 26px Verdana;top:-3px;margin-right:0px;}
.imgtab li a{position:relative;margin-right:0px;}
 
/*standard tabs*/
.shadetabs{padding:3px 0;margin-left:0;margin-top:1px;margin-bottom:0;font:bold 12px Verdana;list-style-type:none;text-align:left;
 /*set to left, center, or right to align the menu as desired*/}
.shadetabs li{display:inline;margin: 0;}
.shadetabs li a{text-decoration:none;position: relative;top:1px;z-index:1;padding:3px 7px;margin-right:3px;border:1px solid #778;border-bottom:0;color:#2d2b2b;
background:white url(/images/template/shade-grayscale.gif) top left repeat-x;}
.shadetabs li a:visited{color:#2d2b2b;}
.shadetabs li a:hover{text-decoration:underline;color:#2d2b2b;}
/*.shadetabs li.selected{position:relative;top:1px;}*/
.shadetabs li a.selected{position:relative;top:2px;/*selected main tab style */}
.shadetabs li a.selected{background-image:url(/images/template/shadeactive.gif);border-bottom-color:white;
/*selected main tab style */}
.shadetabs li a.selected hover{text-decoration: none;/*selected main tab style*/}

.tabcontentstyle{border: 1px solid gray;width:930px;margin-bottom:1em;padding-top:20px;padding-left:0px;padding-right:0px;padding-bottom:15px;display:block;
/*style of tab content oontainer*/}
.tabcontent{display:none;width:890px;padding:10px 25px;padding-bottom:10px;}
.ajaxtabcontent{width:890px;padding:10px 25px;padding-bottom:0px;}
/*legacy-masthead*/
.x18ob {font-size:18pt;font-family:Arial,Helvetica,sans-serif;font-weight:bold;color:#ff8429;}
.x18wb {font-size:18pt;font-family:Arial,Helvetica,sans-serif;font-weight:bold;color:white;}
.x18zb {font-size:18pt;font-family:Arial,Helvetica,sans-serif;font-weight:bold;color:#00CC00;/*zen logo green*/}
.nwb {font-size:10pt;font-family:Arial,Helvetica,sans-serif;font-weight:bold;color:white;}
.nob {font-size:10pt;font-family:Arial,Helvetica,sans-serif;font-weight:bold;color:#ff8429;}
.x11wb {font-size:11pt;font-family:Arial,Helvetica,sans-serif;font-weight:bold;color:white;}
/*Stratosphere*/
.stratMatrix {margin-top:20px;}
.stratMatrix {margin-top:20px;}
.table_container {width:660px;}
.pad2 {padding:2px;}
.pad5 {padding:5px;}
.pad10 {padding:10px;}
.tablerow {border-left:1px solid #565656;border-right:1px solid #565656;width:660px;}
.stratCasePhoto {border-top:1px solid #aaa;border-left:1px solid #aaa;border-right:1px solid #aaa;border-bottom:1px solid #565656;text-align:center;width:660px;}
.tableheader {border-top:1px solid #aaa;border-left:1px solid #aaa;border-right:1px solid #aaa;width:660px;}
.tableheaderTD {height: 30px;text-align:center;vertical-align:middle;background:url('/images/template/shade-grayscale.gif');font-size:11px;font-family:Verdana,Arial,Helvetica,sans-serif;font-weight:bold;color:#333333;}
.tablerow td {font-family:Verdana,Arial,Helvetica,sans-serif;height:22px;vertical-align:middle;text-align:center;}
.table_subhead {border:1px solid #565656;width: 660px;height: 22px;vertical-align: middle;text-align: left;font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 8pt;}
.borderAll {border: 1px solid #565656;border-collapse: collapse;}
.borderAllGray {border: 1px solid #aaa;border-collapse: collapse;}
.borderLRTGray {border-top: 1px solid #aaa;border-left: 1px solid #aaa;border-right: 1px solid #aaa;border-collapse: collapse;}
.borderTB {border-top: 1px solid #565656;border-bottom: 1px solid #565656;}
.borderB {border-bottom: 1px solid #565656;}
.borderLR {border-left: 1px solid #565656;border-right: 1px solid #565656;}
.borderL {border-left: 1px solid #565656;}
.borderR {border-right: 1px solid #565656;}
.column_label_model {font-size: 8pt;font-weight: bold;width: 135px;}
.column_label {font-size: 7pt;font-weight: bold;width: 110px;}
.column_label_price {font-size: 8pt;font-weight: bold;width: 85px;}
.modelname {background-color: #D8D8D8;font-size: 8pt;font-weight: bold;width: 135px;}
.q_dvi1600 {background-color: #EBEBEB;font-size: 9pt;width: 110px;}
.q_dvi1920 {background-color: #D8D8D8;font-size: 9pt;width: 110px;}
.q_dvi2560 {background-color: #EBEBEB;font-size: 9pt;width: 110px;}
.fan {font-size: 7pt;background-color: #D8D8D8;width: 110px;}
.price {background-color: #EBEBEB;font-size: 8pt;font-weight: bold;	width: 85px;}
/*Stratosphere options*/
.cpu {border: 1px solid #565656;text-align: center;font-size: 9pt;width: 320px;}
.option_table {border: 1px solid #565656;text-align: center;font-size: 9pt;width: 350px;}
.cpu_noborder {text-align: center;font-size: 9pt;width: 320px;}
.column_label_cpu {font-size: 11px;font-family: Verdana, Arial, Helvetica, sans-serif;font-weight: bold;text-align: center;}
.option_header_row {font-size: 11px;font-family: Verdana, Arial, Helvetica, sans-serif;font-weight: bold;text-align: center;border-bottom: 1px solid #565656;}
.option_header_middle_row {font-size: 11px;font-family: Verdana, Arial, Helvetica, sans-serif;font-weight: bold;text-align: center;border-bottom: 1px solid #565656;border-top: 1px solid #565656;}
.option_header_bottom_row {font-size: 11px;font-family: Verdana, Arial, Helvetica, sans-serif;font-weight: bold;text-align: center;border-top: 1px solid #565656;}
.cpu_name {background-color: #D8D8D8;font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 11px;width: 240px;font-weight: normal;text-align: center;}
.option_name {background-color: #D8D8D8;font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 10px;font-weight: normal;text-align: center;}
.option_price {background-color: #EBEBEB;font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 10px;width: 70px;text-align: center;}	
.cpu_name_left {background-color: #D8D8D8;font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 11px;width: 240px;font-weight: normal;text-align: left;}
.cpu_recommended {background-color: #A9F8A5;font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 11px;width: 210px;font-weight: normal;text-align: center;}
.cpu_price {background-color: #EBEBEB;font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 11px;width: 80px;text-align: center;}	
.cpu_price_rec {background-color: #A9F8A5;font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 11px;width: 80px;text-align: center;}		
.gspotnoprint {border: 1px solid #565656;padding: 10px;/*grey*/}
/*UDM styles: 11/26/2011*/
.yes {text-align:center;background-color:#ccffcc;font-weight:bold;width:200px;padding:5px;border:1px solid #aaa}
.partial {text-align:center;background-color:#ffffd2;font-weight:bold;width:200px;padding:5px;border:1px solid #aaa}
.no {text-align:center;background-color:#fbdffa;font-weight:bold;width:200px;padding:5px;border:1px solid #aaa}
.tlabel {border:1px solid #aaa; padding:5px;}
.leftpad1030 {padding:10px 30px 20px 28px;vertical-align:top;border-top:1px solid #aaa;border-left:none;border-bottom:1px solid #aaa;border-right:1px solid #aaa;line-height:16px;}	
.leftpad1030top {padding:10px 30px 5px 28px;vertical-align:top;border-top:1px solid #aaa;border-left:none;border-bottom:none;border-right:1px solid #aaa;line-height:16px;font-size:12px;}			
.rightpad1030 {padding:10px 28px 20px 30px;vertical-align:top;border-top:1px solid #aaa;border-right:none;border-bottom:1px solid #aaa;line-height:16px;}									
.rightpad1030top {padding:10px 28px 5px 30px;vertical-align:top;border-top:1px solid #aaa;border-right:none;border-bottom:none;line-height:16px;font-size:12px;}						
.lefttotop {text-align:right;border-top:none;border-right:1px solid #aaa;border-bottom:1px solid #aaa;border-left:none;padding: 0px 5px 5px 0px}
.righttotop {text-align:right;border-top:none;border-right:none;border-bottom:1px solid #aaa;border-left:none;padding:0px 5px 5px 0px}		
.feature2 {font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13px;line-height:16px;/*alt = 9pt*/}
.ulheader {font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;line-height:22px;margin-top:0;margin-bottom:0;padding-top:1px;padding-bottom:1px;}

/*formerly split by browser type; used for product comparison, listview */
.listphoto {padding-top:35px;padding-bottom:25px;vertical-align: middle;position:relative;float:left;}
.listdesc {padding-top:15px;padding-bottom:20px;vertical-align:top;}
.lcdreview{margin-top:10px;}

@media print {
.tabcontent {display:block!important;}
/*Firefox only;IE has own print CSS*/
#ifeature-print {display: block;}
#ibuffer {padding-top:5px;}
.print-only {display:block;}
#itop {display:none;}
#ibg {display:none;}
.nprt {display:none;}
#wrapper {width:99%;overflow:visible;}
#masthead {border-bottom:0;}
.mbuttonrow {background:url('/images/template/shade-grayscale.gif')!important;border-bottom: 2px solid #aaa;}
#ifeature2 {text-align:left;}
#ifeature-img {width:90%;}
#footer {height:38px;}
.pagecontent2 {width:660px;}
#maintab {display:none;}
.tabcontentstyle {border:0;padding:0;width:100%; /*style of tab content oontainer*/}
.tabcontent {border:1px solid #aaa;width:92%;margin-top:5px;}
.indented {left:10px;}
#highlights_left {padding-top:0px;}
.subhead {font-size:8pt;font-family:Trebuchet MS, Trebuchet, Verdana, Arial, Helvetica, sans-serif;}
H4 {font-size: 8pt;}
}



/*  _______________________________________

	Transitional / Specialty
    _______________________________________  */

/*--------------------------------------------------------------------------------------------------*/
/* Transitional CSS (new elements updating old) */
/* 1. Misc Text */
/* 2. Misc Page Structure */
/* 3. Volusion Cart & Configurators */
/* 4. Product pages: Displays, UDM, Stratosphere */
/* 5. PopUltra */
/* 6. Buttons */
/* 7. jQuery rotator (home page) */
/*-------------------------------------------------------------------------------------------------- */


/*--------------------------------------------------------------------------------------------------*/
/* MISC TEXT */
/*-------------------------------------------------------------------------------------------------- */

ol {
	padding-left:0;
	margin-left:24px;
}

.feature12 { /* e.g. home page feature article, for <p> */
padding: 5px 0px;
font-family: Verdana,Arial,Helvetica,sans-serif;
font-size:12px;
line-height:15px;
color:#222;
}

.eyebrow {
	font-family: "Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;
	font-weight: bold;
	font-size: 12pt;
	padding-top: 10px;
	padding-bottom: 10px;
}

.maroon12luc {
	font-family: "Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;
	font-weight: bold;	
	font-size: 12pt;
	color: #990000;
	padding-bottom: 10px;	
}

.luc13 {
	font-family: "Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;
	font-weight: bold;	
	font-size: 13pt;
	padding-bottom: 10px;	
}

.luc16 {
	font-family: "Lucida Sans","Lucida Sans Unicode",Verdana,sans-serif;
	font-weight: bold;	
	font-size: 16pt;
	padding-bottom: 10px;	
}

#breadcrumb,
#breadcrumb a.dottedbold:link,
#breadcrumb a.dottedbold:visited  {
	color:#515151;
}

#breadcrumb a.dottedbold:hover  {
	color:#0000FF;
}

#breadcrumb a.dottedbold:active  {
	color:#C00000;
}

.nobr {/*functionally equivalent to <nobr>*/
	white-space: nowrap;
}	

/*--------------------------------------------------------------------------------------------------*/
/* HOME PAGE STRUCTURE */
/*-------------------------------------------------------------------------------------------------- */

.tabscontainer_home {
	width:930px !important;
	display:block;
	padding: 0px;
	border: 1px solid gray;
	margin-right:0px;
	margin-bottom:10px;
	min-height:500px;
}

#home_whatsnew {
	padding:0px;
	margin:10px 25px;
}

#home_whatsnew .home-leftcol,
.home-leftcol {
	width:440px;
	vertical-align:top;
	margin-left:25px;
	margin-right:15px;
	padding-bottom:10px;	
	padding-right:20px;
}

#home_whatsnew .home-rightcol,
.home-rightcol {
	width:460px;
	vertical-align:top;
	padding-left:20px;
}

.pixright {
	position:relative;
	float:right;
	padding-top:5px;
	padding-bottom:5px;	
}

.boxhome { /*home page */
	border:1px solid #aaa;;padding:10px 15px;text-align:left;}

#customerrotator-wrapper {	
	float:left; 
	width:370px; 
	padding-top:20px;
	padding-left:20px;
	padding-bottom:10px;
	text-align:center;
}
	
#customerrotator-page {
	position:relative;
	text-align:center;
	width:330px;
	padding:5px;
	padding-top:10px;
	margin:0px;
	border:1px solid #aaa;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
	
#rotator-ajax {
	width:300px;
	height:120px;
}

#ultraflexrotator-page {
	position:relative;
	text-align:center;
	width:255px;
	padding:0px;
	margin:0px 0px 10px 0px;
	border:1px solid #aaa;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
	
.box-right {
	width:410px;
	border:1px solid #CCCCCC;	
	padding:2px 10px;
	margin-bottom:20px;	
}	
	
/*--------------------------------------------------------------------------------------------------*/
/* MISC PAGE STRUCTURE */
/*-------------------------------------------------------------------------------------------------- */

#innerwrapper {
	min-height:400px;
	width:100%;
	margin:0;
	padding:20px;
	text-align:left;
}


.boxleft { /*used on home page; different version in older main css */
	position:relative;
	float:left;
	width:375px;
	border:1px solid #aaa;
	padding:10px 15px;
	text-align:left;}

/*--------------------------------------------------------------------------------------------------*/
/* VOLUSION CART / CONFIGURATORS / SEARCH */
/*-------------------------------------------------------------------------------------------------- */

/* Configurators */
.helptoggle {margin:10px 0px;padding-top:2px;padding-bottom:10px;}
.inlinehelp {display:none;border:1px solid black;padding:10px;margin:10px;}


.vsearchresults-prodnamelink {
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-weight: bold;
	font-size:11pt;	
}

a.vsearchresults-prodnamelink:link,
a.vsearchresults-prodnamelink:visited {
	color: #222;	
	border-bottom:1px dotted #95a0aa;
	background:transparent;	
}

a.vsearchresults-prodnamelink:hover {
	color: #0000FF;
	border:0px;
	background:yellow !important;
}

a.vsearchresults-prodnamelink:active {
	color: #C00000;	
	border:0px;
	background:transparent;
}

/* Volusion configurator, cart & checkout */

.voption-checkbox {
	margin-left:5px;
	margin-top:5px;
}

#leftwrapper {
	min-height:400px;
}

#vcart-shipping {
	width:500px;
	padding:5px;
	text-align:left;
}

.vcart-itemrow {
	width:100%;
	border-left:1px solid #aaa;
	border-right:1px solid #aaa;
}

.vcart-discountline {
	border-bottom:1px solid #aaa;
}

.vcart-itemtd {
	border-bottom:1px solid #aaa;
}

.ordertotalprice {
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #006600;
	padding: 1px 3px;
	text-align:right;
}

.vcart-totals {
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-size: 11px;
	font-weight: bold;	
	color: #222;
	padding: 1px 3px;
	text-align:right;	
}

.vcheckout-cart-th {
	color:#000000;
	font-weight:bold;
	text-align:left;
	padding:2px;
}

.vcheckout-cart-td {
	color:#000000;
	text-align:left;
	vertical-align:top;	
	padding:2px;	
}


/* Volusion standalone configurators (ThinkPad) */
#breadcrumb-vconfigurator {
	padding:0;
	margin:0;
}
#breadcrumb-vconfigurator a,
#breadcrumb-vconfigurator a:link,
#breadcrumb-vconfigurator a:visited {
	color: #515151;
	text-decoration: none;
	font-weight:bold;
	border-bottom:1px dotted #000000	
}
#footer a:hover,
#breadcrumb-vconfigurator a:hover {
	color: #0000FF;
	text-decoration: none;
	background:transparent;	
	border:0px !important;
	/*background:yellow;*/
}
#footer a:active,
#breadcrumb-vconfigurator a:active {
	color: #C00000;
	text-decoration: none;
	background:transparent;
	border:0px !important;	
}

/*--------------------------------------------------------------------------------------------------*/
/* PRODUCT PAGES */
/*-------------------------------------------------------------------------------------------------- */

/*--------------------------------------------------------------------------------------------------*/
/* PRODUCT PAGES - ZENVIEW & ULTRAFLEX */
/*-------------------------------------------------------------------------------------------------- */

#productpage_container_2cols {
width:95%;
margin: 10px auto;
/*border:1px solid orange;*/
}
#headline {
text-align:center;
padding-bottom:20px;
}

.productpage_cols {
vertical-align:top;
text-align:left;
margin:0px;
width:50%;
/*border:1px solid blue;*/
}

#productpage_container_2cols td {
padding:10px 10px 10px 10px;
}

#pp_cols_left {
padding-left:40px;
}
#highlights_right {

}

/*--------------------------------------------------------------------------------------------------*/
/* PRODUCT PAGES - UDM */
/*-------------------------------------------------------------------------------------------------- */

#th_udm_top7prod {
background-color:#ccffff;
padding:5px 30px 5px 30px;
border-top:1px solid #aaa;
border-left:none;
border-bottom:1px solid #aaa;
border-right:1px solid #aaa;
}

#th_udm_top7pers {
background-color:#ccffcc;
padding:5px 30px 5px 30px;
border-top:1px solid #aaa;
border-right:none;
border-bottom:1px solid #aaa;
}

	.leftpad1030 {padding:10px 30px 20px 28px;vertical-align:top;border-top:1px solid #aaa;border-left:none;border-bottom:1px solid #aaa;border-right:1px solid #aaa;line-height:16px;}	
	.leftpad1030top {padding:10px 30px 5px 28px;vertical-align:top;border-top:1px solid #aaa;border-left:none;border-bottom:none;border-right:1px solid #aaa;line-height:16px;font-size:12px;}			
	.rightpad1030 {padding:10px 28px 20px 30px;vertical-align:top;border-top:1px solid #aaa;border-right:none;border-bottom:1px solid #aaa;line-height:16px;}									
	.rightpad1030top {padding:10px 28px 5px 30px;vertical-align:top;border-top:1px solid #aaa;border-right:none;border-bottom:none;line-height:16px;font-size:12px;}

/*--------------------------------------------------------------------------------------------------*/
/* PRODUCT PAGES - STRATOSPHERE */
/*-------------------------------------------------------------------------------------------------- */

#maintabscontainer {
margin:0px;
padding:0px 0px 0px 0px;
position:relative;
}

#maintabs-stratosphere-main {
margin: 20px 20px 10px 20px;
}

.strattabs {
width:100%;
}

.tabscontainer_stratosphere {
border-left:none;
border-right:none;
border-bottom:none;
border-top:1px solid gray;
width:100%;
text-align:left;
display:block;
}



#maintabscontainer-strat-leftcolumn {
width:567px;
text-align:left;
}

#maintabscontainer-strat-rightcolumn {
width:400px;
text-align:left;
margin-right:20px;
}

#pad-column {
width:5px;
}

#breadcrumb {
padding:5px 0px 5px 15px;
}

#top-buffer {
	width:100%;
	padding:10px;
}


#layers {
	/*margin-top:10px;*/
}


/*--------------------------------------------------------------------------------------------------*/
/* PopULTRA & PopML */
/*-------------------------------------------------------------------------------------------------- */
td.magnifier_td,
.magnifier_td {
	text-align:center;
	vertical-align:top;
	width:20%;
	 cursor:url(/images/template/cursor-magnify32.cur), pointer;			 
	 cursor:-moz-zoom-in;
	 cursor:-webkit-zoom-in;	
}

.magnifier,
img.magnifier, 
.PopML,
img.PopML {
	 cursor:url(/images/template/cursor-magnify32.cur), pointer;			 
	 cursor:-moz-zoom-in;
	 cursor:-webkit-zoom-in;
	 }
#PopML {
	position:absolute;
	border:1px solid #ccc;
	background:#333;
	padding:5px;
	display:none;
	color:#fff;
	}
#PopML-glaze {
	position:absolute;
	border:1px solid #ccc;
	background:rgba(255,255,255,0.5);
	padding:0;
	margin:0;	
	display:none;	
	z-index:200;
	}	
#PopML-glaze-flash {
	position:absolute;
	border:1px solid #ccc;
	background:rgba(255,255,255,0.5);
	padding:0;
	margin:0;	
	display:none;	
	z-index:200;
	}		
#PopML-glaze-youtube {
	position:absolute;
	border:1px solid #ccc;
	background:rgba(255,255,255,0.5);
	padding:5px;
	display:none;	
	z-index:200;
	}	
#PopML-semitransparent {
	position:absolute;
	border:1px solid #ccc;
	background:rgba(255,255,255,0.5);
	padding:5px;
	display:none;
	color:#000;
	z-index:200;
	}		
#PopML-caption	{
	/*background:#FFF;*/
	font-size:11px;	
}

.PopupImgOnHover,
img.PopupImgOnHover 
	{
	 	 cursor:pointer;
	 	 cursor:-moz-zoom-in;
	 	 cursor:-webkit-zoom-in;
	 }

#hImagePreview {
	position:absolute;
	border:1px solid #ccc;
	background:#333;
	padding:5px;
	display:none;
	color:#fff;
	}	


/*--------------------------------------------------------------------------------------------------*/
/* MASTHEAD & MENUS */
/*-------------------------------------------------------------------------------------------------- */

#country-flag {
position:relative;
float:left;
margin-top:6px;
padding-top:0px;
}

#country-name {
position:relative;
float:left;
color:#222;
font-weight:bold;
margin-top:6px;
padding-top:0px;
}
	
/* Country identifier & link */
#country-name a:link,
#country-name a:visited,
#country-name {
	color:#000000 !important;
}
#country-name a:hover {
	color:#0000FF !important;
	background:transparent !important; 
}
#country-name a:active {
	color:#C00 !important;
	background:transparent;	
}

/* top menu names on masthead */

#menu_ul_structure .mbuttons,
#menu_ul_structure .mbuttons,
.mbuttons,
.mbuttons {
	position:relative;
	float:left;
	font-size:11px;	
	font-weight:bold;
	/*margin-top:5px;*/
	font-family:Verdana, Arial, Helvetica, sans-serif;	
	color:#000000;	
}	

/*masthead button links */
#menu_ul_structure .mbuttons a:link,
#menu_ul_structure .mbuttons a:visited,
.mbuttons a:link,
.mbuttons a:visited {
	color:#000000 !important;
}

#menu_ul_structure .mbuttons a:hover,
#menu_ul_structure .mbuttons a:hover,
.mbuttons a:hover,
.mbuttons a:hover {
	color:#0000FF !important;
	background:transparent !important;	
}

#menu_ul_structure .mbuttons a:active,
#menu_ul_structure .mbuttons a:active,
.mbuttons a:active,
.mbuttons a:active {
	color:#C00 !important;
	background:transparent !important;	
}

#menu_ul_structure .menu_container a:link,
#menu_ul_structure .menu_container a:visited,
.mbuttons a:link,
.mbuttons a:visited {
	color:#020D9E !important;
}

#menu_ul_structure .menu_container a:hover,
#menu_ul_structure .menu_container a:hover,
.mbuttons a:hover,
.mbuttons a:hover {
	color:#0000FF !important;
	/*background:#ffffaa !important;*/ /*W3C yellow*/
	background:yellow !important; 
}

#menu_ul_structure .menu_container a:active,
#menu_ul_structure .menu_container a:active,
.mbuttons a:active,
.mbuttons a:active {
	color:#C00 !important;
	background:transparent !important;	
}


ul.magnifier14 {
list-style: url('/images/template/magnifier-14x14.png') !important;
}	

#udm-top10features a:link,
.menu_light_theme #udm-top10features,
#udm-top10features {
list-style: url('/images/template/magnifier-14x14.png') !important;
}	

	
/*--------------------------------------------------------------------------------------------------
  
   Simply Buttons, version 1.0
   (c) 2007-2009 Kevin Miller

   This script is freely distributable under the terms of an MIT-style license.

   BUTTON DEFINITIONS 
  
   Edit below at your own risk, everything done here is for a reason for cross browser
   compatibility so that the buttons will appear identical in the tested browsers.
   
   Tested on: IE6 IE7 FF(PC/MAC) Safari SafariMobile Opera(PC/MAC)
   
--------------------------------------------------------------------------------------------------*/

a.button,
a.button:link,
a.button:visited {
  /*
      Strip down the button and link elements to a base we can work with.
  */
  padding: 0 0 0 0;
  margin: 0 3px 0 10px;
  border: none;
  display: block;
  float: left;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  white-space: nowrap;
  overflow: visible;
}

  * html a.button,
  * html a.button:link,
  * html a.button:visited {
    /*
        IE6 fix to make link fit text.
    */
    width: 1%;
  }

  a.button span,
  a.button:link span,
  a.button:visited span {
    /*
        Set the span tags to display: block, as they will work our background-image magic.
    */
    display: block;
  }

/*--------------------------------------------------------------------------------------------------
  
   CUSTOMIZATIONS 
  
   Edit below to change the look and feel of the buttons and even add more classes for
   different looks and feels.
   
--------------------------------------------------------------------------------------------------*/

a.button,
a.button:link,
a.button:visited {
  /* 
      HEIGHT - Total height of button. 
  */
  /*height: 26px; */
  height: 26px; 

  /*
      NOTE - You must define the font here otherwise your buttons and links could end up diffrent.
  */
	/*font-family: "Helvetica Neue", Helvetica, clean, sans-serif;*/
	font-family: Verdana,Arial,Helvetica,sans-serif;

  /*font-size: 13px;*/
  font-size: 11px;
  color: #424242 !important; /*was #666666*/
  background: transparent;
}

a.button {color: #424242 !important;font-weight:bold !important;}
a.button:link {color: #424242 !important;font-weight:bold !important;}
a.button:visited {color: #424242 !important;font-weight:bold !important;}
a.button:hover {color: #0000FF !important;font-weight:bold !important;}


  a.button_active {
  }

  a.button span,
  a.button:link span,
  a.button:visited span {
    /* 
        Right side padding for button (default). 
    */
    padding: 0 14px 0 0;

    /* 
        SPAN HEIGHT - This should be 2px smaller than the height set on the button (see HEIGHT).
    */
    /*height: 24px;*/
    height: 24px;	

    /*
        We define our background top left and use the 'Sliding Doors' Technique for some fast loading buttons.
    */
    background: url(../images/template/submit/bg_button_right_transparent.png) top right;
    background-repeat: no-repeat;	/* DT change */ 	
  }

  a.button span span,
  a.button:link span span,
  a.button:visited span span {
    /* 
        Left side padding for button (13px default). 
    */
	padding: 0 0 0 19px;	

    /* 
        SPAN HEIGHT - This should be 1px smaller than the height set on the button (see HEIGHT).
    */
    height: 24px;

    /* 
        SPAN LINE-HEIGHT - This should be 1px smaller than the height set on the button (see HEIGHT) and will 
                            center the text vertcailly.
    */
    line-height: 24px;

    /*
        We define our background top left and use the 'Sliding Doors' Technique for some fast loading buttons.
    */
    background: url(../images/template/submit/bg_button_left.png) top left;
  }

  a.button:hover {
    color: #000000;
  }

  a.submit span,
  a.submit:link span,
  a.submit:visited span {
  }

  a.submit span span,
  a.submit:link span span,
  a.submit:visited span span {
    /*
        Give some extra space for the icon.
    */
    padding-left: 26px;

    /*
        Add in a left side piece with an icon.
    */
    background-image: url(../images/template/submit/bg_button_left_submit.png);
  }

  a.submit:hover {
  }

  a.cancel span,
  a.cancel:link span,
  a.cancel:visited span {
  }

  a.cancel span span,
  a.cancel:link span span,
  a.cancel:visited span span {
    /*
        Give some extra space for the icon.
    */
    padding-left: 26px;

    /*
        Add in a left side piece with an icon.
    */
    background-image: url(../images/template/submit/bg_button_left_cancel.png);
  }

  a.cancel:hover {
  }

  a:active:active span,
  /*
      'button_active' is the class used by SimplyButtons.js to create the button states in IE.
  */
  a.button_active:active span {
    /*
        Using the 'Sliding Doors' Technique we 'slide' the new button state into view.
    */
    background-position: bottom right;
  }

  a:active:active span span,
  /*
      'button_active' is the class used by SimplyButtons.js to create the button states in IE.
  */
  a.button_active:active span span {
    /*
        Using the 'Sliding Doors' Technique we 'slide' the new button state into view.
    */
    background-position: bottom left;
  }	
 
  
/*--------------------------------------------------------------------------------------------------*/
/* END BUTTONS */
/*-------------------------------------------------------------------------------------------------- */

/*--------------------------------------------------------------------------------------------------*/
/* jQuery Rotator (home page, Stratosphere landing page) */
/*-------------------------------------------------------------------------------------------------- */  
  

.wt-rotator{
font-family:Arial,Helvetica,sans-serif;
font-size:12px;
position:relative;
width:1000px;
height:300px;
overflow:hidden;
}
.wt-rotator a{
outline:none;
}
.wt-rotator .screen{
position:relative;
top:0;
left:0;
width:1000px;
height:300px;
overflow:hidden;
}
.wt-rotator #strip{
display:block;
position:absolute;
top:0;
left:0;
z-index:0;
overflow:hidden;
}
.wt-rotator .content-box{
display:none;
position:absolute;
top:0;
left:0;
overflow:hidden;
}
.wt-rotator .main-img{
display:none;
position:absolute;
top:0;
left:0;
z-index:0;
border:0;
}
.wt-rotator .preloader{
position:absolute;
top:50%;
left:50%;
width:36px;
height:36px;
margin-top:-18px;
margin-left:-18px;
-moz-border-radius:2px;
-webkit-border-radius:2px;
border-radius:2px;
background:#000 url(/images/template/rotator/loader.gif) center no-repeat;
background:rgba(0,0,0,.7) url(/images/template/rotator/loader.gif) center no-repeat;
z-index:4;
display:none;
}
.wt-rotator #timer{
position:absolute;
left:0;
height:4px;
background-color:#c8c8c8;
-moz-opacity:.1;
filter:alpha(opacity=10);
opacity:0.1;
z-index:4;
visibility:hidden;
font-size:0;
}
.wt-rotator .desc{
color:#000;
position:absolute;
top:0;
left:0;
z-index:6;
overflow:hidden;
visibility:hidden;
text-align:left;
}
.wt-rotator .inner-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background-color:#000;
-moz-opacity:.95;
filter:alpha(opacity=95);
opacity:0.95;
z-index:1;
}
.wt-rotator .inner-text{
position:absolute;
padding:2px;
z-index:2;
}
.wt-rotator .c-panel{
position:absolute;
top:0;
z-index:7;
visibility:hidden;
}
.wt-rotator .outer-cp{
position:absolute;
left:0;
width:100%;
background:#333;
background:none;
border:none;
border-left:none;
border-right:none;
	height:24px;
}
.wt-rotator .thumbnails,
.wt-rotator .buttons{
display:inline;
position:relative;
float:left;
overflow:hidden;
	height:24px;
}
.wt-rotator .thumbnails ul{
list-style:none;
margin:0;
padding:0;
}
.wt-rotator .thumbnails li,
.wt-rotator .play-btn,
.wt-rotator .prev-btn,
.wt-rotator .next-btn{
list-style:none;
display:inline;
float:left;
margin-right:4px;
overflow:hidden;
width:16px;
height:24px;
text-align:center;
color:#FFF;
background-color:#c8c8c8;
border:1px solid #c8c8c8;
cursor:pointer;
font-weight:bold;
	height:24px;
}
.wt-rotator .thumbnails li.thumb-over{
color:#FFF;
background-color:#CCC;
}
.wt-rotator .thumbnails li.curr-thumb{
color:#000;
background-color:#FFF;
cursor:default;
border:1px solid #c8c8c8;
}
.wt-rotator .thumbnails li.image{
background-color:#c8c8c8;
}
.wt-rotator .thumbnails li.image.curr-thumb,
.wt-rotator .thumbnails li.image.thumb-over{
border-color:#c8c8c8;
border:1px solid #c8c8c8;
}
.wt-rotator .thumbnails li.image a,
.wt-rotator .thumbnails li.image img{
display:block;
border:#c8c8c8;
}
.wt-rotator .thumbnails li.image.curr-thumb img{
-moz-opacity:.8;
filter:alpha(opacity=80);
opacity:0.8;
cursor:default;
}
.wt-rotator .thumbnails li *{
display:none;
}
.wt-rotator .thumbnails li div{
position:relative;
color:#FFF;
background-color:#c8c8c8;
}
.wt-rotator .play-btn{
background:#c8c8c8 url(/images/template/rotator/play.png) no-repeat center;
}
.wt-rotator .pause{
background:#c8c8c8 url(/images/template/rotator/pause.png) no-repeat center;
}
.wt-rotator .prev-btn{
background:#c8c8c8 url(/images/template/rotator/prev.png) no-repeat center;
}
.wt-rotator .next-btn{
background:#c8c8c8 url(/images/template/rotator/next.png) no-repeat center;
}
.wt-rotator .button-over{
background-color:#CCC;
}
#rotator-tooltip{
position:absolute;
top:0;
left:0;
z-index:10;
display:none;
}
#rotator-tooltip.txt-up{
margin-left:-10px;
margin-bottom:5px;
background:url(/images/template/rotator/tail.png) no-repeat;
background-position:10px bottom;
}
#rotator-tooltip.txt-down{
margin-left:-10px;
margin-top:24px;
background:url(/images/template/rotator/rev_tail.png) no-repeat;
background-position:10px top;
}
#rotator-tooltip.img-up{
background:url(/images/template/rotator/tail.png) center bottom no-repeat;
}
#rotator-tooltip.img-down{
background:url(/images/template/rotator/rev_tail.png) center top no-repeat;
}
#rotator-tooltip .tt-txt{
font-family:Arial,Helvetica,sans-serif;
font-size:12px;
color:#FFF;
background-color:#000;
max-width:300px;
padding:4px;
margin:8px 0;
}
#rotator-tooltip .tt-img{
display:block;
background-color:#000;
padding:2px;
margin:8px 0;
}
.wt-rotator .block,
.wt-rotator .vpiece,
.wt-rotator .hpiece{
position:absolute;
z-index:2;
}  
