/*
Gold = #e5a713
Black = #231120
Grey = #e0e1dd
Parchment = #f9e8ca



*/





/* default styles */
body {
	background: #fff;
	background-image: url("../images/globalhomebg.jpg");
	/* font-family: Verdana, Arial, Helvetica, sans-serif; */
	font-family:  Arial, Helvetica, sans-serif;
	font-size: 75%;
	color: #666666;
	margin: 0px 0px 0px 0px;
}

a:link {
	color: #333333;
	text-decoration: none;
}
a:visited {
	color: #333333;
	text-decoration: none;
}
a:hover {
	color: #333333;
	text-decoration: underline;
}
a:active {
	color: #333333;
	text-decoration: underline;
}


NavBanner { background-color: #f9e8ca;}
h2.NavBanner { background-color: #f9e8ca;}


.flex-caption {
    position:absolute;
    left:50;right:50;bottom:0;
    background:rgba(200, 200, 200,0.8);
    z-index:1;padding:20px;
	color:#333;
 }

 
.flex-control-nav {display:none;}

/* -------------------------------------------- */
/* ------------------Content------------------- */
#content {}
#content .wrap-content{ /*margin-top: 30px;*/}

.summary {background:#bbbbbb; padding:30px 0 30px 0;}
.advantages {background:#fff; color:#494449;}
.advantages h1, .advantages h3 {color:#333;}
.breakdown {padding:30px 0 0 0;}

.summary2 {background:#fff; padding:30px 0 30px 0;  color:#494449;}
.summary2 h1, .summary2 h3 {color:#333;}
.advantages2 {background:#2b2b2b url(../media/faded-example.jpg) no-repeat top left;  background-size:contain; padding:30px 0 30px 0;}


.block01 { padding-bottom:10px;}
.block01 img{}
.block01 h2{ text-indent: 15px; line-height:30px; background:#cccccc; color:#333; border-top-left-radius: 10px; border-top-right-radius: 10px; margin:0; height:30px; display:inline-block; width:100%; padding:5px 0 5px 0; }
.block01 h2 a {font-size:20px !important; background-image:none !important; padding-left:15px !important;}
.block01 h2 a, .block01 h2 a:hover {color:#fff;}
.block01 h2 span{padding-left:15px !important; font-size:20px;}


.button {
	background-color: #4c87af; /*  */
	border: none;
	color: #231120;
	padding: 10px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	background-color: #e5a713;
	border-radius: 16px;
	margin: 5px;
	box-shadow: 1px 3px 3px 3px #888888;
	-webkit-transition-duration: 0.4s; /* Safari */
	  transition-duration: 0.4s;

  }
  
  button:focus { outline-style: none; }

  .button1 {
	  border-radius: 16px;
	  background-color: #e5a713;
	  color: #e0e1dd;
  }
  
  .button2 {
	  border-radius: 16px;
	  background-color: #231120;
	  color: #e0e1dd;
  }
  
  
  .button3 {
	border-radius: 16px;
	width:50;
	height:30;
	padding: 3px 3px;
	background-color:#231120;
	color:white
  }
  
  .button4 {
	border-radius: 16px;
	width:50;
	height:30;
	padding: 3px 3px;
	background-color: #e5a713;
	color: #e0e1dd;
  }
  
  .button:hover {
	border-radius: 16px;
	background-color: #666666; /* Green */
	color: #e5a713;
  }
  
  .slidecontainer{
		width: 95%; /* Width of the outside container */
		padding: 2px 2px;
	
  }
  
  /* The slider itself */
  .slider {
	-webkit-appearance: none;
	width: 100%;
	height: 15px;
	border-radius: 5px;   
	background: #888888;
	outline: none;
	opacity: 1;
	-webkit-transition: .2s;
	transition: opacity .2s;
  }
  
  .slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 65px;
	height: 25px;
	border-radius: 30%; 
	background: #e5a713;
	cursor: pointer;
  }
  
  .slider::-moz-range-thumb {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #e5a713;
	cursor: pointer;
  }
  
  /* Mouse-over effects */
  .slider:hover {
	opacity: 1; /* Fully shown on mouse-over */
	background: #666666;
  }
  
  
  
  
  
  .RadioText {
	margin-left : 20px;
  }
  
  .Radiocontainer {
	display: block;
	position: relative;
	padding-left: 5px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 16px;
	width: 95%;
	left: 5%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
  }
  
  

  /* Hide the browser's default radio button */
  .Radiocontainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	margin-right:20px;
  }
  
  /* Create a custom radio button */
  .checkmark {/* un checked radio*/
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #888888;
	border-radius: 50%;
  }
  
  /* On mouse-over, add a grey background color */
  .Radiocontainer:hover input ~ .checkmark {
	background-color: #e5a713;
	
  }
  
  /* When the radio button is checked, add a blue background */
  .Radiocontainer input:checked ~ .checkmark {
	background-color: #231120;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
	content: "";
	position: absolute;
	display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .Radiocontainer input:checked ~ .checkmark:after {
	display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .Radiocontainer .checkmark:after {
   top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5a713;
  }
  
  
  
  
  
  .FixedScreenDiv_background table {
	width:90%;
	border: 1px solid black;
	background-color:#f9e8ca;
  }
  
  
  
  
  


.block01 .col-1-4 .wrap-col img {border-bottom-right-radius: 10px; border-bottom-left-radius: 10px; }
.block01 .yellow-border {border:solid 1px #e5a713; border-radius: 10px;}
.block01 .col-1-4 .yellow-border h2 a{font-size:18px; font-weight:normal; border-radius: 10px;}
.block01 .col-1-4 .wrap-col h3 {font-family:arial; text-transform:none; margin-top:0; font-size:16px;}
.block01 .col-1-4 .wrap-col .links {background:#cccccc; padding:15px; min-height:120px;border-bottom-right-radius: 10px; border-bottom-left-radius: 10px; line-height: 1.4; }
.block01 .col-1-4 .wrap-col .links a {font-size:14px; font-weight:bold; display:block; color:#333; text-transform:none; background:url(../images/gold-arrow.gif) left 3px no-repeat; padding-left:15px; }
.block01 .col-1-4 .wrap-col .links a:hover {text-decoration:underline; color:#fff;}

.block01 .col-1-3 .wrap-col img {border-bottom-right-radius: 10px; border-bottom-left-radius: 10px; }
.block01 .col-1-3 .wrap-col .links {background:#cccccc; padding:15px; color:#333;min-height:140px; }
.block01 .col-1-3 .wrap-col .links a {font-size:14px; font-weight:bold; display:block; color:#333; text-transform:none; background:url(../images/gold-arrow.gif) left 3px no-repeat; padding-left:15px; }
.block01 .col-1-3 .wrap-col .links a:hover {text-decoration:underline;}
.block01 .col-1-3 .wrap-col .links span {font-size:14px; font-weight:bold; display:block; color:#666; text-transform:none;   }



p {
	margin: 0px 0px 0px 0px;
	line-height: 1.4em;
	padding-top: 0px;
	padding-bottom: 6px;
	vertical-align:top;
	font-size: 15px;
}

form {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

h1, h2, h3, h4, h5, h6 {
	padding: 10px 10px 10px 0px;
	margin: 5px 0px 2px 0px;
	color: #666666;
	font-weight: normal;
}

h1{
	font-weight: bold;
}

.hidden_br {
	height: 0px;
}


.hidden {
	display: none;
	width: 0px;
	height:0px;
	font-size: 0px;
	line-height: 0px;
}

img {
	border: 0px;	
} 

.sitemap {
	
}

.sitemap .level_1 a:link,
.sitemap .level_1 a:hover,
.sitemap .level_1 a:active,
.sitemap .level_1 a:visited {
	font-weight: bold;
	text-decoration:none;
}

.sitemap .level_2 a:link,
.sitemap .level_2 a:hover,
.sitemap .level_2 a:active,
.sitemap .level_2 a:visited {
	font-weight: normal;
}

.sitemap .level_3 a:link,
.sitemap .level_3 a:hover,
.sitemap .level_3 a:active,
.sitemap .level_3 a:visited {

}

.last {
	margin-right: 0px !important;
	padding-right:0px !important;
}

/* end default styles */


/* page styles */

.page_container_outer {
	
}


.page_container {
	/*
	width: 985px;
	margin-left:auto;
	margin-right:auto;
	*/
	background: url(../assets/generic/content_bg.jpg) #f3f3f3;
	background-position:left;
	background-size:cover;
}


.header_container {
	width: 985px;
	height:146px;
	margin-left:auto;
	margin-right:auto;
	clear:both;
	display: block;
}

.header_container_outer {
	background:url(../assets/generic/header_bg.gif) repeat-x top;
}

.header_left {
	float:left;
	
}
.header_right {
	float:right;
	padding-top: 30px;
}

.main_container {
	width: 985px;
	margin-left:auto;
	margin-right:auto;
	padding: 10px 0 10px 0;
}

.content_left {
	width:213px;
	float:left;
	
}
.content_left_padding {
	padding-right: 8px;
}


.content_right {
	width:189px;
	float:left;
	
}
.content_right_padding {
	padding-left: 4px;
}


.content_center {
	width:765px;
	float:left;
}
.content_center_padding {
	padding:6px 20px 6px 20px;
}

.content_center_top {
	height:7px;
	background:url(../assets/generic/content_center_top.png) no-repeat bottom;
}

.content_center_mid {
	background: url(../assets/generic/content_center_bg.png) repeat-y;
}

.content_center_btm {
	height:10px;
	background:url(../assets/generic/content_center_btm.png) no-repeat top;
}



.content_center_lg {
	width:771px;
	float:left;
}


.content_center_top_lg {
	height:4px;
	background:url(../assets/generic/content_center_top_lg.png) no-repeat bottom;
}

.content_center_mid_lg {
	background: url(../assets/generic/content_center_bg_lg.png) repeat-y;
}

.content_center_btm_lg {
	height:5px;
	background:url(../assets/generic/content_center_btm_lg.png) no-repeat top;
}



.search_box_container {
	float:left;	
	padding-top:8px;
	padding-left:20px;
	
}

.searchbox {
	height:18px;
	padding:0px;
	margin:0px;
	border:0px;
	width:170px;
	background:#d6d6d6;
	color:666666;
	font-size:1.0em;
	padding-top:7px;
	padding-left:10px;
	
}


/* left panel styles */

.panel_left_container_outer {
	margin-bottom: 10px;
}

.panel_left_container_outer_btm {
	height: 9px;
	background: url(../assets/generic/content_left_btm.png) no-repeat center bottom;
}

.panel_left_container_outer_content {
	
}

.panel_left_container {
	padding:0px 0px 0px 0px;
	/* background: url(../assets/generic/panel_left_bg.gif) repeat-y; */
}

.panel_left_inner {
	background: url(../assets/generic/content_left_bg.png) center repeat-y;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

.panel_left_btm_copy {
	background: url(../assets/generic/content_left_bg.png) center repeat-y;
	padding-left:8px;
	padding-right:8px;
	padding-top:3px;
	padding-bottom:3px;
}

.panel_left_btm_link {
	background: url(../assets/generic/content_left_bg.png) center repeat-y;
	padding-left:8px;
	padding-right:8px;
	font-weight:bold;
	padding-top:3px;
	padding-bottom:3px;
}

.panel_left_btm {
	height: 4px;
	background: url(../assets/generic/panel_left_btm.gif) no-repeat bottom;
}
.panel_left_divide {
	height: 5px;
	background: url(../assets/generic/panel_left_divide.png) repeat-x bottom;
}

.panel_left_header {
	line-height: 50px;
	background: url(../assets/generic/panel_left_title.png) repeat-x bottom;
}

.panel_left_header_padding {
	padding: 0px 13px 0px 13px;
}

.panel_left_header h3 {
	color: #fff;
	text-shadow: 1px 1px 1px #c67d00;
	font-weight: normal;
	font-size: 1.6em;
	font-weight: normal;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

.panel_left_header h3 a:link,
.panel_left_header h3 a:hover,
.panel_left_header h3 a:active,
.panel_left_header h3 a:visited {
	color: #fff;
	text-shadow: 1px 1px 1px #c67d00;
	font-weight: normal;
}

.panel_left_content {
	color: #333333;
	background: url(../assets/generic/content_left_bg.png) repeat-y top;
}

.panel_left_content_padding {
	padding: 0px 13px 0px 13px;
}

.panel_left_content a:link,
.panel_left_content a:hover,
.panel_left_content a:active,
.panel_left_content a:visited {
	color: #333333;
	font-weight: bold;
}


.panel_left_item {
	padding: 10px 5px 10px 2px;
	border-bottom: 1px dotted #a9a9a9;
}

.panel_left_item_with_arrow {
	padding: 10px 10px 10px 2px;
	background: url(../assets/generic/panel_left_arrow_circ.gif) no-repeat right;
	border-top: 1px dotted #a9a9a9;
}

.panel_left_link {
	background: url(../assets/generic/content_left_bg.png) repeat-y top;
	padding: 5px 0px 0px 0px;
	font-weight:bold;
}

/* end left panel styles */

/* center panel styles */
     
.panel_center_container {
	width: 659px;
	padding:0px 0px 0px 0px;
	/* background: url(../assets/generic/panel_center_bg.gif) repeat-y; */
}
.panel_center_top {
	height: 7px;
	background: url(../assets/generic/panel_center_top.png) no-repeat bottom;
	margin-top:6px;
}

.panel_center_btm {
	height: 10px;
	background: url(../assets/generic/panel_center_btm.png) no-repeat bottom;
}

.panel_center_header {	
	line-height: 40px;
}

.panel_center_header_padding {
	padding: 0px 13px 0px 13px;
}

.panel_center_header h3 {
	color: #FFFFFF;
	font-weight: normal;
	font-size: 1.6em;
	font-weight: normal;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

.panel_center_header h3 a:link,
.panel_center_header h3 a:hover,
.panel_center_header h3 a:active,
.panel_center_header h3 a:visited {
	color: #FFFFFF;
	font-weight: normal;
}

.panel_center_content {
	background: url(../assets/generic/panel_center_bg.png) repeat-y top;
}

.panel_center_content_padding {
	padding: 0px 13px 10px 13px;
}


.panel_center_content ul {
	padding: 0px;
	margin: 0px;
	margin-center: 14px;
	margin-bottom: 8px;
}

.panel_center_content ul li {
	margin: 0px 0px 3px 0px;
	list-style-image: url(../assets/generic/arrow_grey.gif);
}

.panel_center_date {
	font-size:1.1em;
	padding: 10px 0px 10px 0px;
}
.panel_center_title {
	font-size:1.2em;
	padding: 10px 0px 10px 0px;
	border-top: 1px dotted #a9a9a9;
}
.panel_center_title h3 {
	margin: 0px;
	font-weight:bold;
}


.panel_center_item {
	padding: 10px 0px 10px 0px;
	border-top: 1px dotted #a9a9a9;
}

.panel_center_link {
	padding: 0px 0px 5px 0px;
	font-weight:bold;
}

/* end center panel styles */

/* home panel styles */

.home_main_container_outer {
	width: 492px;
	float: left;
}

.home_main_container {
	width:478px;
	height:234px;
	background: url(../assets/generic/main_advert_bg.png) no-repeat center top;
}

.home_main_container_padding {

}

.home_main_container_title {
	padding:15px 103px 15px 20px;
}

.home_main_container_title h1 {
	font-size: 42px;
	color:#ffffff;
	text-shadow: 1px 1px 1px #000;
	
}

.home_main_container_text {
	font-size: 12px;
	text-shadow: 1px 1px 1px #000;
	color:#FFFFFF;
	padding:0px 103px 20px 20px;
}

.home_right_container {
	width: 476px;
	float: left;
}

/* home adverts panel styles */

.panel_home_container_outer {
	margin: 0px 17px 15px 0px;
}

.panel_home_container_outer_btm {
	height: 7px;
	background: url(../assets/generic/content_home_btm.png) no-repeat center bottom;
}

.panel_home_container_outer_content {
	padding: 0;
}

.panel_home_container {
	width: 229px;
	
}

.panel_home_btm {
	height: 9px;
	background: url(../assets/generic/panel_home_btm.png) no-repeat top;
}
.panel_home_divide {
	height: 5px;
	background: url(../assets/generic/panel_left_divide.png) repeat-x bottom;
}

.panel_home_header {
	line-height: 50px;
	background: url(../assets/generic/panel_home_title.png) no-repeat top;
}

.panel_home_header_padding {
	padding: 0px 10px 0px 10px;
}

.panel_home_header h3 {
	color: #fff;
	text-shadow: 2px 2px 2px #c67d00;
	font-weight: normal;
	font-size: 18px;
	padding: 0;
	margin: 0;
}

.panel_home_header h3 a:link,
.panel_home_header h3 a:hover,
.panel_home_header h3 a:active,
.panel_home_header h3 a:visited {
	color: #fff;
	font-weight: normal;
	text-shadow: 2 px 2px 2px #c67d00;
}

.panel_home_content {
	color: #666666;
	background: url(../assets/generic/panel_home_bg.png) repeat-y;
}

.panel_home_content img {
	margin: 0px 1px 0px 1px;	
}

.panel_home_content_padding {
	padding:4px 10px 4px 10px;
	min-height: 35px;
}

.panel_home_content a:link,
.panel_home_content a:hover,
.panel_home_content a:active,
.panel_home_content a:visited {
	color: #666666;
	font-weight: bold;
}

.panel_home_btm_link {
	padding:2px 10px 3px 10px;
	font-weight:bold;
	background: url(../assets/generic/panel_home_bg.png) repeat-y;
}

.panel_home_btm_link img {
	margin-right: 5px;
}

.panel_home_btm_link a:link,
.panel_home_btm_link a:hover,
.panel_home_btm_link a:active,
.panel_home_btm_link a:visited {
	color: #de9b0b;
	font-weight: bold;
}

.panel_home_content ul {
	padding: 0px;
	margin: 10px 0px 0px 15px;

}

.panel_home_content ul li {
	margin: 0px 0px 10px 0px;
	list-style-image: url(../assets/generic/arrow_chevron.png);
}

.panel_home_content ul li a:link,
.panel_home_content ul li a:hover,
.panel_home_content ul li a:active,
.panel_home_content ul li a:visited {
	color: #de9b0b;
	font-weight: bold;
}

/* end home panel styles */


/* nav styles */
.header_navbar {
	min-height: 36px;
	padding:0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	width:959px;
	background: none;
	display:block;

}

.header_navbar_home {
	float: left;
}

.header_navbar_inner {
	float: left;
	margin: 10px 0px 2px 0px;
}

.header_navbar_inner ul {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	list-style-type:none;
	float: left;
}
.header_navbar_inner li {
	float: left;
	line-height: 33px;
}


/* end top nav styles */






#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cssmenu:after,
#cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#cssmenu #menu-button {
  display: none;
}
#cssmenu {
  	
  /*font-family: Montserrat, sans-serif;*/
  /*background: #333333;*/
}
#cssmenu > ul > li {
  float: left;
  z-index:1000;
}
#cssmenu.align-center > ul {
  font-size: 0;
  text-align: center;
}
#cssmenu.align-center > ul > li {
  display: inline-block;
  float: none;
}
#cssmenu.align-center ul ul {
  text-align: left;
}
#cssmenu.align-right > ul > li {
  float: right;
  
}
#cssmenu > ul > li > a {
  padding: 12px 24px 12px 0;
  font-size: 12px;
  /*letter-spacing: 1px;*/
  text-decoration: none;
  color: #111111;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  text-transform: none;
}
#cssmenu > ul > li:hover > a {
	color: #E5A812;
	font-family: Montserrat, sans-serif;
	/*font-family: "Helvetica Neue";*/
}
#cssmenu > ul > li.has-sub > a {
  padding-right: 25px;
}
/*#cssmenu > ul > li.has-sub > a:after {
  position: absolute;
  top: 22px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #dddddd;
  content: '';
}*/
/*#cssmenu > ul > li.has-sub > a:before {
  position: absolute;
  top: 19px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #dddddd;
  content: '';
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}*/
#cssmenu > ul > li.has-sub:hover > a:before {
  top: 23px;
  height: 0;
}
#cssmenu ul ul {
  position: absolute;
  left: -9999px;
}
#cssmenu.align-right ul ul {
  text-align: right;
}
#cssmenu ul ul li {
  height: 0;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}
#cssmenu li:hover > ul {
  left: auto;
}
#cssmenu.align-right li:hover > ul {
  left: auto;
  right: 0;
}
#cssmenu li:hover > ul > li {
  height: 35px;
}
#cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}
#cssmenu.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}
#cssmenu ul ul li a {
	border-bottom: 1px solid rgba(150, 150, 150, 0.15);
	padding: 11px 15px;
	width: 170px;
	font-size: 12px;
	text-decoration: none;
	color: #000000;
	font-weight: 400;
	background: #FFFFFF;
}
#cssmenu ul ul li:last-child > a,
#cssmenu ul ul li.last-item > a {
  border-bottom: 0;
}
#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
  color: #E5A812;
}
#cssmenu ul ul li.has-sub > a:after {
  position: absolute;
  top: 16px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #ffffff;
  color: 
  /*content: '';*/
#000000;}
#cssmenu.align-right ul ul li.has-sub > a:after {
  right: auto;
  left: 11px;
}
#cssmenu ul ul li.has-sub > a:before {
  position: absolute;
  top: 13px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #dddddd;
	
  /*content: '';*/
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}
#cssmenu.align-right ul ul li.has-sub > a:before {
  right: auto;
  left: 14px;
}
#cssmenu ul ul > li.has-sub:hover > a:before {
  top: 17px;
  height: 0;
}
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
  #cssmenu {
    width: 100%;
	z-index:1000;
	background:#2b2b2b;
  }
  #cssmenu ul {
    width: 100%;
    display: none;
	
  }
  #cssmenu.align-center > ul {
    text-align: left;
  }
  #cssmenu ul li {
    width: 100%;
    border-top: 1px solid rgba(120, 120, 120, 0.2);
	padding-left:17px;
	
  }
  #cssmenu ul ul li,
  #cssmenu li:hover > ul > li {
    height: auto;
  }
  #cssmenu ul li a,
  #cssmenu ul ul li a {
    width: 100%;
    border-bottom: 0;
  }
  #cssmenu > ul > li {
    float: none;
  }
  #cssmenu ul ul li a {
    padding-left: 25px;
  }
  #cssmenu ul ul ul li a {
    padding-left: 35px;
  }
  #cssmenu ul ul li a {
    color: #dddddd;
    background: none;
  }
  #cssmenu ul ul li:hover > a,
  #cssmenu ul ul li.active > a {
    color: #ffffff;
  }
  #cssmenu ul ul,
  #cssmenu ul ul ul,
  #cssmenu.align-right ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
  }
  #cssmenu > ul > li.has-sub > a:after,
  #cssmenu > ul > li.has-sub > a:before,
  #cssmenu ul ul > li.has-sub > a:after,
  #cssmenu ul ul > li.has-sub > a:before {
    display: none;
  }
  #cssmenu #menu-button {
    display: block;
    padding: 17px;
    color: #dddddd;
    cursor: pointer;
    font-size: 12px;
    text-transform: none;
    font-weight: 700;
  }
  #cssmenu #menu-button:after {
    position: absolute;
    top: 22px;
    right: 17px;
    display: block;
    height: 4px;
    width: 20px;
    border-top: 2px solid #dddddd;
    border-bottom: 2px solid #dddddd;
    content: '';
  }
  #cssmenu #menu-button:before {
    position: absolute;
    top: 16px;
    right: 17px;
    display: block;
    height: 2px;
    width: 20px;
    background: #dddddd;
    content: '';
  }
  #cssmenu #menu-button.menu-opened:after {
    top: 23px;
    border: 0;
    height: 2px;
    width: 15px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #cssmenu #menu-button.menu-opened:before {
    top: 23px;
    background: #ffffff;
    width: 15px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #cssmenu .submenu-button {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid rgba(120, 120, 120, 0.2);
    height: 46px;
    width: 46px;
    cursor: pointer;
	  
  }
  #cssmenu .submenu-button.submenu-opened {
    background: #262626;
	  
  }
  #cssmenu ul ul .submenu-button {
    height: 34px;
    width: 34px;
	  
  }
  #cssmenu .submenu-button:after {
    position: absolute;
    top: 22px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    background: #dddddd;
    content: '';
  }
  #cssmenu ul ul .submenu-button:after {
    top: 15px;
    right: 13px;
  }
  #cssmenu .submenu-button.submenu-opened:after {
    background: #ffffff;
  }
  #cssmenu .submenu-button:before {
    position: absolute;
    top: 19px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    background: #dddddd;
    content: '';
  }
  #cssmenu ul ul .submenu-button:before {
    top: 12px;
    right: 16px;
  }
  #cssmenu .submenu-button.submenu-opened:before {
    display: none;
  }
}


