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

body  {
	font: 100% Georgia, "Times New Roman", Times, serif;
	background: #55274f;
	margin: 0px 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	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/bgslice.jpg);
	background-repeat:repeat-x;
	color:#333;
}

#container { 
	width: 811px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #55274f;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0px;
	position:relative;
}

/*Left styles go here */
#left	{
	float: left; 
	clear:right;
	width: 121px; /* since this element is floated, a width must be given */
	background-image:url(../images/leftbg.jpg);
	background-repeat: repeat-y;
	top:0px;
	position:absolute;
	left:0px;
	margin:0px;
	padding:0px 0px 25px;
}
/*Center styles go here */
#center	{
	width: 474px;
	background-image:url(../images/contentarea_bg.jpg);
	background-repeat:repeat-y;
	margin:0px;
	padding: 0px 0px 25px;
	left:121px;
	position:absolute;
	height:auto;
}

#center ul.nav	{
	margin: 0px;
	padding: 0px;
	cursor: default;
	list-style-type: none;
	display: inline;
	left:0px;
	top:0px;
	height:28px;
	width:474px;
	border:0px;
	line-height:28px;
}

#center ul.nav>li{
	display: inline;
	position:static;
	padding: 0px;
	margin:0px;
}

#center span	{
	margin: 0px;
	padding: 0px;
	top:0px;
	display:inline;
	white-space:nowrap;
	border:0px;
}

#center p	{
	width: 425px;
	font-size:14px;
	text-align:justify;
	margin-left: 10px;
	padding: 0px 0px 0px 15px;
}

#center h1 {
	width: 425px;
	font-size:18px;
	font-weight:700;
	color:#55274f;
	margin: -25px auto auto 10px;
}

#center a:link, a:visited	{
	font-size:14px;
	color:#55274f;
	text-decoration:underline;
	font-weight:500;
}

#center a:hover	{
	text-decoration:none;
}

#center .quote	{
	font:Georgia, "Times New Roman", Times, serif;
	font-size:16px;
	font-style:italic;
}

#center .author	{
	font:Georgia, Verdana, "Times New Roman", Times, serif;
	font-size:12px;
	margin: -3px 0px -3px 0px;
}
/*Right styles go here */
#right	{
	float: right; 
	width: 216px; /* since this element is floated, a width must be given */
	/*background-image: url(../images/newcomp_03.jpg);*/
	background-repeat:no-repeat;
	padding: 0px 0px; /* top and bottom padding create visual space within this div */
	height:auto;
	top: 0px;
	position:absolute;
	left:595px;
}

#right a:link, a:visited	{
	font-size:14px;
	color:white;
	text-decoration:underline;
	font-weight:500;
}

#right a:hover	{
	text-decoration:none;
}

#right p	{
	width:200px;
	margin-left:8px;
	margin-right:8px;
	color:white;
	text-align:justify;
	font:Georgia, "Times New Roman", Times, serif;
	font-size:14px;
}

#right h3 {
	margin-left: 8px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 8px;
	margin-top: 0px;
	color:white;
	text-align:justify;
	font:Georgia, "Times New Roman", Times, serif;
	font-size:16px;
}

/* EXTRA BEGIN */
.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;
}

#footer {
	font-size: 10px;
	color: #FFFFFF;
	padding-left:400px;
	position:relative;
}
/* EXTRA END */