/* ------------------------------------------------------------

  	* Support Details
  	* Coded by Taylor Smith of Imulus

  	screen.css
  	- Site wide style, layout, and function

	=Colors
	- light grey #ccc
	- dark grey #333

------------------------------------------------------------ */

/* =Initial Page Structure 
------------------------------------------------------------ */

* { 
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	list-style: none;
}

html {
	font: 12px/1.5 "Lucida Grande", Verdana, "Helvetica Neue", Arial, Helvetica, sans-serif;
	color: #555;
	background: #fff;
	text-shadow: #fff 0 1px 0;
}

body { 
	position: relative;
	margin: 0 auto;
}

#header { 
	position: relative;
	width: 100%;
	background: url('/images/layout/header/bg-header.gif') left top repeat-x;
	height: 95px;
}

.sub #header { 
	position: relative;
}

#content { 
	position: relative;
	width: 840px;
	padding: 38px 67px 0 67px;
	margin: 0 auto;
	background: #fff url('/images/layout/content/bg-content.gif') left top no-repeat;
}

.sub #content { 
	position: relative;
}

#footer { 
	clear: both;
	position: relative;
}

/* =Basic Element Styles 
------------------------------------------------------------ */ 

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	padding-bottom: 8px;
}

h1 { 
	font-size: 18px;
	padding-bottom: 12px;
}

h2 { 
	font-size: 18px;
}

h3 { 
	font-size: 14px;
}

h4 { 
	font-size: 12px;
}

h5 { 
	font-size: 12px;
}

h6 { 
	font-size: 12px;
}

p {
	padding-bottom: 18px;
}

.spacer { 
	padding-top: 18px;
}

img,
a img { 
	border: 0;
	vertical-align: middle;
} 

a { 
	color: #4F9DBD;
	text-decoration: none;
}

a:visited { 
	color: #4F9DBD;
}

a:hover { 
	color: #3C7890;
	text-decoration: none;
}

input,
textarea { 
	width: 140px;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-right: 6px;
	float: left;
	padding: 5px;
	background: #fff url('/images/layout/content/bg-input.gif') left top repeat-x;
	border: 1px solid #87a93e;
	color: #555;
	vertical-align: middle;
	border-radius: 3px;
	-moz-border-radius: 3px;
 	-webkit-border-radius: 3px;
}

input:focus,
textarea:focus {
	background: #f4f4f4;
	border: 1px solid #62873A;
}

input[type="image"], 
input.submit { 
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
	width: auto !important;
}

select { 
	padding: 0;
	border: 1px solid #999;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

/* =Utilities 
------------------------------------------------------------ */ 

.left { 
	float: left;
	position: relative;
	margin: 0 10px 5px 0;
}

.right { 
	float: right;
	position: relative;
	margin: 0 0 5px 10px;
}

.clear {
	clear: both;
}

.clear-left { 
	clear: left;
}

.clear-right { 
	clear: right;
}

.clear-none { 
	clear: none;
}

.center { 
	text-align: center;
}

a.hover-box img.original {
	float: left;
	position: relative;
}

a.hover-box img.hover { 
	display: none;
}

a.hover-box { 
	position: relative;
	float: left;
	display: block;
}

a.hover-box:hover { 
	display: block; 
	font-size: 100%; 
	z-index: 1; 
}

a.hover-box:hover img.hover { 
	display: block;
	position: absolute;
	float: left;
	left: 0;
	top: 0;
	z-index: 1000;
}

.autoclear:after { 
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden; 
}

.autoclear { 
	display: inline-block;
}

.autoclear { 
	display: block;
}

	/* =Forms 
------------------------------------------------------------ */ 

.forms p { 
	position: relative;
	float: left;
	clear: left;
	padding: 0 0 15px 150px;
}
	
.forms p label.name { 
	position: relative;
	float: left;
	width: 140px;
	padding-right: 10px;
	margin-left: -150px;
	text-align: right;
}	

.forms span.error { 
	display: block;
	position: absolute;
	right: -210px;
	width: 200px;
	color: #f00;
	font-size: 11px;
	padding: 7px 5px;
	line-height: 1em;
}

.forms p input { 
	width: 300px;
}

.forms p input.small { 
	width: 70px;
}

.forms p input.medium { 
	width: 250px;
}

.forms p input.large { 
	width: 300px;
}

.forms p input.submit { 
	border: 1px solid #ccc;
	background: #eee;
	width: auto;
	height: auto;
	padding: 2px 5px;
}

.forms p textarea { 
	width: 300px;
}

.forms p textarea.short { 
	height: 70px;
}

.forms p textarea.tall { 
	height: 180px;
}

.forms p span.radcheck { 
	
}

.forms p span.radcheck input { 
	border: 0;
	width: auto;
	height: auto;
	vertical-align: middle;
	margin-left: 10px;
	margin-right: 5px;
}

.forms p select { 
	border: 1px solid #ccc;
	width: 306px;
}


/* =Layout and Function 
------------------------------------------------------------ */ 

	/* =Header 
------------------------------------------------------------ */ 

#container {
	position: relative;
	width: 974px;
	height: 95px;
	background: url('/images/layout/header/bg-header_container.gif') 0 0 no-repeat;
	margin: 0 auto;
}