.NavButton a {
    text-decoration: none;
    font-family: Montserrat, sans-serif;
    display: inline-block;
    padding: 8px 100px;
	margin-right: 20px;
	margin-left: 20px;
}
.previous {
    background-color: #e29508;
    font-family: Montserrat, sans-serif;
    color: #505050;	
}
.next {
    background-color: #e29508;
    font-family: Montserrat, sans-serif;
    color: #505050;
}
.NavButton a:hover {
    background-color: #e29508;
    font-family: Montserrat, sans-serif;
    color: white;
}
.navigcenter {
	text-align: center;
	font-family: Montserrat, sans-serif;
    font-size: 16px;
	width: 100%;
	background-color: white;
	

	
}




























/* start dropdown Styles */

#nav, #nav ul {
    padding: 0px 0px 0px 0px;
    margin: 0;
    list-style: none;
}
#nav a {
	color: #000000;
	background: url(../assets/generic/topnav_divide.gif) no-repeat right;
	text-decoration: none;
	font-size: 14px;
	font-weight:bold;
	padding: 0px 20px 0px 20px;
	text-transform: none;
	text-align: center;
	display:block; /* for menus */
	/*
	border-left:1px solid #fff;
	border-right:1px solid #ddd;
	*/

}
#nav a:hover {
	color: #000000;
	background: url(../assets/generic/topnav_divide.gif) no-repeat right;
	text-decoration: none;
	font-size: 14px;
	font-weight:bold;
	padding: 0px 20px 0px 20px;
	text-transform: none;
	text-align: center;
	display:block; /* for menus */
	/*
	border-left:1px solid #fff;
	border-right:1px solid #ddd;
	*/

}
#nav li {
    float: left;
	padding-bottom:0px;
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif", "Helvetica Neue";

}

