@charset "utf-8";

/*CSS Reset*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: top;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}


/*Kryston CSS*/

body {
	font: 62.5% Arial, Helvetica, sans-serif;
	background: #242424 url(../img/general/background.jpg) repeat-y center top;
}
input {
	background: #E8E8E8;
	border: 1px solid #AAA;
	color: #252525;
	font: 1em/1.6em Verdana, Geneva, sans-serif;
	padding: 5px;
	width: 558px;
}
textarea {
	background: #E8E8E8;
	border: 1px solid #AAA;
	color: #252525;
	font: 1em/1.6em Verdana, Geneva, sans-serif;
	height: 150px;
	padding: 5px;
	width: 558px;
}
input:focus, textarea:focus {
	background: #FFF;
	border: 1px solid #66CC33;
}
legend {
	padding: 1em 0;
	display: block;
	font-size: 1.4em;
	line-height: 1em;
	color: #333;
	text-transform: uppercase;
	font-weight: bold;
}
fieldset {
	border-style: none;
}
label {
	display: block;
	margin-top: 1em;
	font-size: 1em;
	line-height: 1em;
	color: #666;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 1em;
}
em {
	font-style: italic;	
}

/* General Layout */

#wrapper {
	width: 960px;
	margin: 0px auto;
	position: relative;
}
#leftColumn {
	width: 230px;
	position: absolute;
	left: 0px;
	top: 50px;
	z-index: 2;
}
#rightColumn {
	width: 680px;
	position: absolute;
	top: 150px;
	right: 0px;
	background: #FFF url(../img/general/content_bg.gif) repeat-x left top;
	z-index: 1;
}
#topRow {
	padding-top: 120px;
}
#contentWrapper {
	background: #FFF url(../img/general/content_bg.png) repeat-y left top;
	border-top: 1px solid #FFF;
}
#header {
	background: url(../img/general/top_shade.png) repeat-x left top;
	height: 50px;
	/*border-bottom: 1px solid #CCC;*/
	padding: 0px 30px 35px 30px;
}
.contentLeft {
	margin: 0px 0px 0px 30px;
	float: left;
	width: 570px;
	padding-top: 17px;
}
.contentRight {
	width: 310px;
	margin-right: 25px;
	float: right;
	padding-top: 15px;
}
.fullWidth {
	margin: 0 30px;
	clear: both;
	padding-top: 1.6em;
}
#footer {
	clear: both;
	text-align: center;
	padding: 20px 0 0 0;
}
#slogan {
	height: 23px;
	width: 359px;
	position: absolute;
	right: 0px;
	top: 90px;
	background: url(../img/general/kryston_tagline.png) no-repeat left top;
	text-indent: -9999px;
}
#logo {
	height: 150px;
	width: 250px;
	position: absolute;
	left: 0px;
	top: 0px;
	background: url(../img/general/kryston_logo.png) no-repeat left top;
	text-indent: -9999px;
}
#flashIntro {
	margin-bottom: 15px;
}

/* NAVIGATION STYLING */


.menu {
	height:30px; 
	position:relative; 
	z-index: 80;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	width:120px;
	position:relative;
}
.menu ul ul li {
	width: 170px;	
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:1.4em;
	text-decoration:none; 
	color:#fff; 
	width:110px;
	height:30px; 
	border:1px solid #000; 
	border-width:0; 
	background: transparent url(../img/general/nav_top_normal.png) left top repeat-x; 
	padding-left:10px; 
	line-height:29px; 
	text-transform:	uppercase; 
	font-weight:bold;
}
.menu a.firstItem {
}

/* style the second level background */
.menu ul ul a.fly, .menu ul ul a.fly:visited {
	background: #66cc33 url(../img/general/nav_fly_normal.png) right top repeat-x; 
}
/* style the second level hover */
.menu ul ul a.fly:hover{
	background: #66cc33 url(../img/general/nav_fly_hover.png) right top repeat-x; 
	color:#252525;
}
.menu ul ul :hover > a.fly {
	background: #66cc33 url(../img/general/nav_fly_hover.png) right top repeat-x; 
	color:#252525;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background: #000 url(../img/general/nav_sub_normal.png) left top repeat-x; 
	color: #FFF;
}
/* style the third level hover */
.menu ul ul ul a:hover {
	background: #990033 url(../img/general/nav_sub_hover.png) left top repeat-x; 
	color: #FFF;
}

.menu ul ul a, .menu ul ul ul a {text-transform: none; /*font-weight: normal;*/}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top: 30px;
	left:0; 
	width:170px;
	border-top:1px solid #000;
}

