@charset "utf-8";
* {
	margin: 0px;
	padding: 0px;
}
body  {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #C2B589;
	background-attachment: fixed;
	background-image: url(images/body-bg.jpg);
	background-position: center;
}

#container  {
	width: 1000px; /* the auto margins (in conjunction with a width) center the page */
	border: 5px solid #231f20;
	margin-right: auto;
	margin-left: auto;
	background-color: #cddad8;
} 
#header  {
	background-color: #e7e2ca;
	height: 362px;
	width: 1000px;
} 
header  h1  {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	background-color: #231f20;
	color: #FFFFFF;
	padding-right: 25px;
	padding-left: 25px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-image: url(images/sidebar-bg.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
	font-size: 12px;
}

#mainContent  {
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px;
} 
#footer  {
	background-color: #231f20;
	font-family: verdana;
	font-size: 10px;
	color: #FFFFFF;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
#footer  p  {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

#largeimage {
	width: 1000px;
	display: none;
}
h1 {
	font-size: 24px;
	color: #231f20;
	padding-top: 30px;
	padding-bottom: 20px;
}
#mainContent p {
	font-size: 12px;
	line-height: 18px;
	text-align: center;
}

h2 {
	font-size: 18px;
	color: #64281E;
	padding-top: 30px;
	padding-bottom: 20px;
	text-align: center;
}
.imageborders {
	padding: 2px;
	border: 1px solid #4E5220;
	margin-right: 10px;
	margin-left: 10px;
}
.bold {
	font-weight: bold;
	color: #4E5220;
}
#benefits {
	list-style-position: inside;
	list-style-image: url(images/checkmark.jpg);
	list-style-type: disc;
	font-size: 12px;
	line-height: 20px;
	background-image: url(images/benefits.jpg);
	background-repeat: no-repeat;
	height: 224px;
	width: 620px;
	padding-top: 50px;
	padding-left: 40px;
	padding-right: 40px;
}
#mainContent li {
	font-size: 12px;
	margin-left: 30px;
	color: #64281E;
}

#cssmenu {
	position: relative;
	height: 44px;
	background: #231f20;
	width: 750px;
	padding-left: 250px;
}
#cssmenu ul {
	list-style: none;
	line-height: 1;
	width: auto;
	padding: 0;
	margin: 0;
}
#cssmenu > ul {
	position: relative;
	display: block;
	height: 32px;
	width: 100%;
	z-index: 500;
	background-color: #231f20;
}
#cssmenu > ul > li {
  display: block;
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
}
#cssmenu > ul > #menu-button {
  display: none;
}
#cssmenu ul li a {
  display: block;
  font-family: Helvetica, sans-serif;
  text-decoration: none;
}
#cssmenu > ul > li > a {
	font-size: 14px;
	font-weight: bold;
	padding: 15px 20px;
	color: #FFFFFF;
	text-transform: uppercase;
	-webkit-transition: color 0.25s ease-out;
	-moz-transition: color 0.25s ease-out;
	-ms-transition: color 0.25s ease-out;
	-o-transition: color 0.25s ease-out;
	transition: color 0.25s ease-out;
}
#cssmenu > ul > li.has-sub > a {
  padding-right: 32px;
}
#cssmenu > ul > li:hover > a {
  color: #ffffff;
}
#cssmenu li.has-sub::after {
  display: block;
  content: '';
  position: absolute;
  width: 0;
  height: 0;
}
#cssmenu > ul > li.has-sub::after {
	right: 10px;
	top: 20px;
	border: 5px solid transparent;
	border-top-color: #FFFFFF;
}
#cssmenu > ul > li:hover::after {
  border-top-color: #ffffff;
}
#indicatorContainer {
  position: absolute;
  height: 12px;
  width: 100%;
  bottom: 0px;
  overflow: hidden;
  z-index: -1;
}
#pIndicator {
  position: absolute;
  height: 0;
  width: 100%;
  border: 12px solid transparent;
  border-top-color: #2b2f3a;
  z-index: -2;
  -webkit-transition: left .25s ease;
  -moz-transition: left .25s ease;
  -ms-transition: left .25s ease;
  -o-transition: left .25s ease;
  transition: left .25s ease;
}
#cIndicator {
  position: absolute;
  height: 0;
  width: 100%;
  border: 12px solid transparent;
  border-top-color: #2b2f3a;
  top: -12px;
  right: 100%;
  z-index: -2;
}
#cssmenu ul ul {
  position: absolute;
  left: -9999px;
  top: 70px;
  opacity: 0;
  -webkit-transition: opacity .3s ease, top .25s ease;
  -moz-transition: opacity .3s ease, top .25s ease;
  -ms-transition: opacity .3s ease, top .25s ease;
  -o-transition: opacity .3s ease, top .25s ease;
  transition: opacity .3s ease, top .25s ease;
  z-index: 1000;
}
#cssmenu ul ul ul {
  top: 37px;
  padding-left: 5px;
}
#cssmenu ul ul li {
  position: relative;
}
#cssmenu > ul > li:hover > ul {
  left: auto;
  top: 44px;
  opacity: 1;
}
#cssmenu ul ul li:hover > ul {
  left: 170px;
  top: 0;
  opacity: 1;
}
#cssmenu ul ul li a {
	width: 130px;
	border-bottom: 1px solid #eee;
	padding: 10px 20px;
	font-size: 12px;
	color: #033371;
	background: #fff;
	-webkit-transition: all .35s ease;
	-moz-transition: all .35s ease;
	-ms-transition: all .35s ease;
	-o-transition: all .35s ease;
	transition: all .35s ease;
}
#cssmenu ul ul li:hover > a {
	background: #f6f6f6;
	color: #8c9195;
}
#cssmenu ul ul li:last-child > a,
#cssmenu ul ul li.last > a {
  border-bottom: 0;
}
.submenuArrow {
  border: 6px solid transparent;
  width: 0;
  height: 0;
  border-bottom-color: #fff;
  position: absolute;
  top: -12px;
}
#cssmenu ul ul li.has-sub::after {
  border: 4px solid transparent;
  border-left-color: #9ea2a5;
  right: 10px;
  top: 12px;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  -webkit-transition: -webkit-transform 0.2s ease, right 0.2s ease;
}
#cssmenu ul ul li.has-sub:hover::after {
  border-left-color: #fff;
  right: -5px;
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
