html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}
/**
 * SqueezeBox - Expandable Lightbox
 *
 * Allows to open various content as modal,
 * centered and animated box.
 *
 * @version		1.1 rc4
 *
 * @license		MIT-style license
 * @author		Harald Kirschner <mail [at] digitarald.de>
 * @copyright	Author
 */

#sbox-overlay {
	position: absolute;
	background-color: #000;
	left: 0px;
	top: 0px;
	zoom: 1;
}

#sbox-window {
	position: absolute;
	background-color: #fff;
	text-align: left;
	overflow: visible;
	padding: 10px;
	/* invalid values, but looks smoother! */
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

#sbox-btn-close {
	position: absolute;
	width: 30px;
	height: 30px;
	right: -15px;
	top: -15px;
	background: url(images/squeezebox/closebox.png) no-repeat center;
	border: none;
}

.sbox-window-ie6 #sbox-btn-close {
	background-image: url(images/squeezebox/closebox.gif);
}

.sbox-loading #sbox-content {
	background-image: url(images/squeezebox/spinner.gif);
	background-repeat: no-repeat;
	background-position: center;
}

#sbox-content {
	clear: both;
	overflow: auto;
	background-color: #fff;
	height: 100%;
	width: 100%;
}

.sbox-content-image#sbox-content {
	overflow: visible;
}

#sbox-image {
	display: block;
}

.sbox-content-image img {
	display: block;
	width: 100%;
	height: 100%;
}

.sbox-content-iframe#sbox-content {
	overflow: visible;
}

/* Hides scrollbars */
.body-overlayed {
	overflow: hidden;
}
/* Hides flash (Firefox problem) and selects (IE) */
.body-overlayed embed, .body-overlayed object, .body-overlayed select {
	visibility: hidden;
}
#sbox-window embed, #sbox-window object, #sbox-window select {
	visibility: visible;
}

/* Shadows */
.sbox-bg {
	position: absolute;
	width: 33px;
	height: 40px;
}

.sbox-bg-n {
	left: 0;
	top: -40px;
	width: 100%;
	background: url(images/squeezebox/bg_n.png) repeat-x;
}
.sbox-bg-ne {
	right: -33px;
	top: -40px;
	background: url(images/squeezebox/bg_ne.png) no-repeat;
}
.sbox-bg-e {
	right: -33px;
	top: 0;
	height: 100%;
	background: url(images/squeezebox/bg_e.png) repeat-y;
}
.sbox-bg-se {
	right: -33px;
	bottom: -40px;
	background: url(images/squeezebox/bg_se.png) no-repeat;
}
.sbox-bg-s {
	left: 0;
	bottom: -40px;
	width: 100%;
	background: url(images/squeezebox/bg_s.png) repeat-x;
}
.sbox-bg-sw {
	left: -33px;
	bottom: -40px;
	background: url(images/squeezebox/bg_sw.png) no-repeat;
}
.sbox-bg-w {
	left: -33px;
	top: 0;
	height: 100%;
	background: url(images/squeezebox/bg_w.png) repeat-y;
}
.sbox-bg-nw {
	left: -33px;
	top: -40px;
	background: url(images/squeezebox/bg_nw.png) no-repeat;
}
/**
 * CSS arrows Based on Jon Rohan's post Creating Triangles in CSS
 * @see http://www.dinnermint.org/css/creating-triangles-in-css/
 */