/* position the third level flyout menu */
.menu ul ul ul {
	left:169px;
	top:-1px;
	width:168px;
}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {left:-169px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0; border-collapse:collapse;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background: #66cc33 url(../img/general/nav_drop_normal.png) left top no-repeat;
	color: #FFF; 
	height: auto; 
	line-height: 1.2em; 
	padding: 5px 10px;
	width: 148px;
	border-width: 0 1px 1px 1px; 
	/*font-weight: normal;*/ 
	text-transform: none;
}

/* style the top level hover */
.menu a:hover {
	background: transparent url(../img/general/nav_top_hover.png) left top no-repeat;
	color:#252525;
}
.menu ul ul a:hover {
	background: #66cc33 url(../img/general/nav_top_hover.png) left top no-repeat;
	color:#252525;
}
.menu :hover > a {
	background: transparent url(../img/general/nav_top_hover.png) left top no-repeat;
	color:#252525;
}
.menu ul ul :hover > a {
	background: #66cc33 url(../img/general/nav_drop_hover.png) left top no-repeat;
	color:#252525;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{visibility:visible; }
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ visibility:visible;}

/* TEXT STYLES */

p {
	font-size: 1.3em;
	/*font-family: Verdana, Geneva, sans-serif;*/
	line-height: 18px;
	color: #666;
	padding-bottom: 1em;
}
.introParagraph {
	text-transform: uppercase;
	font-weight: bold;
}
/*div.contentLeft + div.contentLeft {
	margin-top: 3.2em;	
}*/
.breadCrumb {
	color: #000;
	font-weight: bold;
	text-indent: 0;
	padding: 1.6em 0px 0px;
}
strong {
	font-weight: bold;	
}
h1 {
	color: #66cc33;
	text-transform: uppercase;
	font: 2.4em Tahoma, Geneva, sans-serif;
	padding-top: 30px;
	padding-bottom: 5px;
	border-bottom: 1px solid #CCC;
	width: 570px;
}
h2 {
	color: #666;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 2em;
}
h3 {
	color: #66cc33;
	text-transform: uppercase;
	font: 1.8em Tahoma, Geneva, sans-serif;
	padding-top: 15px;
	padding-bottom: 5px;
	border-bottom: 1px solid #CCC;
	margin-bottom: 1em;
}
h4 {
	color: #333;
	font-size: 1.4em;
	text-transform: uppercase;
	font-weight: bold;
	padding-bottom: 1em;
}
h5 {
	font-size: 1.4em;
	line-height: 1.4em;
	color: red;
	margin-bottom: 1em;
}
h6 {
	font-size: 1.4em;
	line-height: 1.4em;
	color: #666;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 1em;
}

/* LINK STYLES */

#contentWrapper p a {
	color: #1598c2;
	text-decoration: none;
	border-bottom: 1px solid #333;		
}
#contentWrapper p a:visited {
	color: #333;
	border-bottom: 1px solid #333;		
}
#contentWrapper p a:hover {
	color: #333;
	border-bottom: 1px solid #1598c2;
}
#contentWrapper p a:active {
	border-bottom: 1px solid #333;
}

/* ABOUT US STYLING */

#aboutContainer {
	margin-top: 10px;
	float: left;
	width: 230px;
	background-color: #66cc33;
}
#aboutContainer h4 {
	font-size: 1.4em;
	padding: 5px;
	font-weight: bold;
	text-transform: uppercase;
	color: #FFF;
	cursor: pointer;
}
#aboutContainer p {
	text-indent: 0;
}

#aboutDetails {
	background: #6C3 url(../img/general/about_details_background.jpg) no-repeat left top;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
	border-bottom: 1px solid #4c892d;
}
.aboutTitle {
	color: #333;
	font-weight: bold;
	padding-top: 1em;
	padding-bottom: 0px;
}
.aboutText {
	color: #FFF;
	padding-top: 0px;
}

/* DEALER LIST STYLING */

