﻿/* --------- default values for the web site -------- */
body 
{
	background-color: #f0f8ff;
	/* 
	#F8FFFB; .. match oval earth
	#F7FFFB; .. blue white or so
	#F5F5F5  smoke white
	#f8f8ff ghostWhite  
	#fffaf0 floral white  
	#fffff0 ivory  
	#fffafa snow  
	*/
	color: #36648b; /* #777777;*/  /* #003399; */
	/*
		#777777 -- original
		#59564D
	*/
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Arial, Sans-Serif;
	font-size: small;
	/*
	text-align: center;  
	text-decoration: none;
	*/
}

a { text-decoration: none;}
a:link, a:visited
{ 
	color: #003399; /*#36648b;*/
}
a:hover, a:focus 
{
	text-decoration: underline;
}
a:active 
{ 
	/* font-weight: bold; */
}

img { border-width: 0;}
p { line-height: 1.4em;}

hr 
{
	height: 1px;
	color: #EEEEEE;
}

/* headlines */
h1, h2, h3, h4, h5, h6 {
	margin: 0; 
	padding: 0;
	color: #888888;
}
h1 
{
	font-size: 1.4em;
	font-weight: bold;
	margin-bottom: 0.6em;
}
h2 
{
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 0.5em;
}
h3 
{
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 0.4em;
}
h4
{
	font-size: 1.1em;
	font-weight: bold;
	margin-bottom: 0.3em;
}
h5
{
	font-size: 1.0em;
	font-weight: bold;
	margin-top: 1em; 
	margin-bottom: 0.2em;
	color: #777777; /* same as text-color; slightly darker than regular headline color */
}
h5 #topHeader
{	
	margin-top: 0; /* no top margin on first header of the page*/
}
h6 
{
	font-size: 1.0em;
	text-transform: capitalize;
	margin-bottom: 0.1em;
	color: #777777; /* same as text-color; slightly darker than regular headline color */
}
blockquote
{
	margin: 0;
	padding: 0;
	font-family: Courier New, Courier, Monospace;
	padding-top: 1em;
	font-size: 0.9em;
	font-style: italic;
}
/* The MainTable is needed otherwise firefox does not lay out 
	the div as IE does. It hold div of class various container,
	such as mainContainer, topMenuConainer.
*/
#MainTable 
{
	display:block;
	margin-left:auto;
	margin-right:auto;
	margin-top:10px;
	padding: 0px;
	width: 762px; /* needs to 2px bigger as main containers (border width)! */
	
	background-color: #F8FFFB;
	border-color: #000066;  
	border-style:solid;
	border-width:1px;
}
/* home page needs height since all div's are absolute */
#homePage
{
	position: relative;
	height: 600px; 
	text-align:left;
}

/* full with container */
.mainContainer, .headerContainer, .footerContainer, .topMenuContainer
{
	position: relative; 
	width: 760px; 
	text-align:left;
}
/* Header Container on top of page */
.headerContainer
{
	position: relative; 
	height: 132px; /* 92 has to match background-image height */
	top: 0px; /* distance from the top of window */
}
/* Top Menu Container - below headerContainer to hold main menu */
.topMenuContainer
{
	top: -25px;
}
/* Main Container to hold main page */
.mainContainer
{
	position: relative;
	margin: auto;
}
 /* Banner Container - inside of header container */
.bannerContainer
{
	position: relative; 
	top: 10px;
	left: 150px;
	width: 470px;
	height: 92px; /* has to match background-image height */
}
/* Login Container - inside of header container */
.loginStatusContainer 
{
	position: absolute;
	top: 4px;
	right: 4px;
	text-align:center;
	border: solid 1px Silver; /* #E5E6E7; */
	padding: 2px;
}
/*  Footer Container - below Main Container to hold menu and copyright status line */
.footerContainer 
{
	text-align:center;
} 

/* login */
.loginStatus
{
	text-align: center;
	font-size: 0.85em;
	margin: 2px;
}
.loginStatus a 
{ 
	font-variant: small-caps;
	color: #003399;
}
.loginStatus a:hover 
{
	text-decoration: underline;
}

/* Top Menu - inside the headerContainer */
.topMenu
{
	margin-top: 0.6em;
	margin-bottom: 0.1em;
	margin-left:auto;
	margin-right:auto;
	
	font-weight: bold;
	/* text-transform: capitalize; */
	font-variant:normal;
	color: #003399; /*#777777;*/
	font-size: 1.1em;
	font-variant: small-caps; 
}
.subMenu
{
	margin-top: 0.1em;
	margin-bottom: 0.1em;
	margin-left:auto;
	margin-right:auto;
	font-size: 0.8em;
	font-variant: small-caps;
}
/* note: menu should not change color */
/*
.topMenu a
{
	color: #003399;
}

.topMenu a:link 
{ 
	color: #003399;
}
.topMenu a:visited 
{ 
	color: #003399;
}
.topMenu a:hover 
{ 
	text-decoration: underline;
}
.topMenu a:focus 
{ 
	text-decoration: none;
}
.topMenu a:active 
{ 
	font-weight:  bold;
}
*/
/* Content Container, leftSidebr, rightSidebar 
	This cotainer holds left or right Sidebar and content containers
*/
.mainContainer
{	
}