.css-arrow-left {
	border-color: transparent #000 transparent transparent;
	border-style: solid;
	border-width: 10px 20px 10px 0;
	height: 0;
	margin: 10px 0;
	width: 0;
}
.css-arrow-down {
	border-color: #333 transparent transparent;
	border-style: solid;
	border-width: 20px 20px 0;
	height: 0;
	margin: 0 10px;
	width: 0;
}
.css-arrow-up {
	border-color: transparent transparent #333;
	border-style: solid;
	border-width: 0 20px 20px;
	height: 0;
	margin: 0 10px;
	width: 0;
}
.css-arrow-right {
	border-color: transparent transparent transparent #000;
	border-style: solid;
	border-width: 10px 0 10px 20px;
	height: 0;
	margin: 10px 0;
	width: 0;
}
.tooltip {
	background: #333;
	border-radius: 5px;
	box-shadow: 2px 2px 10px rgba(0,0,0,.3);
	color: #fff;
	max-width: 500px;
	padding: 5px 8px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-box-shadow: 2px 2px 10px rgba(0,0,0,.3);
	-webkit-box-shadow: 2px 2px 10px rgba(0,0,0,.3);
}
.tooltip a {
	color: #fff;
}
.tooltip div.close {
	background: url(images/tooltip/tooltip-close.png) no-repeat;
	border: 1px solid #000;
	float: right;
	height: 6px;
	margin-left: 5px;
	width: 7px;
}
.tooltip div.close:hover {
	border-style: outset;
}
a,a:hover{text-decoration:none;font-weight:bold;color:#d60000;}
img{border:none;}
body{background:#ffffff;font-family:Arial,Helvetica,sans-serif;}
h1,h2,h3,h4,h5,h6{font-family:'DejaVuSerifBook',Arial,Helvetica,sans-serif;font-weight:bold;color:#333333;}
h1{font-size:28px;line-height:2.25em;}
h2{font-size:23px;line-height:2.0em;}
p{margin:0 0 5px 0;}
div.hrule{border:none;border-bottom:1px solid #FFFFFF;border-top:1px solid #000000;clear:both;height:0;width:100%;}
#wrapper{width:1000px;margin:10px auto 0 auto;padding:0;}
#header{position:relative;height:160px;background:#000000;padding:0;position:relative;z-index:0;}#header h1{font-size:24px;}
#header h4{display:inline;color:#ffffff;font-weight:normal;font-size:13px;margin:0 85px 0 0;}
#banner_notice{float:left;width:500px;height:125px;}#banner_notice h1,#banner_notice h3{color:#eeeeee !important;}
h1#logo{float:left;width:170px;height:160px;margin:0 0 0 0;}
#social_box{position:relative;float:right;height:50px;margin:10px 10px 0 0;}
#social_buttons{position:absolute;top:0px;right:0px;width:75px;}#social_buttons a{float:left;margin:0 3px 0 0;}#social_buttons a img{width:20px;height:20px;}
#content{margin:10px auto 10px auto;border-top:1px solid #000000;border-bottom:1px solid #000000;}
#main_left{float:left;width:499px;margin:0;border-right:1px solid #000000;}
#sidebar_right{float:right;width:500px;margin:0;}
#content_anchor{width:100%;display:block;clear:both;}
#footer{height:75px;margin:0 auto 25px auto;padding:10px;clear:both;text-align:center;}#footer img{width:425px;margin:auto;display:block;}
#squeeze_mailing_list{width:570px;height:270px;background:#000;color:#fff;padding:15px;}#squeeze_mailing_list h1,#squeeze_mailing_list h2{color:#fff;}
#squeeze_mailing_list label{color:#fff;}
#sbox-content #contact_form_content{background:#000;color:#fff;padding:15px;}#sbox-content #contact_form_content h1,#sbox-content #contact_form_content h2{color:#fff;}
#sbox-content #contact_form_content label{color:#fff;}
#main_menu{position:absolute;bottom:5px;right:5px;margin:50px 5px 5px 0;padding:0;height:30px;overflow:hidden;}#main_menu ul{height:30px;list-style:none;margin:0 0 0 5px;padding:0 0 0 5px;font-size:16px;font-family:Helvetica,Arial,sans-serif;display:block;text-align:left;overflow:hidden;}#main_menu ul li{float:left;display:block;margin:0;cursor:pointer;}#main_menu ul li a{display:block;height:30px;line-height:30px;margin:0;padding:0px 7px 0px 7px;text-align:left;font-family:Arial,sans-serif;color:#ffffff;font-weight:bold;border-top:2px solid #000000;text-transform:uppercase;}
#main_menu li.selected a{color:#666666;}
#slideshow1,#slideshow2,#slideshow3{display:block;position:relative;background:#c7c9be;padding:0;}
#slideshow1{height:565px;width:495px;margin:5px 5px 5px 0;}
#slideshow2{height:276px;width:495px;margin:5px 0 6px 5px;}
#slideshow3{height:276px;width:495px;margin:5px 0 5px 5px;}
img#slideshow1-1,img#slideshow1-2,img#slideshow2-1,img#slideshow2-2,img#slideshow3-1,img#slideshow3-2{display:none;position:absolute;margin:0;padding:0;top:0;left:0;z-index:1;}
.validation-advice{color:#fff;background:#c11700;font-weight:bold;}
#company_links{width:1000px;margin:0 auto 0 auto;overflow:hidden;}#company_links ul{list-style-type:none;}#company_links ul li{float:left;}#company_links ul li a{display:block;margin:0 9px 0 0;}#company_links ul li a.last_link{margin:0 !important;}
form.full_form input[type='text'],form.full_form input[type='email']{width:375px;height:40px;line-height:40px;font-size:35px;}
form.full_form input[type='password']{width:375px;height:45px;line-height:45px;font-size:35px;}
form.full_form textarea{width:375px;}
form.full_form input[type='submit']{font-size:15px;margin:10px 0 0 0;}
form.full_form dl,form.full_form dt,form.full_form dd{margin:0;padding:0;}
form.full_form dt label{font-size:17px;font-weight:bold;color:#3a2f57;}
form.full_form dl{width:200px;margin:0 15px 0 0;padding:0 0 0 0;}
form.full_form dt{display:block;text-align:left;width:200px;line-height:25px;margin:0 0 -3px 0;padding:0 0 0 0;}
form.compact_form ul{list-style-type:none;clear:both;}form.compact_form ul li{margin:5px 0 5px 0;float:right;}form.compact_form ul li input[type='text'],form.compact_form ul li input[type='email']{width:275px;height:25px;line-height:25px;font-size:22px;}
form.compact_form ul li textarea{width:375px;}
form.compact_form ul li input[type='submit']{clear:both;font-size:15px;}
form.compact_form ul li label{font-size:20px;font-weight:bold;color:#3a2f57;}
button.awesome,.button.awesome{background:#222222 url(images/layout/overlay-button.png) repeat-x;display:inline-block;padding:5px 10px 6px;color:#fff;text-decoration:none;font-weight:bold;line-height:1;-moz-border-radius:5px;-webkit-border-radius:5px;-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.5);-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.5);text-shadow:0 -1px 1px rgba(0, 0, 0, 0.25);border-bottom:1px solid rgba(0, 0, 0, 0.25);position:relative;cursor:pointer;}
.spinner{position:absolute;top:50%;left:50%;margin:-32px 0 0 -32px;z-index:1000;}
.spinner-msg{font-size:13px;text-align:center;font-weight:bold;color:#cccccc;}
.spinner-img{background:url(images/layout/spinner.gif) no-repeat;width:64px;height:64px;margin:5px auto 0 auto;}
.hideme{opacity:0;display:none;}
.clearfix{clear:both;height:0;}
*html .clearfix{height:1%;font-size:1px;line-height:1px;overflow:hidden;visibility:hidden;}