#dealersWrapper {
	clear: left;
	padding: 0 30px;
}
#dealer_table {
	border-collapse: collapse;
	font-size: 1.4em;
	margin-top: 20px;
	width: 100%;
}
#dealer_table td {
	padding: 1em;
	border-style: solid;
	border-width: 1px 0 1px 0;
	border-color: #CCC;
	line-height: 2.4em;
	color: #666;
}
#dealer_table th {
	background: #66CC33 url(../img/general/tableBackgrounds.png) repeat-x right 0px;
	padding: 10px;
	font-weight: bold;
	color: #252525;
}
#dealer_table thead tr .header {
	cursor: pointer;
	background: #000 url(../img/general/tableBackgrounds.png) no-repeat right -100px;
}
#dealer_table thead tr .headerSortUp {
	background: #000 url(../img/general/tableBackgrounds.png) no-repeat right -200px;
}
#dealer_table thead tr .headerSortDown {
	background: #000 url(../img/general/tableBackgrounds.png) no-repeat right -300px;
}
.even {
	background: #FFF;
}
.odd {
	background: #E8E8E8;
}
#dealer_table tr:hover td {
	background-color: #E8E8E8;
	color: #252525;
}

/* GENERAL STYLING */

.contentLeft ul li, .contentRight ul li {
	font-size: 1.3em;
	line-height: 18px;
	color: #666;
	padding-left: 20px;
	background: url(../img/general/bullet_point.gif) no-repeat left top;
}
.contentLeft ul, .contentLeft ol {
	padding-bottom: 1em;	
}
.contentLeft ol li, .contentRight ol li {
	font-size: 1.4em;
	line-height: 1.6em;
	color: #666;
	list-style: decimal;
	margin-left: 1.6em;
}
.numberList {
	margin-bottom: 15px;	
}

/* PRODUCT RELATED CLASSES */

.primaryProduct {
	height: 350px;
	margin-bottom: 30px;
	width: 570px;
	}
	.primaryProduct img {
		display: none;	
	}
.productDetails {
}
.productDetails li {
	padding-left: 0!important;
	background: url(none)!important;
}
.productDetailsAvailability {
	border-top: 1px solid #CCC;
	margin-top: 14px;
	padding: 1em 0;
}
.productDetailsTable {
	border-collapse: collapse;
	font-size: 1.4em;
	width: 570px;
	margin: 0px;
	}
	.productDetailsTable thead td {
		background: #66CC33 url(../img/general/tableBackgrounds.png) left top repeat-x;
		color: #252525;
		padding: 5px;
		border: 1px solid #252525;
		font-weight: bold;
	}
	.productDetailsTable tbody td {
		padding: 5px;
		border: 1px solid #999;
		color: #666;
	}
	.productDetailsTable tbody tr:hover td {
		color: #252525;
	}
.productColour {
	margin-top: 1.6em;
}
.productColour li {
	padding-left: 0!important;
	background: url(none)!important;
}
.productColourTitle {
	color: #333;
	font-weight: bold;
	text-transform: uppercase;
}
.productReview {
	margin-top: 1.6em;
	background: #E8E8E8;
	border: 1px solid #CCC;
	}
	.productReview h4 {
		border-bottom: 1px solid #CCC;
		padding: 1em 1em 0.5em;
		margin: 0 0 1em 0;
	}
	.productReview p {
		padding-right: 1em;
		padding-left: 1em;
		font-style: italic;
	}
	.productReview .insetImage {
		margin-right: 5px;
	}
.insetImage {
	background: url(../img/general/inset_image_bg.png) top left no-repeat;
	clear: right;
	float: right;
	margin-left: 5px;
	height: 140px;
	width: 140px;
	}
	.insetImage a {
		border: none!important;
		display: block;
		padding: 12px 15px 10px 15px;
	}
