@charset "utf-8";
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #000;
	color: #FFFFFF;
	font-family: "Times New Roman", Times, serif;
	font-size: 16px;
	line-height: normal;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
	color: #FFF;
	font-size: 24px;
	font-weight: bold;
	line-height: normal;
}
/* Commonly used to style section titles. */
h2 {
	color: #000;
	font-size: 20px;
	font-weight: bold;
	line-height: normal;
}
img {
	border:0;
	padding: 0px;
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #036;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #036;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #000;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #036;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #036;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #FFFFFF; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 990px;
	background-image: url(content_bg.jpg);
	background-repeat: repeat-y;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding: 0px;
}
#outerWrapper #header {
	background-color: #000; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	height: 100px;
	line-height: 15px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	margin: 0px;
	width: 990px;
}
#outerWrapper #header2 {
	font-size: 18px;
	font-weight: bold;
	height: 163px;
	line-height: normal;
	padding: 0px;
	background-image: url(header.jpg);
	width: 990px;
	margin: 0px;
}
#outerWrapper #contentWrapper #leftColumn1 {
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 160px;
	/*
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 13px;
	*/
	/* padding: 20px 20px 25px 20px; */
	padding: 0px  0px 0px  13px; 
	_padding: 0 0 0 10px; /* this did the trick. Only IE6 should process this line */
	height: 600px;
}
#outerWrapper #contentWrapper #leftColumn2 {
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 72px;
	margin: 0px;
	/* 
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 4px;
	*/
	padding: 0 0 0 2px;
	_padding: 0 0 0 1px; /* this did the trick. Only IE6 should process this line */
	
}
#outerWrapper #contentWrapper #rightColumn1 {
	float: right; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 160px;
	height: 600px;
	/*
	padding-top: 0px;
	padding-right: 13px;
	padding-bottom: 0px;
	padding-left: 0px;
	*/
	padding: 0 13px 0 0;
	_padding: 0 11px 0 0; /* this did the trick. Only IE6 should process this line */
}
#outerWrapper #contentWrapper #rightColumn2 {
	float: right; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 72px;
	margin: 0px;
	/*
	padding-top: 0px;
	padding-right: 4px;
	padding-bottom: 0px;
	padding-left: 0px;
	*/
	padding: 0 2px 0 0;
	_padding: 0 1px 0 0; /* this did the trick. Only IE6 should process this line */
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin-top: 0;
	margin-right: 249px;
	margin-bottom: 0;
	margin-left: 249px;
	
	/* background-color: #000; */
	/* change to parchment */
	/* background-color:#F1F1D4;
	 background-color: #F5F0D6;
	 */
	 background-color: #F5F0D6; 
	 color:#3E1F00;
}

/* #content { background-color: #F5F0D6; } */

#MainPageMessage, #horoscope_teaser, .sitedoccontents, #expert-contents, #site-doc { 
background-color: #F5F0D6; color:#3E1F00; }


/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content_3cols {
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin-top: 0;
	margin-right: 175px; /*    245px; */
	margin-bottom: 0;
	margin-left: 180px;
}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
	clear: both;
	display: block;
}
#outerWrapper #bottom-links-wrapper {
	height: 185px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(footer_bg.jpg);
	background-repeat: no-repeat;
}

#outerWrapper #bottom-ad-wrapper {
	height: 175px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(content_bg.jpg);
	background-repeat: repeat-y;
	text-align:center;
}
.footer_text {font-weight: bold;}
#outerWrapper #footer {
	background-color: #CC6600;
	/* border-top: solid 1px #bd9c76; *//* Sets the top border properties for an element using shorthand notation */
	height: 120px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #footer #footer-links {
	text-align:center;
}
#header2 h3 {
	padding: 6px;
}

#header2 #links {
	padding-top: 95px;
}

#links {
	float:left;
	width:100%;
	/* background:#BBD9EE; */
    font-size:16px;
	line-height:16px;
	font-weight: normal;
}



/* #links li:hover ul { display: block; } */

#linksx ul {
	margin:0;
	list-style:none;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 30px;
	list-style: none;
	/* width: 150px; */
	border-bottom: 1px solid #ccc;
}

#linksx ul li {
	position: relative;
	}

#linksx ul li {
	/* display:inline; */
	margin:0;
	padding:0;
}
#linksx li ul {
	position: absolute;
	left: 149px;
	top: 0;
	display: none;
	}