#nav li ul {
    position: absolute;
    width: 15em;
    left: -999em;
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif", "Helvetica Neue";
	
	
}
#nav li:hover ul, #nav li.sfhover ul {
    left: auto;
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif", "Helvetica Neue";

}

#nav li:hover, #nav li.hover {
    position: static;
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif", "Helvetica Neue";

}

#nav li ul a {
	color:#000000;
	background:#e8b300;
	width: 17em;
	padding: 2px 20px 2px 20px;
	text-align:left;
	font-size: 1em;
	font-weight: bold;
	text-transform:none;
	text-decoration: none;
	line-height:26px;
	left: -999em;
	border:0px;
	margin:0px;
}

#nav li ul a:hover {
	color:#000000;
	background:#e4c800;
	width: 17em;
	padding: 2px 20px 2px 20px;
	text-align:left;
	font-size: 1em;
	font-weight: bold;
	text-transform:none;
	text-decoration: none;
	line-height:26px;
	left: -999em;
	border:0px;
	margin:0px;
}

/* end dropdown Styles */


/* btm styles */

.footer_image {
	clear:both;
	padding-top:10px;
}

.page_footer {
	width: 950px;
	font-size: 0.9em;
	color: #666666;
	margin-left: auto;
	margin-right: auto;
	border-top: 1px solid #d5d5d5;
	border-bottom: 1px solid #d5d5d5;
}
.page_footer_padding {
	padding: 10px 10px 5px 10px;
}

