/*Main style sheet for webpage.class.php - links to header*/

body 
{
	margin:0px;
	padding:5px;
	width:auto;
	height:100%;
}
.main_container
{
	min-height:100%;
	height:100%;
	position: relative;
}
/*HEADER*/
#header_container
{
	height:60px; /*should be at least the height of the logo*/
	width:100%;
}
#header_div
{
	width:100%;
}
div.header
{
	width:99%;
	height:60px;
	margin:0px;
	color:#357EC7;
	font-family:"Helvetica";
	font-size:30px;
	font-weight:bold;
	line-height:60px;
	position: absolute;
}
img.headergraphic
{
	position: absolute;
	width: 100%;
	z-index: -1;
	padding-top: 0px;
	margin: 0px;
	opacity: 0.24;
	height: 100%;
}
img.logo
{
	position: relative;
	z-index: 0;
	margin:0px;
	width:120px;	/*adjust to fit logo accordingly*/
	height:60px;
	cursor: pointer;
}

#header_title
{
	position: absolute;
	z-index: 0;
	cursor: pointer;
	color: rgb(100,100,100); 
	margin-left: 10px;
}

/*NAVIGATION CONTROLS*/
#control_container
{
	/*page control - needs to be set to handle floats*/
	width:100%;
	font-family:"Helvetica";
}
#control
{
	float:left;	/*needs to be set so that menu item floats work correctly*/
	width:100%;
	border-bottom:1px black solid;
	border-top:1px black solid;
}
#navigation
{
	border-right:1px black solid;
	float:left;
}
#usercontrol
{
	border-left:1px black solid;
	float:right;
	font-weight:normal;
	font-size:16px;
}
a.navbtn
{
	padding:10px;
	line-height:25px;	
	background-color:#eee;
	height:25px;
	border-left:1px #aaa solid;
	display:inline-block;
	text-decoration:none;
}
#usercontrol a.navbtn
{
	padding:2px 2px 0px 2px;
	margin:auto;
	height:38px;
	width:50px;
	display:inline-block;
}

/*Profile menu*/
#profileicon, #profileicon_large
{
	color:#333333;
	font-weight:bold;
	border:1px solid black;
	border-radius:50%;
}
#profileicon
{
	margin:5px;
	padding:4px;
	width:24px;
	height:24px;
	line-height:24px;
	font-size:15px;
	display:inline-block;	
	text-align:center;
	margin-left:8px;
	margin-top:1px;
}
#profileicon_large
{
	float:left;
	padding:0px;
	height:82px;
	width:82px;
	font-size:1.75em;
	margin:20px;
	text-align:center;
}
#profilebtn
{
	background-color:grey;
	color:#ffeeff;
	float:right;
	margin-right:10px;
	margin-top:10px;
}
#logoffbtn
{
	float:right;
	margin-right:10px;
	margin-top:0px;
}
/*loginform*/
#loginform 
{
	margin-top: 10px;
	padding-top: 10px;
}
#loginform table.webform, #UserRegistration table.webform
{
	/*
	background-color:#efefef;
	border: 1px solid black;
	border-radius: 10px;
	font-family: 'Open Sans', sans-serif;
	*/
}
#loginform_iltdtable_0_0 
{
	width:95%;
}

#loginform #submitbtn, #UserRegistration input[type=submit]
{
	font-size: 14px;
	width: 100px;
	height: 38px;
	line-height: 18px;
	vertical-align:middle;	
	font-weight: 500;
	padding: 10px;
}
#loginform #submitbtn:hover, #UserRegistration input[type=submit]:hover
{
	cursor: pointer;
}

/*forms*/
p.webform_title
{
	font-weight:bold;	
}
table.webform
{
	border-style:none;
	width:50%;
}
td.webform_inlinecell	/*each cell within the inline row; contains a table*/
{
	vertical-align:top;
}
td.buttons	/*cell containing the submit, cancel and reset buttons*/
{
	text-align:center;
}
span.webform_subheading
{
	font-style:italic;
}
span.webform_textedit
{
}
span.webform_custom
{
}
.webform_text
{
	width:80%;
}
.webform_password
{
	width:80%;
}
.webform_tooltip
{
	color:blue; 
	display:inline-block; 
	border-bottom: 1px dotted blue;
}
.webform_tooltiptext
{
	visibility:hidden; 
	width:350px; 
	background-color:white; 
	color:black; 
	border:1px solid black; 
	position:absolute; 
	z-index:1;
	padding: 4px;
}

/*confirmation messages*/
#confirmmsg_div
{
	width:500px;
	margin:0px auto;
	text-align:center;
	padding:15px;
	border:1px dashed #333;
	background-color:#eee;
	clear:both;
}
.confirmmsgbtn
{
	padding: 15px 15px;
}

/*tables*/
table.webtable	/*main table*/
{
	width:100%;
}
caption 
{
	font-weight:bold;
	text-align:left;
}
tr.activerecord	/*default row class type*/
{
	background-color:#e0f0ff;
}
.inactiverecord /*used when active column is present in results*/
{
	background-color:#bebebe;
}
tr.hover	/*mouse hover color*/
{
	background-color:#99ff99;
}
tr.headerrow
{
	border-style:solid;
}
.filteredcol
{
	background-color:#e0f0ff;
}
.unfilteredcol
{
}
fieldset.filtercontrol
{
	border:1px solid black; background-color:#E6E6E6;
}

/*link list*/
.linklist
{
	font-family:"Helvetica";
}
.linklist a
{
	padding:10px;
	border:1px solid black;
	width:250px;
	margin-top:10px;
	margin-right:10px;
	background-color:#e6e6e6;
	text-decoration:none;
	display:block;
}

/*webpage components*/
table.keypad
{
	background-color:#666666;
}
table.keypad td
{
	background-color:#999999;
	width:50px;
	min-width:50px;
	height:50px;
	text-align:center;
}

/*schedules*/
table.schedule {font-size:0.75em;}

/*help*/
p.help
{
	font-family:"Helvetica";	
}

.invalidinput
{
	background-color:rgb(240, 180, 180);
}
.validinput
{
	background-color:rgb(180, 240, 180);
}
.error_message
{
	background-color:rgb(255, 0, 0);
}
.warn_message
{
	background-color:rgb(255, 255, 0);
}
/*footer*/
.footer_spacer
{
	height: 40px;	/*set to same height of footer to prevent covering of content*/
	clear: both;	/*clear any floats*/
}
.footer
{
	font-family: \"Open Sans\", sans-serif;
	font-size: 13px;
	height: 40px;
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-color: white;
	/*color: rgb(200,200,200);*/
	color:black;
	text-align: center;
	vertical-align:middle;
	line-height: 25px;
}