#linksx ul li a {
	display: block;
	text-decoration: none;
	color: #F9ED73;
	background: #000;
	padding: 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
	}
	
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; }
* html ul li a { height: 1%; }
/* End */

#links a {
	float:left;
	/* background:url("tableft.gif") no-repeat left top; */
      margin:0;
	text-decoration:none;
	color:#F9ED73;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 13px;
}
#links a span {
	float:left;
	display:block;
	/* background:url("tabright.gif") no-repeat right top; */
      padding:5px 15px 4px 6px;
	color:#FF9834;
}
/* Commented Backslash Hack hides rule from IE5-Mac \*/
    #links a span {
	float:none;
}
/* End IE5-Mac hack */
    #links a:hover span {
	color:#FF9834;
}
#links a:hover {
	background-position:0% -42px;
}
#links a:hover span {
	background-position:100% -42px;
}

#bottom-links-wrapper #bottom-links {
	text-align: center;
}

#bottom-links-wrapper #links {
	padding-top: 125px;
}

#bottom-links {
	float:left;
	width:100%;
	/* background:#BBD9EE; */
    font-size:16px;
	line-height:normal;
	font-weight: normal;
	padding-top: 90px;
}
#bottom-links ul {
	margin:0;
	padding:10px 10px 0 50px;
	list-style:none;
}
#bottom-links li {
	display:inline;
	margin:0;
	padding:0;
}
#bottom-links a {
	float:left;
	/* background:url("tableft.gif") no-repeat left top; */
      margin:0;
	font-size:14px;
	line-height:normal;
	font-weight: bold;
	text-decoration:none;
	color:#F9ED73;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 17px;
}
#bottom-links a span {
	float:left;
	display:block;
	/* background:url("tabright.gif") no-repeat right top; */
      padding:5px 15px 4px 6px;
	color:#FF9834;
}
/* Commented Backslash Hack hides rule from IE5-Mac \*/
    #bottom-links a span {
	float:none;
}
/* End IE5-Mac hack */
    #bottom-links a:hover span {
	color:#FF9834;
}

#member-links-wrapper #bottom-links {
	text-align: center;
}

#member-links-wrapper #links {
	padding-top: 125px;
}

#member-links {
	width:290px;
	/* background:#BBD9EE; */
    font-size:16px;
	line-height:normal;
	font-weight: normal;
	padding-top: 16px;
	text-align: center;
	color: #FFFFFF;
	height: 24px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 700px;
	margin: 0px;
}

#contactus-link {
	width:120px;
	/* background:#BBD9EE; */
    font-size:16px;
	line-height:normal;
	font-weight: normal;
	padding-top: 16px;
	text-align: center;
	color: #FFFFFF;
	height: 24px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	margin: 0px;
	float: left;
}

#member-links ul, #contactus-link ul {
	margin:0;
	list-style:none;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 0px;
}
#member-links li, #contactus-link li {
	display:inline;
	margin:0;
	padding:0;
}
#member-links a, #contactus-link a {
	float:right;
	/* background:url("tableft.gif") no-repeat left top; */
      margin:0;
	font-size:16px;
	line-height:normal;
	font-weight: bold;
	text-decoration:none;
	color:#FFFFFF;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 17px;
}
#member-links a span {
	float:left;
	display:block;
	/* background:url("tabright.gif") no-repeat right top; */
      padding:5px 15px 4px 6px;
	color:#FF9834;
}
/* Commented Backslash Hack hides rule from IE5-Mac \*/
    #member-links a span {
	float:none;
}
/* End IE5-Mac hack */
    #member-links a:hover span {
	color:#FF9834;
}