.page_footer ul {
	margin: 0px 0px 6px -5px;
	padding: 0px 0px 0px 0px;
	list-style-type:none;
}
.page_footer li {
	font-weight: normal;
	padding: 0px 4px 0px 4px;
	float: left;
}

.page_footer  a:link,
.page_footer  a:hover,
.page_footer  a:active,
.page_footer  a:visited {
	font-size: 1em;
	color: #666666;
}


/* end btm styles */

/* content text styles*/

.content_breadcrumb {
	overflow:hidden;
}

.content_breadcrumb_padding {
	padding: 0px 0px 5px 12px;
	color: #333333;
}

.content_breadcrumb strong {
	color: #333333;
}

.content_breadcrumb  a:link,
.content_breadcrumb  a:hover,
.content_breadcrumb  a:active,
.content_breadcrumb  a:visited {
	font-size: 1em;
	color: #333333;
	font-weight: bold;
}

.content_breadcrumb_icons {
	float:right;
}

.content_breadcrumb_icons .icon {
	float:left;
	padding:0px 10px 0px 10px;
	border-left: 1px solid #cccccc;
	line-height:26px;
	height:26px;
}

.content_title {
	min-height: 50px;
	border-bottom: 1px solid #ffffff;
}
.content_title_padding {
	padding: 5px 0px 15px 0px;
}
.content_title h1 {
	color: #36342c;
	font-size: 2.2em;
	font-weight: normal;
	padding: 0;
	margin: 0px 0px 0px 0px;
}