.insetImageSmall {
	border: 1px solid #333;
	float: right;
	margin: 0 0 10px 10px;
}
.extraPicture, .catchPicture {
	margin: 0px auto 30px;
}
.diagram {
	background: url(../img/general/bottom_shadow_310x6.png) no-repeat left bottom transparent;
	padding: 0 0 6px 0;
}
.diagramInset {
	background: url(../img/general/bottom_shadow_570x6.png) no-repeat left bottom transparent;
	padding: 0 0 6px 0;
}
.diagramInner, .infoBoxInner {
	background: transparent url(../img/general/grey_flat_310x40.png) repeat-y left top;
	padding: 0 5px;
}
.diagramInsetInner {
	background: transparent url(../img/general/grey_flat_570x40.png) repeat-y left top;
	padding: 0 5px;
}
.diagram, .diagramInset {
	margin: 0px auto 15px;
}
.diagram img, .diagramInset img {
	border-top: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #666;
	border-left: 1px solid #CCC;
}
.details {
	background: url(../img/general/grey_gradient_300x100.png) top left no-repeat;
	padding: 15px 15px 0 15px;
}
.detailsInContent {
	background: url(../img/general/grey_gradient_560x100.png) top left no-repeat;
	padding: 15px 15px 0 15px;
}
.extraDetails, .catchDetails {
	padding: 15px 15px 0px 15px;
	background: transparent url(../img/general/grey_gradient_310x1000.png) no-repeat left top;
}
.caption {
	border-color:#FFFFFF #CCCCCC #CCCCCC;
	border-style:solid;
	border-width:1px;
	font-weight: bold;
	font-style: normal!important;
	padding: 10px 15px;
	background: #CCC url(../img/general/details_bg.png) repeat-x left top;
}
.infoBox {
	background: transparent url(../img/general/bottom_shadow_310x6.png) no-repeat left bottom;
	margin: 0px auto 24px;
	padding-bottom: 6px
}
.infoBox h2 {
	font-size: 1.4em;
	color: #FFF;
	text-transform: uppercase;
	font-weight: bold;
	background: transparent url(../img/general/green_rounded_310x40.png) no-repeat center top;
	height: 40px;
	line-height: 40px;
	padding: 0 15px;
}
.infoBox p {
	color: #333;
	font-size: 1.2em;
}
.relatedProducts {
	margin-top: 30px;	
}
.relatedProducts h2 {
	font-size: 1.4em;
	color: #FFF;
	text-transform: uppercase;
	font-weight: bold;
	background: transparent url(../img/general/green_rounded_570x40.png) no-repeat left top;
	height: 40px;
	line-height: 40px;
	padding: 0 15px;
}
.relatedProducts h4 {
	color: #333;
	padding-bottom: 0;
}
.relatedProducts p {
	color: #333;
	font-size: 1.1em;	
}
.relatedProductsInner {
	background: transparent url(../img/general/grey_gradient_570x180.png) no-repeat left top;
	float: left;
	padding: 15px;
	height: 150px;
	width: 540px;
}
.relatedProductsInner_left {
	float: left;
	width: 270px;
}
.relatedProductsInner_right {
	float: right;
	padding-left: 10px;
	width: 260px;
}
.questionSymbol, .answerSymbol {
	background: url(../img/general/question.png) no-repeat left top;
	height: 30px;
	width: 30px;
	float: left;
	left: -50px;
	margin-right: -40px;
	position: relative;
}
.questionContainer {
	margin-bottom: 1.6em;
	border-top: 1px solid #CCC;
	padding: 1em 0 0 50px;
}
.answerSymbol {
	background: url(../img/general/answer.png) no-repeat left top;
}
.answerContainer {
	margin-bottom: 30px;
	padding: 1em 0 0 50px;
}
.insidePicture {
	margin: 15px auto;
	padding: 0 10px;
	width: 550px;	
}
.featureText {
	border-top: 1px solid #FFF;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	border-left: 1px solid #CCC;
	padding: 10px;
	background: #CCC url(../img/general/diagram_full_width.png) no-repeat center top;
}
.featureText p {
	text-indent: 0;
}
.minimised {
	background: url(../img/general/accordion_maximise.png) no-repeat 0px 0px;
	cursor: pointer;
}
.maximised {
	background: url(../img/general/accordion_minimise.png) no-repeat 0px 0px;
	cursor: pointer;
}
.small_element {
	font-size: 0.5em;
}
.warning {
	font-style: italic;
}
.clear {
	clear: both;
}
.question {
	background: #000 url(../img/general/question_button_960.png) no-repeat right top;
	color: #FFF;
	display: block;
	font-weight: bold;
	font-size: 1.4em;
	height:30px;
	line-height:30px;
	padding:0 10px;
	text-transform: uppercase;
	text-decoration: none;
	}
	.question:hover {
		background: #000 url(../img/general/question_button_960_over.png) no-repeat right top;
	}
.returnTop {
}
.rollover {
	position: absolute;
	z-index: 99;
	top: 0px;
	left: 0px;
}
.splitContent {
	width: 100%;
	float: left;
	padding: 1.6em 0 0 0;
	}
	.splitContentLeft {
		float: left;
		width: 50%;
	}
	.splitContentRight {
		float: right;
		width: 50%;
	}
.textBubble {
	background: #66CC33;
	color: #FFF;
	font-weight: bold;
	margin-right: 1em;
	padding: 5px;
	-moz-border-radius: 5px;  
	-khtml-border-radius: 5px;  
	-webkit-border-radius: 5px; 
}
.soloImage {
	margin-bottom: 30px;	
}
.button {
	background: #000 url(../img/general/link_button.png) no-repeat right top;
	color: #FFF;
	display: block;
	font-weight: bold;
	font-size: 1.3em;
	height:30px;
	line-height:30px;
	padding:0 10px;
	margin: 0 -15px;
	text-transform: uppercase;
	text-decoration: none;
	}
	.button:hover {
		background: #000 url(../img/general/link_button_over.png) no-repeat right top;
	}
