@charset "UTF-8";
/* CSS Document */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #BBA983;
	border-style: none; /* Sets the border style properties for an element using shorthand notation */
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0;
	background-repeat: repeat;
	background-image: url(images/bg.jpg);
	font-size: 13px;
}
/* Commonly used to style page titles. */
h1 {
	color: #333333;
	font-size: 20px;
	font-weight: bold;
	line-height: 20px;
	font-family: Tahoma, Geneva, Kalimati, sans-serif;
	margin-bottom: 20px;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #993300;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #993300;
	font-weight: normal;
	text-decoration: none;
}
p {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #000;
	text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 800px;
	padding: 0px;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#outerWrapper #contentWrapper #leftColumn1 {
	float: left;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 150px;
	background-repeat: no-repeat;
	background-image: url(images/navi_top.png);
	background-position: left top;
	margin-top: 9px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	line-height: 15px;
}
#header {
	margin: 0px;
	padding: 0px;
	float: right;
	width: 630px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #e7d8cb;
	border-right-width: 10px;
	border-left-width: 10px;
	border-left-color: #e7d8cb;
	border-top-width: 10px;
	border-top-style: solid;
	border-top-color: #e7d8cb;
	height: 230px;
}

#logo a {
	height: 38px;
	margin-top: 16px;
	text-decoration: none;
	background-image: url(images/logo.gif);
	background-repeat: no-repeat;
	width: 93px;
	float: left;
	margin-left: 27px;
	background-color: #FFFFFF;
}

#logo a span {
	visibility: hidden;
}

#content_wrap {
	float: right;
	width: 630px;
	border: 10px solid #e7d8cb;
	margin: 0px;
	padding: 0px;
	background-color: #FFFFFF;
	background-image: url(images/content_bg.gif);
	background-repeat: repeat-y;
	background-position: left;
}
#outerWrapper #contentWrapper #rightColumn1 {
	float: right;
	padding: 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 270px;
	margin: 1px;
	font-size: 13px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	padding: 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	float: left;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
	width: 290px;
	line-height: 18px;
	font-size: 13px;
	background-repeat: repeat-y;
}
#content li {
	line-height: 22px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}

.slidedoormenu{
	list-style-type: none;
	width: 150px; /* thick left border of menu */
	float: left;
	border-left-width: 0px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
	margin-top: 20px;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0px;
}
#footer {
	background-image: url(images/shadow.png);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	float: right;
	height: 30px;
	width: 650px;
	background-position: center top;
}
#footer p {
	background-image: url(images/shadow.png);
	background-repeat: no-repeat;
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 10px;
	color: #DBCFC5;
	text-transform: uppercase;
	font-size: 10px;
}

.slidedoormenu li{
	border-bottom-width: 1px;
	border-bottom-style: none;
	border-bottom-color: #DBCFC5;
}

.slidedoormenu li a{
	display: block;
	width: auto; /* Vertical (top/bottom) padding for each menu link */
	text-indent: 8px;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0px;
	margin: 0px;
	background-image: url(media/vstrip.gif);
	background-repeat: repeat-y;
	background-position: left top;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F2F2F2;
	border-left-width: 8px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
	font-weight: bold;
	font-size: 13px;
}


/* .slidedoormenu li a:active{
	color: #FFFFFF;
	background-color: #DBCFC5;
} */



.slidedoormenu li a:hover{
	background-position: -387px 0; /* Shift background image horizontally 387px, or the start of the 2nd background image */
	color: #333333;
	background-color: #F2F2F2;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F2F2F2;
	border-left-width: 8px;
	border-left-style: solid;
	border-left-color: #C3B6AD;
	font-style: italic;
}

.slidedoormenu li.lastitem, .slidedoormenu li.lastitem a{
border-bottom-width: 0; /* For last menu item within menu, remove bottom border */
}

.slidedoormenu li.lastitem a{
padding: 8px 0; /* increase vertical border of last menu link by 2px (default is padding: 7px 0) to account for removed border width */
}

#menu {
	float: left;
	width: 150px;
	margin-top: 9px;
	margin-bottom: 0px;
	background-color: #FFFFFF;
	padding-bottom: 15px;
	font-size: 12px;
}


[if IE]>
<style type="text/css">
.slidedoormenu li a{ /* Menu link width value for IE */
width: 100%;
}

<![endif]
.sub {
	margin-left: 25px;
	font-style: normal;
}
.sub  {
	display: block;
	font-variant: normal;
	font-weight: normal;
	text-transform: none;
	margin: 0px;
	padding: 0px;
}
li.sub     a  {
	padding-left: 15px;
	font-size: 12px;
}
li.subactive a {
	margin-left: 0px;
	font-style: italic;
	color: #333333;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	padding-left: 25px;
	font-size: 12px;
}
li.active a{
	background-color: #e7d8cb;
	color: #333333;
	font-weight: bold;
	font-style: italic;
	border-left-width: 8px;
	border-left-style: solid;
	border-left-color: #e7d8cb;
	font-size: 12px;
}
#navibottom {
	background-image: url(images/navi_bottom.png);
	background-repeat: no-repeat;
	float: left;
	height: 18px;
	width: 150px;
}
