@charset "utf-8";

img {display:block;}

body  {
	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: #000000;
	background-color: #303666;
	background-image: url(images/background.gif);
	background-repeat: repeat-y;
	font-family: "Courier New", Courier, monospace;
	font-size: 10pt;
	line-height: 22px;
	background-position: center;
}
.twoColFixLtHdr #container {
	width: 900px;
	margin: 0 auto;
	text-align: left;
	border-bottom-width: 6px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;

} 
.wallpaper {
	background-color: #F4E3F6;
	border: 1px solid #C178C9;
}

.twoColFixLtHdr #header {
	padding: 0 10px 0 20px;  /* 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. */
	background-image: url(images/header-background.jpg);
	background-repeat: repeat-x;
} 
.twoColFixLtHdr #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 */
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #C478D2;
	color: #000000;
	font-style: italic;
}


h1 {
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #C478D2;
	color: #801F66;
	font-family: "Courier New", Courier, monospace;
}
h3 {
	font-size: small;
	font-style: italic;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #F4B6FF;
	font-weight: normal;
	padding-bottom: 10px;
}
h2 {
	font-size: medium;
	color: #801F66;
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #C478D2;
	margin-top: 30px;
}


.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 210px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 5px 0px 20px;
	background-image: url(images/column2.jpg);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: 0px 0px;
}
.twoColFixLtHdr #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 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px;
	border-top: 1px dashed #303666;
	font-style: italic;
	font-size: small;
	text-align: center;
	background-color: #fdefff;
	color: #801F66;
} 
.twoColFixLtHdr #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;
}

.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;
}

/*----------------Menu-------------------*/

#menu {
	width: 10em;
	color: #333;
	}

#menu ul {
		list-style: none;
		margin: 0;
		padding: 0;
		border: none;
		}
		
#menu li {
	margin: 0;
		}

#menu li a {
	display: block;
	padding: 5px 5px 5px 0.5em;
	color: #801F66;
	text-decoration: none;
	width: 100%;

	}
	
#menu li a:hover {
	color: #000000;
	border-right: 2px solid #FFCCFF;
	border-bottom: 1px solid #FFCCFF;
	background-color: #FFFFFF;
		}

/*----------------Sidebar-------------------*/

.sidebar {
	font-size: 12px;
	line-height: 18px;
	margin-left: 10px;
	margin-right: 20px;
	margin-top: 20px;
}

/*----------------Links-------------------*/

a:link {
	color: #801F66;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #801F66;
	text-decoration: none;
}
a:visited {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #801F66;
	text-decoration: none;
	color: #CC66CC;
}
a:hover {
	text-decoration: none;
	color: #000000;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #000000;
}
a:active {
	text-decoration: none;
	color: #CCCCCC;
}

/*----------------Coming Soon-------------------*/

#apDiv1 {
	position:absolute;
	left:0px;
	top:0px;
	width:182px;
	height:182px;
	z-index:1;
}

