/* Keep height property (in html and body) for browser pop-up compatibility */
html {
	height: 100%;
} 
body {
	font-family: arial;
	height: 100%;
}
/* (all) Prevent forms from messing with page layout. */
form {
	padding: 0px;
	margin: 0px;
}
/* (manage.inc) Second, logged-in menu. */
#ts_menu {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;

	display: block;
	margin: 0px auto 25px auto;
	padding: 5px 0px 5px 0px;
	background: #B8DAF0 url('../images/ts/manage.png') repeat-x bottom left;
	color: white;
	font-weight: bold;
	font-size: 80%;
}
#ts_menu a {
	color: white;
	text-decoration: none;
}
#ts_menu a:hover {
	text-decoration: underline;
}
#ts_menu ul {
	margin: 0;
	padding: 0;
}
#ts_menu li {
	display: inline;
	margin: 5px;
	padding: 0px 10px;
}
/* (default) Default rendering css. */
#ts_navmenu {
	background-color: #00588C;
	color: white;
	padding: 5px 15px;
	margin: 0px;
}
#ts_navmenu a {
	color: white;
}
#ts_navmenu li {
	display: inline;
	margin: 5px 0px;
	padding: 0px 10px 0px 0px;
}
#ts_main {
	width: 900px;
	overflow: hidden;
	margin: 0px auto;
}
#ts_header {
	padding: 15px;
	height: 50px;
	background-color: #C1E8FF;
}
#ts_copy {
	padding: 15px;	
}
#ts_footer {
	clear: both;
	padding: 15px;
	background-color: #C1E8FF;
}
#ts_footer a {
	color: black;
}
/* (all) The error/success message box for every page. */
.ts_msg {
	background-color: #FFFBA4;
	border: 2px solid #FFF420;
	padding: 5px 10px;
	margin-bottom: 15px;
	cursor: pointer;
}
/* (index.php) Used to maximize boxes, tables, etc. */
.maxWidth {
	width: 100%;
}
table.maxWidth td {
	overflow: hidden;
}
/* (index.php) All data tables used in settings and management. */
.ts_dataTable {
	border-collapse: collapse;
	display: block;
}
.ts_dataTable thead {
	font-size: 75%;
	font-weight: bold;
	background-color: #B5B5B5;
}
.ts_dataTable thead td {
	border: 1px solid #676767;
	padding: 4px 5px;
}
.ts_dataTable tr.odd {
	background-color: #EBEAFF;
}
.ts_dataTable tr td {
	font-size: 85%;
	border: 1px solid #676767;
	padding: 4px 8px;
}
.ts_dataTablePage {
	float: right;
	font-size: 80%;
}
/* (all) Used at the top of pages and sections. */
h2.ts_h {
	font-size: 130%;
	margin-top: 6px;
	margin-bottom: 6px;
}
h3.ts_h {
	font-size: 115%;
	margin-top: 4px;
	margin-bottom: 4px;
}
/* (index.php) Used for subdividing settings. */
.ts_settingsBox {
	border: 1px solid gray;
	padding: 10px 15px;
	margin: 15px 0px;
}
/* (index.php) Used to color .settingsBox. */
.white {
	background-color: white;
}
.green {
	background-color: #E6FFEC;
}
.blue {
	background-color: #E6E7FF;
}
/* (login.inc) Sets how the login link is displayed. */
#ts_login {
	font-size: 75%;
	color: black;
	font-weight: normal;
	margin: 5px;
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 2;
	opacity:0.5;
	-moz-opacity:0.5;
	-khtml-opacity:0.5;
	filter:alpha(opacity=50);
}
#ts_login a {
	color: black;
	text-decoration: none;
}
#ts_login a:hover {
	text-decoration: underline;
}
#ts_login_in {
	font-size: 75%;
	color: white;
	font-weight: normal;
	margin: 5px;
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 2;
}
#ts_login_in a {
	color: white;
	text-decoration: none;
}
#ts_login_in a:hover {
	text-decoration: underline;
}
/* (index.php, login.inc) Settings for pop-up boxes. */
#ts_loginPopUp {
	width: 400px;
	background-color: white;
	color: black;
	border: 2px solid black;
	padding: 20px;
	z-index: 10;
	position: absolute;
	display: none;
	text-align: left;
}
#menuSettingsPopUp, #menuEditPopUp {
	width: 500px;
	background-color: white;
	color: black;
	border: 2px solid black;
	padding: 20px;
	z-index: 10;
	position: absolute;
	display: none;
	text-align: left;
}
/* (login.inc) The settings for alternate login options such as 'forgot my password'. */
#ts_altLoginOptions a {
	text-decoration: none;
	font-weight: normal;
	color: black;
	font-size: 75%;
}
#ts_altLoginOptions a:hover {
	text-decoration: underline;
	font-weight: normal;
	color: black;
}
#ts_altLoginOptions ul {
	display: block;
	list-style-type: none;
	margin: 10px 0px 0px 0px;
	padding: 0px;
}
#ts_altLoginOptions li {
	display: block;
	margin: 0px;
	padding: 0px;
}
/* (index.php) For paragraphs with no margin above or below. Used primarily on 'people' page. */
p.ts_noMargin {
	margin-top: 0px;
	margin-bottom: 0px;
}
/* (index.php) The personal bio for a 'people' page is placed in this div. */
div#ts_profileBio {
	margin-top: 15px;
	border-top: 3px double #626262;
	padding: 10px 0px;
	overflow: auto;
}
/* (index.php, login.inc) Background-dimming settings for pop-up boxes. */
#ts_loginPageDimmer, #pageDimmer {
	background-color: black;
	z-index:5;
	position: absolute;
	display: none;
	top:0;
	left:0;
	right:0;
	bottom:0;
	opacity:0.0;
	-moz-opacity:0.0;
	-khtml-opacity:0.0;
	filter:alpha(opacity=0);
}
/* (all) Used in form tables to right-align first columns. */
.alignRight, .ts_alignRight {
	text-align: right;
}
.alignLeft, .ts_alignLeft {
	text-align: left;
}
/* (all) For smaller font. */
.small {
	font-size: 75%;
}
/* (all) For pop-up help boxes (w/ follow.js) */
#ts_helpBox {
	width: 300px;
	border: none;
	background-color: #0f0f53;
	padding: 5px;
	position: absolute;
	z-index: 10;
}
#ts_helpBox2 {
	border: none;
	background-color: #ffffff;
	padding: 4px;
}
#ts_helpBoxTxt {
	border: none;
	background-color: #E5E5E5;
	padding: 10px;
	font-size: 10px;
	color: #000000;
	text-align: left;
}
.ts_helpHover {
	cursor: help;
	border: none;
}
/* For buttons */
.ts_inlineBlock { /* JUST IN CASE I NEED IT */
	display:-moz-inline-stack;
	display:inline-block;
	zoom:1;
	*display:inline;
}
.ts_button {
	background: url('../images/ts/buttons_01.png') no-repeat top left;
}
.ts_button_down {
	background: url('../images/ts/buttonsd_01.png') no-repeat top left;
}
	.ts_b1 {
		cursor: pointer;
		display: inline-block;
		height: 25px;
		padding-left: 3px;
	}
	.ts_button .ts_b2 {
		display: inline-block;
		height: 25px;
		padding-right: 3px;
		background: url('../images/ts/buttons_03.png') no-repeat top right;
	}
	.ts_button_down .ts_b2 {
		display: inline-block;
		height: 25px;
		padding-right: 3px;
		background: url('../images/ts/buttonsd_03.png') no-repeat top right;
	}
	.ts_button .ts_b3 {
		display: inline-block;
		height: 25px;
		padding: 5px 5px;
		font-size: 12px;
		background: url('../images/ts/buttons_02.png') repeat-x top left;
	}
	.ts_button_down .ts_b3 {
		display: inline-block;
		height: 25px;
		padding: 6px 5px 4px 5px;
		font-size: 12px;
		background: url('../images/ts/buttonsd_02.png') repeat-x top left;
	}
/* for File/Resources pop-up */
#ts_popUpDiv {
	width: 800px;
	background-color: white;
	color: black;
	border: 2px solid black;
	padding: 20px;
	z-index: 10;
	position: absolute;
	display: none;
	text-align: left;
}
/* Contact us page */
#ts_address {
	padding: 5px 10px;
	background-color: #E6E6E6;
	border: 1px solid #D2D2D2;
}
#ts_map {
	width: 550px;
	height: 350px;
	margin: 0px 10px 10px 10px;
}