.content_divide {
	height: 4px;
	background:url(../assets/generic/content_divide.gif) repeat-x top;
}

.content_buttons {
	clear: both;
	background:url(../assets/generic/btm_content_shad.gif) top left no-repeat;
}
.content_buttons_padding {
	padding: 5px 15px 5px 15px;
}

.content_buttons  a:link,
.content_buttons  a:hover,
.content_buttons  a:active,
.content_buttons  a:visited {
	font-size: 1em;
	font-weight:bold;
	color: #666666;
}

.content_text_container {

}

.content_text_padding {
	padding: 10px 0px 0px 0px;
}

.content_text {
	padding: 0px 0px 7px 0px;
	font-size: 1.1em;
	line-height:1.8em;
	color: #666666;
}
 
.content_text ul {
	padding: 0px;
	margin: 0px;
	margin-left: 22px;
	margin-bottom: 8px;
}

.content_text ul li {
	margin: 0px 0px 3px 0px;
	list-style-image: url(../assets/generic/arrow_yellow.gif);
}

.content_text ol {
	padding: 0px;
	margin: 0px;
	margin-left: 28px;
	margin-bottom: 8px;
}

.content_text ol li {
	margin: 0px 0px 3px 0px;
}


.content_text h1 {
	color: #666666;
	font-size: 1.8em;
	font-weight: normal;
	padding: 0px 0px 0px 0px;
	margin: 6px 0px 6px 0px;
}
.content_text h2 {
	color: #666666;
	font-size: 1.5em;
	font-weight: normal;
	padding: 0px 0px 0px 0px;
	margin: 6px 0px 6px 0px;
}
.content_text h3 {
	color: #666666;
	font-size: 1.3em;
	font-weight: normal;
	padding: 0px 0px 0px 0px;
	margin: 6px 0px 3px 0px;
}
.content_text h4 {
	color: #666666;
	font-size: 1.2em;
	font-weight: normal;
	padding: 0px 0px 0px 0px;
	margin: 6px 0px 3px 0px;
}
.content_text h5 {
	color: #666666;
	font-size: 1.2em;
	font-weight: normal;
	padding: 0px 0px 0px 0px;
	margin: 6px 0px 3px 0px;
}
.content_text h6 {
	color: #666666;
	font-weight: normal;
	font-size: 1.1em;
	padding: 0px 0px 0px 0px;
	margin: 6px 0px 3px 0px;
}