/* Left side bar and righ content to form two columns */
.leftSidebar, .rightSidebar
{
	width: 158px; /* 2px for border */
}

.leftSidebar, .rightContent, .rightSidebar, .leftContent, .fullWidthContent /* for login etc. */
{
	margin: 10px 0 0 0; /* 10px from top menu or banner */
	padding: 0; 
	height: 100%; 
	text-align: left;
}

.leftSidebar
{
	float: left;
}

.rightContent
{
	float: right;
	border-left: #EEEEEE 1px solid; /* separation line in middle */
	width: 600px;
}

.rightSidebar 
{
	float: right;
}

.leftContent 
{
	/* margin-right: 160px;  160 ... width of rightSidebar */
	float: left;
	border-right: #EEEEEE 1px solid; /* separation line in middle */
	width: 600px; 
}

/* Quote Box - used to display quotes from Thich Nhat Hanh */
.quoteBox
{
	position:relative; 
	float:right; 
	top:0px; 
	width:150px; 
	border:1px; 
	border-style: solid; 
	border-color: #dcdcdc; /* == gainsboro */
	margin:3px; 
	padding:5px; 
	text-align:center; 
}

.popupBox
{
	color:#36648b; 
	background-color: White; 
	border-width:1px;
	border-color:Navy; 
	border-style:solid; 
	padding:20px; 
	padding-bottom: 5px;
}

/* Text Boxes - used to display text inside a container 
	standard text box - used to display normal text */
.textBox
{
	padding: 5px 5px 5px 5px;
}
/* View Box - used to display a GridView or DetailsView inside 
	a container */
.viewBox
{
	padding: 5px 5px 5px 5px;
	/* margin: 0px; */
	overflow: auto;
}

.viewBox h4, h5
{
	text-align:center;
}

.textBox h4, h5
{
	text-align:left;
}


.gridView
{
	background-color:Black;
	height: 100%;
	width: 100%;
	border-collapse: collapse;
}
.detailsView
{
	height: 100%;
	width: 100%;
	border-collapse: collapse;
}
.popupPanel, .helpPopupPanel
{
	border-style:solid;  
	border-width:1px;
	border-color: Silver;
	background-color: #f0f8ff; /*#F5F5F5; */
	padding:5px;
	text-align:left;
}

.helpPopupPanel
{
	/* will be shown as a popup */
	visibility:hidden;
}

/* legal text box - used to display legal, policy and related text */
.LegalContent textBox
{
	font-size: 0.8em;
}

.reviewNote
{
	color: Red;
	font-size: 0.8em;
	font-style: italic;
}
.sideMenu
{
	font-size: 0.9em;
	font-variant: small-caps;
}

/* Bottom Menu - inside the footerContainer */
.bottomMenu
{
	/* margin: 10px auto 5px auto; */
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	margin-left:auto;
	margin-right:auto;
	font-size: 0.8em;
	/* font-variant: small-caps; */
}
/* Status line show below bottom menu */
.bottomStatusLine 
{
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	font-size: 0.7em;
}

/* bottom Menu hyperlinks have default values */

/*  ------------- Membership - Login - Register - Recover Password -------- */
.passwordHintStyle
{
	font-size: 0.8em;
}

.membershipContainer
{
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	margin-bottom: 20px;
	text-align: center;
}
.membershipBox
{
	border: solid 1px Silver;
	background-color: #f0f8ff; 
	margin-left: auto;
	margin-right: auto;
}
.userNameLabel
{
	width: 120px;
}
.membershipLabel
{
	width: 150px;
}
.membershipTitle
{
	color: Gray;
	font-size: 1.1em;
	font-weight: bold;
	text-align: center;
	width: 100%;
	padding-bottom: 12px;
	padding-top: 8px; 
}
.membershipLabel, .userNameLabel
{
	text-align: right;
	margin-left: auto;
	margin-right: 0px;
	padding-right: 3px;
}

.membershipTextBox, .loginTextBox
{
	border: solid 1px #EEEEEE; 
	border-left-color: #999999;
	border-left-width: 2px;
	border-top-color: #999999;
	border-top-width: 2px;
	background-color: #f5f6f7;	/* color still darkgray as default  	border: solid 1px #E0E5E6; */
	width: 250px;
	text-align: left;
}
.loginTextBox
{
	width: 200px;
}

.membershipButton, .membershipCenteredButton
{
	border: solid 1px #EEEEEE;
	background-color: #f5f6f7; /* background color of membershipTextBox */
	color: #666666; /* darker shade of background-color of membershipTitle */
	margin-bottom: 10px;
	margin-right: 1em;
	margin-top: 0.6em;
}
.membershipCenteredButton
{
	text-align: center;
	margin-right: 20px;
	margin-left: auto;
}

