/*
	Here is the stylesheet for the site. If you change the name of this file you will also have to change the corrosponding line
	in the html file. I have documented the things that you will probably want to change which is mainly color and font styles.
	If you are completely unfamiliar with CSS you should definitely visit http://w3schools.com for a brush up on how things
	work. Also I often times use a 3 digit color format which some people may not be familiar with. It's just a shorthand
	way of writing colors. You just duplicate each number and you will get the 6 digit hex code.
	Examples:
	#fff = #ffffff
	#000 = #000000
	#43f = #4433ff
*/

/*
	body
	This is the body tag. The main items you may want to change are background, font, line-height, and color.
	In the background tag change the hex code to the color of your background that you figured out.
	DO NOT change the font size from 0px. It is set that way to fix a design issue, the size of the text for each
	panel is set later in this document. If you change the color tag it will set the default color for text.
*/
body {
	margin: 0px 0px 10px 0px;
	padding: 0px;
	background: #0d1a26 url(images/bg.gif) top left repeat-x;
	font: 0px helvetica, Arial, Tahoma, sans-serif;
	line-height: 200%;
	color: #333;
}

#container {
	margin: 0px auto 0px auto;
	padding: 0px;
	width: 770px;
	background: url(images/container_bg.gif);
}

#containerTop {
	margin: 10px auto 0px auto;
	padding: 0px;
	width: 770px;
	height: 20px;
	background: url(images/container_top.gif) top left no-repeat;
}

#containerBottom {
	margin: 0px auto 0px auto;
	padding: 0px;
	width: 770px;
	height: 20px;
	background: url(images/container_bottom.gif) top left no-repeat;
}

#header {
	margin: 0px auto 0px auto;
	padding: 0px;
	width: 750px;
	height: 150px;
	background: url(images/header.gif) top left no-repeat;
}

/*
	#mainMenu
	Here you can change the font size and face of the text for the menu items.
	If you change the color tag, it will change the color of the seperator characters which is a pipe | by default.
*/
#mainMenu {
	margin: 10px auto 0px auto;
	padding: 0px;
	width: 750px;
	height: 30px;
	background: url(images/menu_bg.gif) top left no-repeat;
	font: 12px helvetica, Arial, Tahoma, sans-serif;
	color: #fff;
}

#mainMenu ul {
	margin: 0px;
	padding: 0px;
	display: inline;
	list-style-type: none;
}

#mainMenu li {
	margin: 7px 0px 0px 7px;
	padding: 0px;
	float: left;
	font-weight: bold;
}

/*
	#mainMenu a
	If you change the color here, it will change the color of your menu links.
*/
#mainMenu a {
	margin: 0px;
	padding: 0px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

/*
	#mainMenu a:hover
	This is the color of the menu links when you hover the mouse over them. Change it to whatever you need.
*/
#mainMenu a:hover {
	color: #fc0;
}

/*
	#bodyContainer
	You can change the font here. This will change the font for the left panel and the body panel.
*/
#bodyContainer {
	position: relative;
	float: left;
	left: 10px;
	margin: 0px auto 0px auto;
	padding: 0px;
	width: 750px;
	background: url(images/body_bg.gif);
	font: 12px helvetica, Arial, Tahoma, sans-serif;
}

#bodyTop {
	position: relative;
	float: left;
	left: 10px;
	margin: 10px auto 0px auto;
	padding: 0px;
	width: 750px;
	height: 14px;
	background: url(images/body_top.gif) top left no-repeat;
}



#bodyBottom {
	position: relative;
	float: left;
	left: 10px;
	margin: 0px auto 10px auto;
	padding: 0px;
	width: 750px;
	height: 14px;
	background: url(images/body_bottom.gif) top left no-repeat;
}

#picBodyContainer {
	position: relative;
	float: left;
	left: 10px;
	margin: 0px auto 0px auto;
	padding: 0px;
	width: 750px;
	background: url(images/pic_body_bg.gif);
	font: 12px helvetica, Arial, Tahoma, sans-serif;
}
#picBodyTop {
	position: relative;
	float: left;
	left: 10px;
	margin: 10px auto 0px auto;
	padding: 0px;
	width: 750px;
	height: 14px;
	background: url(images/pic_body_top.gif) top left no-repeat;
}

#picBodyBottom {
	position: relative;
	float: left;
	left: 10px;
	margin: 0px auto 10px auto;
	padding: 0px;
	width: 750px;
	height: 14px;
	background: url(images/pic_body_bottom.gif) top left no-repeat;
}

/*
	#leftPanel
	The font for this left panel is inherited from the #body id. However if you want to have a different color or font
	text here, you may add the color or font tags.
*/
#leftPanel {
	float: left;
	margin: 0px auto 0px 0px;
	padding: 5px;
	width: 235px;
}

/*
	#bodyPanel
	The font for this body panel is inherited from the #body id. However if you want to have a different color or font
	text here, you may add the color or font tags.
*/
#bodyPanel {
	float: right;
	margin: 0px 0px 0px auto;
	padding: 5px;
	width: 485px;
}

#footer {
	clear: both;
	margin: 0px auto 0px auto;
	padding: 0px;
	width: 750px;
	height: 65px;
	background: url(images/footer.gif) top left no-repeat;
	text-align: right;
}


#picBodyContainer td.main {
background:url("images/calendar_bg.gif") center center no-repeat;
}

#picBodyContainer td.days {
background-color: white;

}

#picBodyContainer td.month {
	color: #fff;
	font-weight: bold;
}

#picBodyContainer td.daysofweek {
	color: #fff;

}
#picBodyContainer td.bookeddays {
	background-color: #fc0;
}
#picBodyContainer td.morndays {
	background:url("images/booked_morn.gif");
}
#picBodyContainer td.nightdays {
	background:url("images/booked_night.gif");
}

#copyright {
	margin: 0px;
	padding: 8px;
	color: #fff;
	font: 12px helvetica, "Century Gothic", Courier, monospace;
}

#copyright a {

	color: #fff;
	text-decoration: none;
}
#copyright a:hover {

	color: #fff;
	text-decoration: underline;
}

p {
	margin: 0px 0px 20px 0px;
	padding: 0px;
}

h1 {
	margin: 0px 0px 5px 0px;
	padding: 0px;
	font-size: 20px;
	color: #3656b0;
	width: 100%;
}

h2 {
	margin: 0px 0px 5px 0px;
	padding: 0px;
	font-size: 18px;
	color: #3656b0;
}

h3, h4, h5, h6 {
	margin: 0px 0px 5px 0px;
	padding: 0px;
	font-size: 16px;
	color: #3656b0;
}

img {
	display: block;
	margin: 7px;
	padding: 0px;
}

a {
	color: #3656b0;
	text-decoration: underline;
}

a:hover {
	color: #6a88dc;
}