.content_text p {
	padding: 3px 0px 8px 0px;
}

.content_text strong {
	color: #333333;
}

.content_text img {
	padding:5px 10px 5px 10px;
}

.content_text a:link,
.content_text a:hover,
.content_text a:active,
.content_text a:visited {

	color: #333333;
	font-weight: normal;
	text-decoration:underline;
}

.content_text table {
}
.content_text th {
	color: #ffe067;
	font-weight: bold;
	text-align:left;
	padding: 5px 5px 5px 5px;
}

.content_text td {
	color: #666666;
	padding: 5px 5px 5px 5px;

}

.download_list {
	width: 100%;
}

.download_list img {
	margin:0;
	padding:0;
}
.download_list th {
	color: #000;
	background: #e8b300;
	font-weight: bold;
	text-align:left;
	padding: 5px 5px 5px 5px;
	border: 1px solid #ffffff;
}

.download_list td {
	color: #333;
	background:#ddd;
	padding: 5px 5px 5px 5px;

}

.download_list td.dark {
	color: #333;
	background:#ddd;
	padding: 5px 5px 5px 5px;
	border: 1px solid #ffffff;
}

.download_list td.light {
	color: #666666;
	background:#f2f2f2;
	padding: 5px 5px 5px 5px;
	border: 1px solid #ffffff;
}
.download_btn {
	text-decoration: none;
	font-weight: bold;
}

.download_list a:link,
.download_list a:hover,
.download_list a:active,
.download_list a:visited {
	color: #000000;
}

.download_btn:link,
.download_btn:hover,
.download_btn:active,
.download_btn:visited {
	text-decoration: none;
	font-weight: bold;
}
/* end content text styles */


.panel_subnav_content {
	background: url(../assets/generic/content_left_bg.png) repeat-y top;
}

.panel_subnav_padding {
	padding: 0px 10px 0px 10px;	
}