#first-page-content #spinning_globe {
	height: 320px;
	width: 310px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 79px;
	padding: 0px;
}
#first-page-content {
	width: 492px;
	background-repeat: no-repeat;
	height: 465px;
	padding: 0px;
	background-position: left top;
	margin: 0px;
	float: left;
	background-image: url(first_page_center_bg.jpg);
}
#site-doc {
	padding-top: 10px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
}
#first-page-content #first-page-top-text {
	text-align: center;
	height: 72px;
	font-size: 17px;
	font-style: italic;
	color: #B0D1CA;
}
#first-page-content #first-page-top-text h2 {
	color: #f3e081;
	font-size: 22px;
	font-weight: normal;
	line-height: normal;
	margin: 0px;
	padding: 5px;
}
#first-page-content #first-page-bottom-text {
	font-size: 15px;
	color: #FFF;
	text-align: center;
	font-style: italic;
	font-weight: bold;
	padding-top: 5px;
}
#first-page-content #first-page-bottom-text h2 a {
	color: #f3e081;
	font-size: 36px;
	font-style: normal;
	font-weight: normal;
}
#content #expert {
	padding: 10px;
}
#expert #expert-qnalink {
	padding: 0px;
	float: left;
	width: 99%;
	/* text-shadow: 0.1em 0.1em 0.2em #FFFFFF; */
}
#expert #expert-title h1 {
	font-size: 24px;
	/* color: #F7E76E; */
	color:#039;
	font-weight: bold;
	margin: 5px;
}
#expert #expert-qnalink a {
	font-size: 24px;
	font-weight: bold;
	/* color: #F7E76E; */
	color:#069;
	line-height: 40px;
	/* text-shadow: 0.1em 0.1em 0.2em #FFFFFF; */
}
#site-doc table {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: bold;
}

#membership table {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: bold;
	line-height: 120%;
}

#site-doc h1 {
	font-size: 22px;
	font-weight: normal;
	color: #069;
	/* text-shadow: 0.1em 0.1em 0.2em #FFFFFF; */
	text-align: center;
	margin: 0px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}

#membership h1, #membership-2 h1 {
	font-size: 22px;
	font-weight: normal;
	color: #F3E081;
	/* text-shadow: 0.1em 0.1em 0.2em #FFFFFF; */
	text-align: center;
	margin: 0px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}

#sitedocLinkToMore a {
	font-size: 18px;
	font-weight: bold;
	/* color: #CCFF66; */
	color:#900;
	padding: 5px;
	line-height: normal;
}
#sitedocLinkToMore{
	font-size: 18px;
	font-weight: bold;
	/* color: #CCFF66; */
	color:#900;
	padding: 5px;
	line-height: normal;
}

#content #site-doc {
	font-size: 15px;
}


.white_text_link {text-align:center;}
/*
.white_text_link a {color: #fff;}
.white_text_link a:visited, a:focus, a:link {color: #fff; text-decoration: none;} */
.white_text_link a:hover {color: #fff; text-decoration: underline;}
	
 #content #site-doc #horoscope_teaser { /*sitedoc horoscope teaser*/ 
	margin-top: 10px;
	margin-bottom: 20px;
	font-size: 13pt; 
	font-family: Arial; 
	/* color: #c0c0c0; */
	color:#3E1F00;
	
}

#archived_daily_display_heading {
	text-align: center;
	margin-top: 5px;
	margin-bottom: 5px;
}

#archived_daily_display_body {
	text-align: left;
	margin-top: 5px;
	padding: 5px;
}

#site-doc .pageheader, #membership .pageheader, #membership-2 .pageheader {
	font-size: 17px;
	font-style: italic;
	/* color: #b0d1ca; */
	text-align: center;
	font-weight: bold;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 6px;
	padding-left: 2px;
	color:#069;
}
#site-doc h2, #membership h2, #membership-2 h2 {
	background-image: url(H1a-small.png);
	height: 41px;
	padding-top: 0px;
	text-align: center;
	font-size: 21px;
	font-weight: normal;
	color: #F3E081;
	margin: 0px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	background-repeat: no-repeat;
	line-height: 41px;
	width: 470px;
}
p {
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	line-height: 125%;
	/* color: #EFEFEF; */
}

#doc-bottom-text-container h2 {
	background-image: none;
	margin: 0px;
	padding: 0px;
}
#doc-bottom-text-container {
	float: left;
	width: 99%;
	padding-top: 25px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	font-size: 14px;
	font-weight: bold;
	color: #EFEFEF;
}
.gold-text {
	font-size: 16px;
	color: #F3E081;
	font-weight: bold;
	font-style: italic;
}
#site-doc .slide {
	font-style: italic;
	padding: 4px;
	font-size: 16px;
	font-weight: bold;
}
#message {
	font-size: 16px;
	font-weight: bold;
	color: #CCFF00;
	text-align: center;
	padding: 4px;
}
.ExpertTagline {
	text-align: center;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 15px;
	padding-left: 3px;
}

