/* CSS Document */

/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

<!--

body {background:#CC99FF;
	background-image:url(images/verticalstrip.gif);
	background-repeat:repeat-x;	
	margin:0 auto; /* Always set margins to 0. Some browsers automatically apply them. */
	padding:20px 0 20px 0; /* Always apply padding if you apply margins */
}

/* This sets a default font for all of our tag selectors. We set the text align back to left so it won't center (based on the body tag to compensate for IE.) */

p, h1, h2, h3, h4, h5, a, ul, li, lo, td {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}

/* ----------------- REDEFINE TAGS ----------------- */
p {
	font-size: 12px;
	color:#000000;
}

h1 {
	font-size:18px;
	color:#660066;
	margin:15px 0 10px 0;
}

h2 {
	font-size:16px;
	color:#660066;
	margin:15px 0 10px 0;
}

address {
	font-size: 11px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#660099;
	padding:20px 0 10px 5px;
	font-style:normal;
	text-align:center;
}

/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
div#container {
	width:770px;
	height:auto;
	margin:0 auto;
}

/* Created to hold the background stip that is displayed when content area is stretched */
div#contentcontainer {
	float:left;
	width:770px;
	height:auto;
	background-image:url(images/contentstrip.gif);	
	background-repeat:repeat-y;
}

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	width:770px;
	height:199px;
	background-image:url(images/header_bg.gif);
	background-repeat:no-repeat;
}

div#leftcolumn {
	float:left;
	width:238px;
	height:auto;
	background-image:url(images/leftcolumn_bg.gif);
	background-repeat:no-repeat;
}

div#contentarea {
	float:right;
	width:452px;
	height:auto;
	background-image:url(images/content_bg.gif);
	background-repeat:no-repeat;
	padding:10px 50px 5px 30px;
}

div#footer {
	clear:both;
	width:770px;
	height:67px;
	background-image:url(images/footer_bg.gif);
	background-repeat:no-repeat;
}

div#addresscontainer {
	padding:200px 0 0 0;
}

/* ----------------- Custom Styles ----------------- */

img.right {
	border:#660033 1px solid;
	margin:5px 5px 5px 5px;
	padding:2px;
	clear:both;
	float:right;
}

img.gallery {
	border:#660066 1px solid;
	padding:2px;
	margin:10px;
}

/* ----------------- Copyright and Footer Styles ----------------- */
div#footer a:link { 
	color:#660099;
}

div#footer a:hover {
	color:#FF9933;
	text-decoration:none;
}

div#copyright {
	text-align:center;
	font-size: 10px;
	padding-top:25px;
	color:#666666;
}

/* ----------------- IMAGE ELEMENTS ----------------- */

clear {
	clear: both;
}

.center {
	text-align:center;
}