.back {
	margin: 15px 0 0 0!important;
	width: 265px;	
}
.button960 {
	background: #000 url(../img/general/link_button_960.png) no-repeat right top;
	color: #FFF;
	display: block;
	font-weight: bold;
	font-size: 1.3em;
	height:30px;
	line-height:30px;
	padding:0 10px;
	text-transform: uppercase;
	text-decoration: none;
	}
	.button960:hover {
		background: #000 url(../img/general/link_button_960_over.png) no-repeat right top;
	}
div.loading {
	background: url(../img/general/ajax-loader.gif) no-repeat center center;
}

/* GENERAL ID's */

#questionNav {
	margin-bottom: 30px;	
}
#error li a {
	color: #1598c2;
	text-decoration: none;
	border-bottom: 1px solid #333;		
}
#error li a:visited {
	color: #333;
	border-bottom: 1px solid #333;		
}
#error li a:hover {
	color: #333;
	border-bottom: 1px solid #1598c2;
}
#error li a:active {
	border-bottom: 1px solid #333;
}
#dealersMap {
	height: 400px;
	margin: 20px 30px 0 30px;
	width: 900px;
}

/*  FOOTER STYLING */

#footer_link {
	margin: 0 30px;
	padding-top: 10px;
	background: url(../img/general/footer_arrow.gif) no-repeat center top;
}
#footer_link p {
	padding-top: 0px;
}
#footer_link p a {
	text-decoration: none;
	color: #999;
	border-top: 1px solid #ccc;
	display: block;
	font-weight: bold;
	border-bottom-style: none;
}
#footer_link p a:visited {
	text-decoration: none;
	color: #999;
	border-top: 1px solid #ccc;
	border-bottom: none;
	display: block;
	font-weight: bold;
}
#footer_link p a:hover {
	color: #333;
	border-top: 1px solid #666;
	border-bottom-style: none;
}
#footer_link p a:active {
	color: #333;
	border-top: 1px solid #666;
}

/* GALLERY STYLING */

ul.galleryThumbnails li {
	float: left;
	margin-right: 10px;
	margin-bottom: 16px;
	position: relative;
	background: url(../img/general/inset_image_bg.png) top left no-repeat;
	list-style: none;
	padding: 12px 15px 15px 15px;
}
li.galleryThumbnailsLastitem {
	margin-right: 0!important;
}
.galleryDescription {
	width: 570px;
}


/* Quicksearch styles */

.quicksearch {
	padding: 10px 0;
	overflow: auto;
}
.qs_label {
	font-size: 1.4em;
	float: left;
	line-height: 1.6em;
	margin: 0;
}
.qs_input {
	width: 380px;
	float: right;
	font: 1.4em Arial, Helvetica, sans-serif;
	margin: 0;
	background: #FFF url(../img/general/searchIcon.png) no-repeat right center;
	padding-right: 20px;
}
.qs_input:focus {
	background: #FFF url(../img/general/searchIcon.png) no-repeat right center;	
}
.loader {
	background: url(../img/general/ajax-loader.gif) left center no-repeat;
	display: block;
	float: right;
	height: 25px;
	width: 25px;
}

/* DEALER STYLING 
------------------------------------------------------- */

#dealerSearch {
	/*padding: 10px 0;
	overflow: auto;*/	
	}
	#dealerLabel {
		font-size: 1.4em;
		height: 30px;
		line-height: 30px;
		margin: 0;
	}
	#dealerInput {
		background: #FFF url(../img/general/searchIcon.png) no-repeat right center;
		float: left;
		font: 1.4em Arial, Helvetica, sans-serif;
		height: 20px;
		margin: 0;
		padding-right: 20px;
		/*width: 548px;*/
		width: 478px;
	}
	#dealerSubmit {
		background: #666;
		border: 1px solid #252525;
		color: #FFF;
		clear: right;
		cursor: pointer;
		display: block;
		/*height: 32px;*/
		float: right;
		font: bold 1.4em Arial, Helvetica, sans-serif;
		margin: 0;
		outline: none;
		padding: 5px;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
		width: 230px;
		-moz-border-radius: 10px;
		-webkit-border-radius: 10px;
		}
		#dealerSubmit:hover{
			background: #404040;
			border: 1px solid #333;
		}
	#radiusSelect {
		background: #FFF;
		border: 1px solid #AAA;
		float: left;
		font: 1.4em Arial, Helvetica, sans-serif;
		margin-left: 20px;
		padding: 6px;
		width: 108px;
	}
	#locationSelect {
		background: #FFF;
		border: 1px solid #AAA;
		clear: left;
		font: 1.4em Arial, Helvetica, sans-serif;
		margin-top: 10px;
		padding: 6px;
		visibility: hidden;
		width: 505px;
	}