.subnav, .subnav ul {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    list-style: none;
}
.subnav li {
	padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.subnav a {
	color: #333333;
	background: none;
	text-decoration: none;
	font-size: 1em;
	font-weight:normal;
	padding: 14px 16px 14px 7px;
	display:block;
	border-bottom: 1px solid #dddddd;
}
.subnav a:hover, .subnav a.current {
	color: #333333;
	background: none;
	text-decoration: none;
	font-size: 1em;
	font-weight:normal;
	padding: 14px 16px 14px 7px;
	display:block;
	border-bottom: 1px solid #dddddd;
}

.subnav li ul a {
	color: #333333;
	background: none;
	text-decoration: none;
	font-size: 1em;
	font-weight:normal;
	padding: 14px 16px 14px 17px;
	display:block;
	border-bottom: 1px solid #dddddd;
}
.subnav li ul a:hover, .subnav li ul a.current {
	color: #333333;
	background: none;
	text-decoration: none;
	font-size: 1em;
	font-weight:normal;
	padding:14px 16px 14px 17px;
	display:block;
	border-bottom: 1px solid #dddddd;
}
.subnav li ul li ul a {
	color: #333333;
	background: none;
	text-decoration: none;
	font-size: 1em;
	font-weight:normal;
	padding: 14px 16px 14px 27px;
	display:block;
	border-bottom: 1px solid #dddddd;
}
.subnav li ul li ul a:hover, .subnav li ul li ul a.current {
	color: #333333;
	background: none;
	text-decoration: none;
	font-size: 1em;
	font-weight:normal;
	padding: 14px 16px 14px 27px;
	display:block;
	border-bottom: 1px solid #dddddd;
}



/* end subnav styles */

/* panelnav styles */

.panelnav, .panelnav ul {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    list-style: none;
}
.panelnav li {
	padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
	
}

.panelnav a {
	color: #333333;
	background: none;
	text-decoration: none;
	font-size: 1em;
	font-weight:normal;
	padding: 14px 20px 14px 7px;
	display:block;
	border-bottom: 1px solid #dddddd;
}
.panelnav a:hover, .panelnav a.current {
	color: #333333;
	background: none;
	text-decoration: none;
	font-size: 1em;
	font-weight:normal;
	padding: 14px 20px 14px 7px;
	display:block;
	border-bottom: 1px solid #dddddd;
}

/* end panelnav styles */

.main_footer_container {
	width: 985px;
	margin: 0px auto 0px auto;
}

.main_footer_container_outer {

}

.footer_top_links {
	line-height: 35px;
	color: #666;
	font-size:12px;
	padding-left:10px;
	padding-right:10px;
}

.footer_top_links img {
	margin-right: 5px;
}

.footer_top_links a:link,
.footer_top_links a:hover,
.footer_top_links a:active,
.footer_top_links a:visited {
	color: #666;
}

/* form styles */

.form_container {
	width:527px;
	clear:both; 
	padding-bottom:5px;
}

.form_top {
	width:527px;
	height:4px;
	background:url(../assets/generic/form_top.gif) top left no-repeat #f7f7f7;
}

.form_btm {
	width:527px;
	height:8px;
	background:url(../assets/generic/form_btm.gif) top left no-repeat #f7f7f7;
}


.form_middle {
	width:527px;
	
	background:#f7f7f7;
}

.form_middle_padding {
	padding:10px;
}

.form_submit {
	text-align:right;
	padding:10px 10px 10px 10px;
	background:#f7f7f7;
}

.form_submit_btn {
	background:#e8b300;
	color:#000000;
	font-weight:bold;
	width:84px;
	height:28px;
	border:0px;

}

.form_table {
	width:527px;
}

.form_table th {
	padding: 5px 15px 5px 5px;
	text-align: left;
	font-weight: normal;
	color: #666666;
	vertical-align:top;
	white-space:nowrap;
}
.form_table th.required {
	color: #666666;
	font-weight: bold;

}

.form_table th.topheader {
	color: #ffe067;
	font-weight: normal;
	font-size:1.6em;
}

.form_table td {
	vertical-align:top;
	padding: 5px 35px 5px 5px;
	
}
.form_table input {
	border: 1px solid #c2c2c2;
}
.form_table .file_input {
	border: 1px solid #c2c2c2;
}
.form_table select {
	border: 1px solid #c2c2c2;
}
.form_table textarea {
	border: 1px solid #c2c2c2;
}

input.std_btn {
	background: #dfc813;
	border: 1px solid #000000;
	padding: 3px 12px 3px 12px;
	text-transform:none;
	font-size:1em;
	color: #000000;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}


/* end form styles */





/* list styles */

.list_table {
	width: 100%;
	margin: 10px 0px 10px 0px;

}

.list_table th {
	color:#ffffff;
	padding: 5px 5px 5px 5px;

	background: #666666;
	text-align: left;
	border-right: 1px solid #ffffff;
	border-top: 1px solid #ffffff;
	text-align:center;
	
}

.list_table th a:link,
.list_table th a:hover,
.list_table th a:active,
.list_table th a:visited {
	color: #FFFFFF;
}

.list_table td {
	padding: 5px 5px 5px 5px;

	text-align:center;
}

.list_table td a:link,
.list_table td a:hover,
.list_table td a:active,
.list_table td a:visited {
	color: #333333;
	font-weight:bold;
	text-decoration: underline;
}

.list_table .row1 {
	background: #ffffff;
}
.list_table .row2 {
	background: #efefef;
}

/* end list styles */

.advert {
	margin-bottom: 10px;	
}

.blog_image {
	float: left;
	padding: 0px 10px 10px 0px;
}

.blog_date {
	font-size:1.2em;
	border-bottom: 1px dotted #a9a9a9;
	padding: 0px 0px 5px 0px ;
}

.blog_title {
	border-bottom: 1px dotted #a9a9a9;
	padding: 5px 0px 5px 0px ;
}
.blog_title h1 {
	font-size:1.8em;
}

.blog_footer {
	border-top: 1px dotted #a9a9a9;
	border-bottom: 1px dotted #a9a9a9;
	background: #e5e5e5;
	padding: 5px 10px 5px 10px;
}
.comment_title {
	border-bottom: 1px dotted #a9a9a9;
	padding: 10px 0px 10px 0px ;
}

.comment_title h3 {
	font-size:1.6em;
}

.comment_item {
	border-bottom: 1px dotted #a9a9a9;
	padding: 10px 0px 5px 0px ;
}

.comment_item a:link,
.comment_item a:hover,
.comment_item a:active,
.comment_item a:visited {
	color: #666666;
	font-weight:bold;
	text-decoration: underline;
}
.comment_item strong {
	color: #666666;
}


/* overview styles */

.overview_main_container {
	clear:both;	
	padding: 20px 0px 20px 0px;
}

.overview_container {
	float:left;
	width:345px;
	margin-bottom:10px;

}

.overview_title {
	margin-bottom:6px;
}

.overview_title h2 {
	color:#333333;
	font-size:18px;
	padding:0px;
	margin:0px;
}
.overview_title h2 a:link,
.overview_title h2 a:hover,
.overview_title h2 a:active,
.overview_title h2 a:visited {
	color: #333333;
}

.overview_text {
	float:left;
	line-height:1.4em;
	width:210px;
	min-height:133px;
	margin-left:2px;
	background:#dddddd;
	color:#333333;
}
.overview_text_padding {
	padding:5px 8px 5px 8px ;
} 

.overview_image {
	float:left;
	width:133px;
}

.overview_link {

	font-weight:bold;
}

.overview_link a:link,
.overview_link a:hover,
.overview_link a:active,
.overview_link a:visited {
	color: #666666;
	font-weight:bold;

}
/* grid styles */
.grid_main_container {
	clear:both;	
	padding: 20px 0px 20px 0px;
}	

.grid_container {
	width: 177px;
	margin-bottom:20px;
	float:left;
}

.grid_title {
	padding:5px 5px 5px 5px;
	margin-bottom:2px;
	background:#dddddd;
}

.grid_title h2 {
	color:#333333;
	font-size:1.2em;
	padding:0px;
	margin:0px;
}

.grid_title h2 a:link,
.grid_title h2 a:hover,
.grid_title h2 a:active,
.grid_title h2 a:visited {
	color: #333333;
}

.grid_text {
	float:left;
	width: 530px;
	line-height:1.4em;
	min-height:105px;
	margin-left:2px;
	background:#dddddd;
	color:#333333;
}
.grid_text_padding {
	padding:5px 8px 5px 8px ;
} 

.grid_image {
	float:left;
	width:177px;
}

.grid_link {

	font-weight:bold;
}

.grid_link a:link,
.grid_link a:hover,
.grid_link a:active,
.grid_link a:visited {
	color: #666666;
	font-weight:bold;

}
/* end grid styles */

/* component styles */

.component_main_container {
	clear:both;	
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

.component_container {
	clear:both;	
	margin:5px 0px 20px 0px;
}

.component_title {
	margin-bottom:6px;
}

.component_title h2 {
	color:#333333;
	font-size:18px;
	padding:0px;
	margin:0px;
}

.component_text {
	float:left;
	width: 530px;
	line-height:1.4em;
	min-height:132px;
	margin-left:2px;
	background:#dddddd;
	color:#333;
}
.component_text_padding {
	padding:5px 8px 5px 8px ;
} 

.component_image {
	float:left;
	width:177px;
}

.component_link {

	font-weight:bold;
}

.component_link a:link,
.component_link a:hover,
.component_link a:active,
.component_link a:visited {
	color: #666666;
	font-weight:bold;

}

.component_table table {
	width: 100%;
}

.component_table th {
	color: #666666;
	background: #c2c2c2;
	font-weight: normal;
	text-align:left;
	padding: 5px 10px 5px 10px;
	border: 1px solid #ffffff;
}

.component_table td {
	color: #000000;
	background:#dddddd;
	font-weight: bold;
	padding: 5px 10px 5px 10px;
	border: 1px solid #ffffff;

}

.component_text_tools {
	float:left;
	/* width: 530px; */
	line-height:1.4em;
	padding: 0px 0px 0px 0px;
	color:#666666;
}

/* end component styles */

.gallery_container {
	width:165px;
	float:left;
	padding-top:5px;
	padding-bottom:5px;
	margin-right:14px;
}

.gallery_large_container {
	padding-top:5px;
	padding-bottom:5px;
	margin-right:14px;
}

.gallery_large_container img {
	padding:4px;
	border:1px solid #e7e7e7;
}

.gallery_title {
	width:165px;
	min-height:20px;
	background:url(../assets/generic/gallery_shad.gif) bottom left no-repeat;
	padding-left:2px;
	padding-bottom:6px;
}

.gallery_container img {
	padding:4px;
	border:1px solid #e7e7e7;
}

.cat_container {
	clear:both;
}

.cat_container h2 {
	font-size:1.6em;
	padding-bottom:5px;
	padding-top:10px;
	font-weight:bold;
}

.faq_container {
	clear:both;	
	font-size:1.2em;
	padding-bottom:10px;
}

.faq_container ul {
	padding: 0px;
	margin: 0px;
	margin-left: 22px;
	margin-bottom: 8px;
}

.faq_container ul li {
	margin: 0px 0px 3px 0px;
	list-style-image: url(../assets/generic/arrow_yellow.gif);
}

.map_left {
	float:left;	
	width:215px;
}

.map_right {
	float:left;	
	width:529px;
}

.map_title {
	width:529px;
	height:27px;
	background:url(../assets/generic/map_title.gif) top left no-repeat;
	clear:both;
	
}

.map_title h2 {
	clear:both;
	color:#ffffff;
	font-size:1.1em;
	font-weight:normal;
	margin:0px;
	padding-left:10px;
	padding-top:5px;
}

.map_links {
	clear:both;
	min-height:120px;
	width:529px;
	background:#e5e5e5;
}

/* end component styles */