#header strong {
	display: block;
	position: absolute;
	left: 7px;
}

#header strong a {
	display: block;
	width: 270px;
	height: 95px;
	position: absolute;
	text-indent: -9999px;
	background: url('/images/layout/header/logo.gif') left top no-repeat;
}

#header strong a:hover {
	background-position: left -95px;
}

#header em {
	position: absolute;
	top: 26px;
	left: 280px;
	font-style: normal;
	border-left: 1px solid #ddd;
	padding-left: 10px;
	color: #eee;
	text-shadow: none;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
}

#header a.imulus-logo {
	display: block;
	position: absolute;
	background: url('/images/layout/header/imulus-logo.gif') left top no-repeat;
	right: 7px;
	top: 0;
	width: 144px;
	height: 67px;
	text-indent: -9999px;	
}

#header a.imulus-logo:hover {
	background-position: 0 -67px;
}


	/* =Content 
------------------------------------------------------------ */ 

#results {
	position: relative;
	float: left;
	width: 660px;
}

#email {
	float: left;
	width: 468px;
	background: #cbea88 url('/images/layout/content/bg-email.gif') left bottom repeat-x;
	border: 1px solid #87a93e;
	padding: 6px;
	margin-right: 8px;
	margin-bottom: 20px;
	height: 26px;
	-moz-border-radius-bottomleft: 10px; 
	-moz-border-radius-topleft: 10px;
	-webkit-border-bottom-left-radius: 10px; 
	-webkit-border-top-left-radius: 10px;

}

.emailsubmit {
  	background: #cfecff url('/images/layout/content/bg-download.gif') left bottom repeat-x;
	border: 1px solid #7db5de;
	-moz-border-radius-topright: 10px; 
	-moz-border-radius-bottomright: 10px;
	-webkit-border-bottom-right-radius: 10px; 
	-webkit-border-top-right-radius: 10px;
	display: block;
	float: left;
	width: 136px;
	padding: 6px;
	color: #457dd7;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
}

.emailsubmit:hover {
	border-color: #6086C5;
}

.emailsubmit #email-go {
	padding: 0;
	background: transparent;
	border: 0;
	width: auto;
}

.status {
	float: left;
	width: 620px;
	margin: -10px 0 10px 0;
	padding: 10px;
	border: 1px solid #aeaeae;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

.status p {
	margin: 0;
	padding: 0;
}

#success {
	background: #ffc;
	border-color: #FFD324;
	color: #514721;
}

#error {
	background: #FBE3E4;
	border-color: #FBC2C4;
	color: #8a1f11;
}


.download {
	background: #cfecff url('/images/layout/content/bg-download.gif') left bottom repeat-x;
	border: 1px solid #7db5de;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	display: block;
	float: left;
	width: 128px;
	padding: 5px 10px;
	margin-right: 10px;
	color: #257EB5;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
}

.download:hover {
	color: #144969;
	border-color: #6086C5;
}

.download span {
	display: block;
	background: url('/images/icons/download.gif') right center no-repeat;
	padding: 5px;
}

.copyright {
	float: left;
	padding-top: 15px;
	color: #888;
	font-size: 11px;
}

.copyright a {
	color: #57ADD0;
}

.copyright a:hover {
	color: #3C7890;
}

.module {
	position: relative;
	float: left;
	width: 278px;
	padding: 10px 15px 15px 15px;
	margin: 0 20px 20px 0;
	background: #eee url('/images/layout/content/bg-module.gif') bottom left repeat-x;
	border: 1px solid #aeaeae;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	min-height: 57px;
}

.module:hover,
.module.hover {
	border-color: #888;
	color: #222;
}

.module img {
	position: absolute;
}

.module a.copy {
	display: none;
	position: absolute;
	top: 5px;
	right: 5px;
	height: 16px;
	width: 75px;
	background: url('/images/icons/copy.gif') right top no-repeat;
	font-size: 11px;
}

.module a.copy.hover {
	background-position: right -16px;
}

.module a.copy em {
	display: none;
	float: right;
	font-style: normal;
	line-height: 16px;
	padding-right: 25px;
	text-align: right;
	width: 50px;
}