.membershipSuccessText
{
	padding: 1.6em 1em 1.6em 1em;
	color: #666666; /* darker shade of background-color of membershipTitle */
	border: solid 1px #EEEEEE;
	margin-bottom: 2em;
	font-size: 1.1em;
	text-align: center
}

.membershipFailureText, .membershipValidatorText
{
	color: #999999;
	font-size: 0.9em;
	/* padding: 10px 7px 10px 7px;*/
	padding: 3px 3px 3px 3px;
}

.membershipInstructionText, .membershipInstructionTextBig
{
	color: #999999; /* same as title background */
	font-size: 0.8em;
	text-align: left;
	padding-bottom: 0.4em;
	padding-top: 0.2em;
}
.membershipInstructionTextBig
{
	font-size: 1em;
	padding-left: 1em;
}

#loginBox, #registrationBox, #changePasswordBox
{
	border: solid 1px #EEEEEE;
	margin-top: 3em;
	margin-bottom: 4em
}  

.SpaceUnderTitle
{
	font-size: 0.5em;
	color: White; /* background color, so it looks like white space */
}


/* ----- Text Box */
.textBox
{
	/* background-color: Yellow; */
	padding-left: 1em;
	padding-right: 1em;
	padding-top: 0em;
	padding-bottom: 1em;
	margin: 0px;
}

/* ----- unordered lists */

ul
{
	margin: 0;
	padding: 0 1em 0 1em; 
	margin-bottom: 0.8em;
}

li
{
	margin-bottom: 0.8em;
	list-style-type:square;
}

#IndentRoundBulletList ul
{
	padding: 0.6em 1em 0 2em; /* left indent and space on top */
}

#IndentRoundBulletList li
{
	margin-bottom: 0.2em;
	list-style-type:disc;
}

p
{
	margin-top: 0.4em;
	margin-bottom: 0px;
}

.ListTitle
{
	font-weight: bold;
}

/* ----- special formatting for special occassion */
.codeBox
{
	white-space: pre; /* no condesnation of whitespace and wraps lines as in the source markup */
	font-family: Courier New, Courier, Monospace; 
	color: #666666;
	background-color: #f5f6f7;
	padding: 1em;
	padding-top: 2em;
	border: solid 1px #CCCCCC;
}

.whatsNew 
{
	float: left;
	height: 100%;
}

.coolLinks 
{ 
	text-align: left;
}

#rssBox
{
	margin-top: 1.2em;
	vertical-align: top;
	float: left;
}

#QuitFloatingAround { clear: both;}


/* ajax css */
.DateCalendar .ajax__calendar_container {
    border:1px solid #646464;
    background-color: #F5F5F5; /* lemonchiffon; */
}
.DateCalendar .ajax__calendar_other .ajax__calendar_day,
.DateCalendar .ajax__calendar_other .ajax__calendar_year {
    color: black;
}
.DateCalendar .ajax__calendar_hover .ajax__calendar_day,
.DateCalendar .ajax__calendar_hover .ajax__calendar_month,
.DateCalendar .ajax__calendar_hover .ajax__calendar_year {
    color: black;
}
.DateCalendar .ajax__calendar_active .ajax__calendar_day,
.DateCalendar .ajax__calendar_active .ajax__calendar_month,
.DateCalendar .ajax__calendar_active .ajax__calendar_year {
    color: black;
    font-weight:bold;
}

.statisticFieldHeader
{
	text-align: left;
	padding: 3px;
	width: 80%;
	float: left;
}
.statisticFieldValue
{
	float: right;
	padding: 3px;
}
.accordionHeader
{
    border: 1px solid Silver;
    background-color: #f0f8ff;
    text-align:center;
	font-size: 1.0em;
	font-weight: normal;
    padding: 5px;
    padding-top: 8px;
    cursor: pointer;
}
#mainContainer .accordionHeader a
{
	color: #FFFFFF;
	background: none;
	text-decoration: none;
}

#mainContainer .accordionHeader a:hover
{
	background: none;
	text-decoration: underline;
}

.accordionHeaderSelected
{
    border: 1px solid Silver;
    background-color: #f0f8ff;
    text-align:center;
	font-size: 1.0em;
	font-weight: bold;
    padding: 5px;
    padding-top: 8px;
    cursor: pointer;
}

#mainContainer .accordionHeaderSelected a
{
	color: #FFFFFF;
	background: none;
	text-decoration: none;
}

#mainContainer .accordionHeaderSelected a:hover
{
	background: none;
	text-decoration: underline;
}

.accordionContent
{
    border: 0px Solid Gray;
    border-top: none;
    padding: 1px;
}
.pagerGridView
{
}
.pagerGridView a:active
{
	font-weight:  bold;
}
