/*
//************************************************************************************
// weeklycalendar 
// Copyright (C) 2006, Massimo Beatini
//
// This software is provided "as-is", without any express or implied warranty. In 
// no event will the authors be held liable for any damages arising from the use 
// of this software.
//
// Permission is granted to anyone to use this software for any purpose, including 
// commercial applications, and to alter it and redistribute it freely, subject to 
// the following restrictions:
//
// 1. The origin of this software must not be misrepresented; you must not claim 
//    that you wrote the original software. If you use this software in a product, 
//    an acknowledgment in the product documentation would be appreciated but is 
//    not required.
//
// 2. Altered source versions must be plainly marked as such, and must not be 
//    misrepresented as being the original software.
//
// 3. This notice may not be removed or altered from any source distribution.
//
//************************************************************************************
*/
/* CSS Document */
div.calendar {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	background-color: #ffffff;
	position: absolute;
	left: 0px;
	top: 0px;
	height: auto;
	z-index: 1;
	cursor: pointer;
	visibility: hidden;
	border: none;
}
table.calendar {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	width: 190px;
	border: 2px solid #0B3966;
}
tr.firstrow {
	background-color: #446E98;
}
td.day {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: center;
	padding-top: 2;
	padding-bottom: 2;
	background-color: #ECECF1;
        color: #0B2948;
        font-weight: bold;
}
td.today {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	text-align: center;
	color: #E6E8EB;
	padding-top: 2;
	padding-bottom: 2;
	background-color: #113252;
}

td.weekends 
{
	background-color:#ffffff;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: center;
	padding-top: 2;
	padding-bottom: 2;
	background-color: #B0BECD;
        color: #0B2948;
        font-weight: bold;
}

td.weekends_out 
{
	background-color:#ffffff;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #C1C1C1;
	text-align: center;
	padding-top: 2;
	padding-bottom: 2;
	background-color: #EAEDF1;
}
td.day_out {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: center;
	color: #C1C1C1;
	padding-top: 2;
	padding-bottom: 0;
	background-color: #EAEDF1;
}
td.day_c {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	border: 1px solid #333333;
	text-align: center;
	color: white;
	background-color: black;
}
/* class to hidden week col*/
td.weekhidden
{
	display:none;
}
td.week {
	font-size: 10px;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	border-left: 1px solid #999999;
	background-color: #ffffff;
	text-align: center;
}
td.weeksel {
	font-size: 10px;
	color: #000099;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #ffffff;
	text-align: center;
}
td.wd {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #446E98;
	text-align: center;
}
td.closew {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	border: 1px solid #000033;
	font-weight: bold;
	color: #FFFFFF;
	background-color: black;
	font-variant: small-caps;
	text-align: center;
}
td.nav {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: center;
	background-color: #000099;

}
select.nav {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: left;
        background-color: #446E98;
        _background-color: #FFF;
        color: #fff;
        _color: #000;
        border: 0px solid #ccc;
        padding: 0px;
}