.module a.copy.hover em {
	display: block;
}

.last {
	margin-right: 0;
}

.module h2 {
	padding-bottom: 0;
	padding: 10px 0 10px 45px;
}

.module h2.operating		{ background: url('/images/icons/operating.gif') left 7px no-repeat; }
.module h2.windows			{ background: url('/images/icons/windows-icon.gif') left 7px no-repeat; }
.module h2.osx				{ background: url('/images/icons/osx-icon.gif') left 7px no-repeat; }
.module h2.linux			{ background: url('/images/icons/linux-icon.gif') left 7px no-repeat; }
.module h2.iphone			{ background: url('/images/icons/iphone.gif') left 7px no-repeat; }
.module h2.color			{ background: url('/images/icons/color.gif') left 7px no-repeat; }
.module h2.browser			{ background: url('/images/icons/browser.gif') left 7px no-repeat; }
.module h2.firefox			{ background: url('/images/icons/firefox-icon.gif') left 7px no-repeat; }
.module h2.safari			{ background: url('/images/icons/safari-icon.gif') left 7px no-repeat; }
.module h2.opera			{ background: url('/images/icons/opera-icon.gif') left 7px no-repeat; }
.module h2.explorer-6		{ background: url('/images/icons/ie6-icon.gif') left 7px no-repeat; }
.module h2.explorer			{ background: url('/images/icons/ie7-icon.gif') left 7px no-repeat; }
.module h2.resolution		{ background: url('/images/icons/resolution.gif') left 7px no-repeat; }
.module h2.ipaddress		{ background: url('/images/icons/ipaddress.gif') left 7px no-repeat; }
.module h2.window			{ background: url('/images/icons/window.gif') left 7px no-repeat; }
.module h2.javascript		{ background: url('/images/icons/javascript.gif') left 7px no-repeat; }
.module h2.flash			{ background: url('/images/icons/flash.gif') left 7px no-repeat; }
.module h2.cookies			{ background: url('/images/icons/cookie.gif') left 7px no-repeat; }

.module p {
	padding: 0 0 0 45px;
	margin-top: -10px;
}

.module p span {
	display: none;
	padding-left: 5px;
	font-style: italic;
	color: #666;
}

#podium {
	width: 180px;
	float: right;
	font-size: 11px;
}


#podium .bottom-left { margin-bottom: 5px; background: #ee8204 url('/images/layout/podium/bottom-left.png') 0 100% no-repeat;  }
#podium .bottom-right { background: url('/images/layout/podium/bottom-right.png') 100% 100% no-repeat; }
#podium .top-left { background: url('/images/layout/podium/top-left.png') 0 0 no-repeat; }
#podium .top-right {
	display: block;
	background: url('/images/layout/podium/top-right.png') 100% 0 no-repeat;
	padding: 10px;
	color: #fff;
}

#podium .top-right img {
	margin: 0 -10px;
}

#podium .top-right em {
	display: block;
	font-style: normal;
	text-align: center;
	font-size: 13px;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	text-shadow: none;
	padding: 5px 0 10px 0;
	color: #222;
}

#podium .top-right .watch-a-demo {
	display: block;
	width: 159px;
	height: 44px;
	background: url('/images/buttons/watch-a-demo.gif') center top no-repeat;
	margin: 0 auto;
	text-indent: -9999px;
}

#podium .top-right:hover em {
	color: #000;
}

#podium .top-right:hover .watch-a-demo {
	background-position: 0 -44px;
}

h3.seperator {
	border-top: 1px solid #ddd;
	padding-top: 10px;
	padding-bottom: 0;
}


	/* =Subpage
------------------------------------------------------------ */ 

.sub #content #main { 
	position: relative;
	float: left;
	width: 640px;
}

.sub #content #main ul { 
	margin-bottom: 18px;
}

.sub #content #main ul li { 
	padding-left: 15px;
	background: url('/images/icons/bullet.gif') left 7px no-repeat;
}

.sub #content #main h2 {
	font-size: 14px;
}

.sub #content #main .grid {
	float: left;
	width: 315px;
	margin-bottom: 18px;
	padding: 5px 0;
}

.sub #content #main .grid.first {
	clear: both;
	margin-right: 10px;
}

.sub #content #main .grid p {
	padding-bottom: 0;
}

.sub #content #main .grid h3 {
	font-size: 12px;

	color: #94a131;
	text-transform: uppercase;
	padding-bottom: 2px;
}



	/* =Subpage (Advertise)
------------------------------------------------------------ */ 

#advertise #content #main { 
	font-size: 12px;
}


	/* =Footer 
------------------------------------------------------------ */ 