#searchResults {
	margin: 1em 0 0 0;	
}


/* SLIDER STYLING 
------------------------------------------------------- */

#sliderWrapper {
	background: transparent url(../img/general/grey_flat_310x40.png) repeat-y left top;
}
#slider {
	height:225px;
	width:300px;
	overflow:hidden;
	margin: 0 5px;
}

#slider li { 
	height: 225px;
	width: 300px;
	overflow:hidden;
}
#slider ul li {
	background: none;
	padding: 0;
}

/* FORM STYLE 
------------------------------------------------------- */


#contact_form {
	border-top: 1px solid #CCC;
	}
	#contact_form ol li {
		list-style: none;
		line-height: 0;
		clear: left;
		margin: 0 0 0 0;
	}
	#contact_form ol li:last-child {
		border: none;	
	}
	#contact_form ol li p {
		font-size: 1em;	
	}
.userIDcontainer {
	display: none;	
}
span.required {
	color: red;	
}
#submit {
	background: #66CC33;
	border: 1px solid #252525;
	color: #FFF;
	cursor: pointer;
	display: block;
	outline: none;
	padding: 10px 45px;
	text-decoration: none;
	float: right;
	font-size: 1em;
	font-weight: bold;
	margin: 10px 0;
	text-transform: uppercase;
	width: 65px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-box-shadow:0px 1px 5px #666;
	-webkit-box-shadow:0px 1px 5px #666;
	}
	#submit:hover{
		background: #404040;
		border: 1px solid #333;
	}
.submitWrapper {
}


/* Accordion List STYLE 
------------------------------------------------------- */

.list-show {
	background: transparent url(../img/general/grey_flat_310x40.png) repeat-y left top;
	padding: 0 5px;			
}
.list-show h4 {
	color: #FFF;
	font-size:1.3em;
	height:30px;
	line-height:30px;
	padding:0 10px;	
}
#contentWrapper ul.accordion-list li {
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #CCC;
	list-style: none;
	padding: 10px;
	background: #CCC url(../img/general/details_bg.png) repeat-x left top;
}
.accordion-list p {
	font-size: 1em;
}

/* ARTICLES LIST STYLE 
------------------------------------------------------- */

.articles {
	background: transparent url(../img/general/grey_flat_310x40.png) repeat-y left top;
	padding: 0 5px;
}
.articles li {
	background-image: none!important;
	padding-left: 0!important;
}
.articles a {
	background: #000 url(../img/general/link_button.png) no-repeat left top;
	color: #FFF;
	display: block;
	/*font-size: 0.9em;*/
	font-weight: bold;
	height:30px;
	line-height:30px;
	padding:0 10px;	
	text-transform: uppercase;
	text-decoration: none;
	}
	.articles a:hover {
		background: #000 url(../img/general/link_button_over.png) no-repeat left top;
	}


/* VIDEO RELATED
------------------------------------------------------- */

#videoHolder {
	overflow: auto;
	}
	#videoHolder li {
		background: none;
		clear: left;
		font-size: 1em;
		padding: 0;
		overflow: auto;
		}
		#videoHolder li a {
			float: left;
			margin-right: 15px;
			margin-bottom: 30px;
		}
		#videoHolder li a.videoLink {
			margin-right: 0;
			width: 315px;	
		}
.videoLink {
	background: #000 url(../img/general/video_button_960.png) no-repeat right top;
	color: #FFF;
	display: block;
	font-weight: bold;
	font-size: 1.3em;
	height: 30px;
	line-height: 30px;
	padding: 0 10px;
	text-transform: uppercase;
	text-decoration: none;
	}
	.videoLink:hover {
		background: #000 url(../img/general/video_button_960_over.png) no-repeat right top;
	}
#videoPlayer {
	display: block;
	height: 428px;
	width: 570px;
}
#embedCode {
	height: 130px;
	overflow: hidden;
}
#embedContainer {
	display: none;	
}