h3 {
	font-size: 17px;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
}
#membership-2 {
	width: 99%;
}
.half-div-container {
	margin: 0px;
	padding: 0px;
	width: 100%;
	float: left;
}
.half-div {
	float: left;
	width: 50%;
}
.half-div-container .uo-list {
	float: left;
	width: 100%;
}
.BigGold {
	color: #F3E081;
	font-size: 22px;
	line-height: normal;
	text-align: center;
}

.BigLime {
	color: #CCFF66;
	color:#900;
	font-size: /*22px;*/ 20px;
	line-height: normal;
	text-align: center;
}

.BigWhite {
	color: #FFFFFF;
	font-size: 22px;
	line-height: normal;
	text-align: center;
}

.BigCyan {
	color: #99FFFF;
	font-size: 22px;
	line-height: normal;
	text-align: center;
}


#signin {
	text-align: center;
	font-weight: bold;
	border: 1px solid #F3E081;
	padding-top: 0px;
	padding-right: 3px;
	padding-bottom: 0px;
	padding-left: 3px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	color: #F3E081;
	background-color: #999999;
}
#signin #form1 {
	margin: 0px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}
.bigger {
	font-size: 120%;
}
#site-doc .sitedoccontents {
	/*font-size: 110%;*/
	margin-top: 12px;
	font-size: 12pt; 
	font-family: Arial; 
	/* color: #c0c0c0;"; */
	line-height: normal;
	text-align: left;
}
#sitedocLinkToMore {
	padding: 10px;
}
#content #welcome-message {
	color: #000;
	background-color: #FF0;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	padding: 4px;
}
#welcome-message a {
	color: #036;
	text-decoration: underline;
}
#bottom-links-wrapper #credits-links {
	text-align: center;
	float: left;
	width: 99%;
	padding-top: 10px;
}

#userwarning {
	color: #FF9900;
	font-size: 14px;
	padding: 10px;
	background-color: #666666;
	border: 2px solid #990000;
	font-weight: bold;
	text-align: center;
	margin: 10px;
}

#astro-logo {
	padding: 0px 5px 5px 5px;
	float: left;
}
#topbannerWrapper #topbannerad {
	width: 728px;
	margin-right: auto;
	margin-left: auto;
}
#topbannerWrapper {
	width: 980px;
	height: 92px;
}
#header1 {
	width: 100%;
	text-align: center;
	background-image: none;
	background-color: #000;
}
#header1 h1 {
	font-size: 14px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
	line-height: 16px;
}

#header1 {
	width: 100%;
	text-align: center;
	background-image: none;
	background-color: #000;
}
#header1 h1 {
	font-size: 14px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
	line-height: 16px;
}






ul.topnav {
	list-style: none;
	padding: 0 20px;
	margin: 0;
	float: left;
	width: 920px;
	background: #222;
	font-size: 1.2em;
	background: url(topnav_bg.gif) repeat-x;
}
ul.topnav li {
	float: left;
	margin: 0;
	padding: 0 15px 0 0;
	position: relative; /*--Declare X and Y axis base for sub navigation--*/
}
ul.topnav li a{
	padding: 10px 5px;
	color: #fff;
	display: block;
	text-decoration: none;
	float: left;
	font-size:14px;
}
ul.topnav li a:hover{
	background: url(topnav_hover.gif) no-repeat center top;
}
ul.topnav li span { /*--Drop down trigger styles--*/
	width: 17px;
	height: 35px;
	float: left;
	background: url(subnav_btn.gif) no-repeat center top;
}
ul.topnav li span.subhover {background-position: center bottom; cursor: pointer;} /*--Hover effect for trigger--*/
ul.topnav li ul.subnav {
	list-style: none;
	position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
	left: 0; top: 35px;
	background: #333;
	margin: 0; padding: 0;
	display: none;
	float: left;
	width: 170px;
	border: 1px solid #111;
}
ul.topnav li ul.subnav li{
	margin: 0; padding: 0;
	border-top: 1px solid #252525; /*--Create bevel effect--*/
	border-bottom: 1px solid #444; /*--Create bevel effect--*/
	clear: both;
	width: 170px;
}
html ul.topnav li ul.subnav li a {
	float: left;
	width: 145px;
	background: #333 url(dropdown_linkbg.gif) no-repeat 10px center;
	padding-left: 20px;
}
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
	background: #222 url(dropdown_linkbg.gif) no-repeat 10px center;
}

#newlinks {
	padding-top: 87px;
	width: 950px;
	padding-left: 20px;
	margin: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
}
#badges { height:75px; text-align:center; }


