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

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	background-image:url(../images/bg.jpg);
	background-position: top;
	background-repeat: no-repeat;/*	background-attachment: fixed;*/
}
#container {
	width: 800px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #f2ebe5;
	/*background: #FFFFFF;*/
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #071931;
	/*text-align: left;*/ /* this overrides the text-align: center on the body element. */
}
#header {
	background: #DDDDDD;/* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#MENU {
	width:800px;
	height:53px;
	background-color:#000
}
#leftcol {
	margin:  20px 0 0 5px;
	float: left;
	width: 320px; /* since this element is floated, a width must be given */
	/*background-color:#703410; *//* the background color will be displayed for the length of the content in the column, but no further */
	/*background-color:#00233E;*/
	padding: 0px 0; /* top and bottom padding create visual space within this div */
}
#leftcol p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	margin-top:0px;
	text-align: center;
}
#lilbox {
	/*background-color:#703410;*/ /* the background color will be displayed for the length of the content in the column, but no further */
	
	/*background-color:#a99160;*/
	background-color:#CDBFA3;
	text-align: center;/*	border-style:solid;
	border-width:1px;
	border-color:#703410;*/	
}




#mainContent {
	margin: 20px 32px 100px 360px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	/*background-color: #f2ebe5*/
	width:400px
}

#mainContentFull {
	/*margin: 20px 32px 100px 60px;*/ /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	/*background-color: #f2ebe5*/
	
	 width: 90%;
	margin: auto;
	text-align: center;
}

#mainContentL{
	/*margin: 20px 32px 100px 60px;*/ /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	/*background-color: #f2ebe5*/
	
	 width: 90%;
	margin: auto;
	text-align: left;
}

#footer {
	padding: 10px 15px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	
}
#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 */
	text-align: center;
}

.alignLeft { float:left; margin-right: 1em; }
.alignRight { float:right; margin-left: 1em; }

.smallw {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	line-height:20px;
	text-align:left
}
.smallbr {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #630;
	line-height:20px;
	/*padding-left:5px;*/
	text-align: left;
}

.smallbrCR {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #630;
	text-align: center;
}
.smallb {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	line-height:20px;
	text-align:left
}
.smallblu {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #003;
	line-height:20px;
	text-align:left
}
.sottotitle {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000;
	padding-top:8px;
	padding-bottom:8px;
	/*padding-left:5px;*/
	/*	line-height:40px;
	background-image:url(../images/title.gif);*/
	text-align: left;/*	text-indent:10px;
	padding-top: 5px;*/
}
.title {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #be5013;
	padding-left:0px;
	font-weight:bold;
	/*	line-height:40px;
	background-image:url(../images/title.gif);*/
	text-align: left;/*	text-indent:10px;
	padding-top: 5px;*/
}

.titleNOBOLD {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #be5013;
	padding-left:0px;
	font-weight:bold;
	/*	line-height:40px;
	background-image:url(../images/title.gif);*/
	text-align: left;/*	text-indent:10px;
	padding-top: 5px;*/
}


a:link {
	color:#000;
	text-decoration:underline;
}
a:visited {
	color:#000;
	text-decoration:underline;
}
a:active {
	color:#000;
	text-decoration:underline;
}
a:hover {
	color:#600;
	text-decoration:underline;
}

