@charset "utf-8";
body  {
	background: #000 url(images/bkgrd-body.png) repeat-x;
	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 */
	color: #FFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}
#container  {
	width: 1000px;
	margin: 0 auto;
	text-align: left;
	background: #FFF url(images/bkgrd-container.png) repeat-x;
} 
#header {
	margin: 0px; /* 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; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#header h1  {
	margin: 0px; /* 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; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#nav {
	background: #900;
	height: 25px;
	width: 1000px;
	font-weight: bold;
	padding-top: 10px;
	text-align: center;
	font-size: 11px;
}


#nav ul {
	display: inline;
	list-style: none;
}

#nav ul li {
	display: inline;
	list-style: none;
	padding-right: 30px;
}
#nav a:link, #nav a:visited {
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
}
#nav a:hover, #nav a:active {
	font-weight: bold;
	color: #FFF2B5;
	text-decoration: none;
}
#nav a.current {
	font-weight: bold;
	color: #FFEEB6;
	text-decoration: none;
}

#sidebar1  {
	float: right; /* since this element is floated, a width must be given */
	width: 230px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 0px;
	color: #000;
}
#sidebar1 h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: 16px;
}

#mainContent  {
	margin: 0 250px 0 0; /* the right margin on this div element creates the column down the right 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: 10px 20px 15px;
	color: #000;
	border-right: medium double #E9E9E9;
	background: #FFF url(images/martini-watermark.jpg) no-repeat scroll center 50px;
	min-height: 550px;
} 
#mainContent h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: 18px;
	margin: 0px;
	padding: 0px;
	color: #900;
}
#mainContent h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: 18px;
	color: #900;
}
#mainContent h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: 14px;
	color: #000;
}



#footer  {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#fff;
	color: #999;
	text-align: center;
	border-top: 2px solid #CCC;
} 
#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 */
}
#footer a:link, #footer a:visited {
	color: #999;
	text-decoration: none;
}
#footer a:hover, #footer a:active {
	color: #333;
	text-decoration: none;
}


.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;
}
.redLine {
	border-top: 3px solid #900;
}
.lrg {
	font-size: 14px;
	color: #000;
	font-weight: bold;
}

.TblHgt15 {
	height: 20px;
}
.signupform {
	background: #FFF2B5;
	border: 3px solid #900;
	font-size: 11px;
}
.signUpBTN {
	background: url(images/btn-newsletter.png);
	height: 50px;
	width: 150px;
}
.formTitle {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: 14px;
	color: #000;
}
.PayPalBox {
	width: 150px;
	border: 4px dashed #900;
	float: right;
	padding: 10px;
	text-align: center;
}
a img {
	border-style: none;
}
