/*----------------------------------------------------------------------------------------
orbaas

Stylesheet (CSS)

version: Demo School 980px fixed middle
Author: David Hillyard

© copyright 2007

----------------------------------------------------------------------------------------*/

/* main page styles */

body {
	font-family: "century gothic", sans-serif;
	font-size: 0.8em;
	margin: 0px;
	padding: 0px;
	color: #666666;
	background-color: #CCCCCC;
}

#page {
	margin: 0px;
	padding: 0px;
	width: 100%;
}

#container {
	width: 980px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	background-color: #FFFFFF;
}

#content {
	background-image: url(header.jpg);
	background-repeat: no-repeat;
	/* Nav bar distance from the top of the page */
	padding-top: 135px;
	padding-left: 20px;
	padding-right: 20px;
}

#footer {
	background-image: url(footer.jpg);
	background-repeat: no-repeat;
	margin-top: 80px;
	height: 50px;
}

table {
	font-size: 1em;
}
ul {
	list-style-image: url(bullet.gif);
}
h1 {
	font-family: "Trebuchet MS";
	font-weight: 400;
	text-align: left;
	width: auto;
	color: #808080;
}
h2 {
	font-family: "Trebuchet MS";
	font-weight: 100;
	color: #000000;
	font-size: 14pt;
}
form {
	border: 1px dotted #3C000D;
	padding: 5px;
	width: 70%;
}

/*sitewide links*/

a {
	color: #3C000D;
	text-decoration: none;
}
a:hover {
	color: #7D0D2D;
	text-decoration: underline;
}
/*======================================================================================*/

/* Page IDs */

/*-------------------------------------------------------*/
/*booking table - page where resources are booked*/

#booking_table {
	font-weight: bold;
	border: 1px dashed #3C000D;
	margin: 10px;
	padding: 5px;
	width: 90%;
}
#booking_table td {
	margin: 0px;
	padding: 5px;
	height: 10px;
	text-align: center;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	width: 60px;
}

/*booking table links*/

#booking_table a {
	color: #CCCCCC;
	text-transform: lowercase;
	text-decoration: none;
	font-weight: normal;
}
#booking_table a:hover {
	color: #7D0D2D;
	text-transform: lowercase;
	text-decoration: underline overline;
	font-weight: normal;
}

.table_column_heading {
	color: #000000;
	border-left: 1px solid 	#667EFF
}

.table_row_heading {
	color: #000000;
	border-bottom: 1px solid #667EFF;
}

.table_today_row_heading {
	color: #7D0D2D;
	background-color: #FFE1E8;
}

.table_booking { /* booked slot */
	color: #3C000D;	
}

.table_blockout {	/* blockout slot */
	font-weight: normal;
	color: #666666;
}

.table_conflict {	/* conflict slot */
	font-weight: bold;
	color: #FF0000;
}

/*---------------------------------------------------------*/
/*All other list tables - view my bookings, resources, structure of day etc.*/

#list_table {
	border: 1px solid #667EFF;
	margin: 10px;
	padding: 5px;
	border-right-style: none;
	border-left-style: none;
}
#list_table th {
	text-align: left;
}
#list_table td {
	margin: 0px;
	padding: 5px;
	height: 10px;
	text-align: left;
	border: 1px dashed #667EFF;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
textarea {
	font-family: Arial, Helvetica, sans-serif;
}
input {
	font-family: Arial, Helvetica, sans-serif;
}

/*--------------------------------------------------------*/
/*title bar styles*/

/*main logo*/

#title p {
	display: none;
}
#title {

}

/*impact image (on right)*/

#impact p {
	display: none;
}
#impact {

}
/*--------------------------------------------------*/
/*Navigation bar in title frame*/

#nav {
	font-family: "Trebuchet MS";
	color: #3C000D;
	padding-top: 5px;
	padding-bottom: 5px;
}

#nav a {
	color: #3C000D;
	text-decoration: underline;
}
#nav a:hover {
	color: #7D0D2D;
	text-decoration: underline;
}
/*----------------------------------------------------*/
/*click to print logo positioning*/

#printscript {
float:right;
margin-top:10px;
}


/*=======================================================================================*/


/* Media Styles */

/* hide print logo */

@media screen {
	#printlogo {
		display: none;
		
	}
}

/* styles for printing (hiding and showing logos etc.) */

@media print {

	#printlogo {
		display : block;
		font-size : 1.5em;		
	}
	#nav {
		display : none;
	}
	#content {
	padding-top: 10px;
	padding-left: 20px;
	padding-right: 20px;
	}
	#selectbookedby {
		display : none;
	}
	#printscript {
		display : none;
	}
	#booking_table a {
		display : none;
	}
	#noprintsection {
		display : none;
	}
	h1 {
		display : none;
	}
}

