h1, h2, h3, h4, h5, h6, p, pre, blockquote, ul, ol, dl, address, img {
	margin: 0.5em 0px;
	padding: 0px;
}


body {
	margin : 0;
	padding : 0;
	color : #555;
	line-height : 1.4em;
	background-color: #eef6fb;
	background-repeat: repeat-y;
	background-position: center;
	font-family: Verdana, Geneva, sans-serif;
	background-image: url(../img/bg.png);
}
h1 {
	margin : 10px 0 10px 10px;
	padding : 0;
	text-transform : uppercase;
	color : #738ca5;
	background : inherit;
	font-size: 20px;
}
h2 {
	margin : 0;
	text-transform : capitalize;
	background : inherit;
	font-size: 16px;
	padding-left: 7px;
}
h3 {
	font-size: 14px;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 7px;
	text-transform: capitalize;
}
h4 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	padding-left: 10px;
}h6 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	padding-left: 10px;
	text-align: center;
	font-weight: normal;
}
p {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
}
a {
	color : #309;
	background : inherit;
}
.roundcont {
	margin : 10px;
	width : 97.5%;
	background : #f7fbfd;
	color : #333;
	font-weight: bold;
}
.roundcont p {
	margin : 0 15px;
	font-weight: normal;
}

.roundcont ul li {
	margin-left: 45px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
}

.roundtop {
	background : url(../img/tr.gif) no-repeat right top;
}
.roundbottom {
	background : url(../img/br.gif) no-repeat right top;
}
/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

/* remove all list stylings */
.menu, .menu ul {
	border: 0;
	list-style-type: none;
	display: block;
	margin: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 70px;
}
.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}
.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}
.menu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}
.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0px;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}
.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}
.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}
/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(../img/empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */

/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.menu, .menu ul li {
	color: #FFF;
	background-image: url(../img/indentbg.gif);
	background-repeat: repeat-x;
}
.menu ul {
	width: 16em;
}
.menu a {
	text-decoration: none;
	color: #fff;
	padding: .4em 1em;
	display: block;
	position: relative;
}
.menu a:hover, .menu li:hover>a {
	color: #FC3;
	background-image: url(../img/indentbg2.gif);
}
.menu li li {	/* create borders around each item */
	border: 1px solid #ccc;
}
.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}
.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}
.menu li a.current {
	color: #FFF;
	cursor: default;
	text-decoration: none;
	background: url(../img/indentbg.gif);
}
a:hover {
	text-decoration : underline;
	color : #66a0e0;
	background : inherit;
}
a img {
	border : 0;
}
.img_left {
	float : left;
	padding : 5px;
	margin : 10px;
	border : 1px solid #556b2f;
}
.img_right {
	float : right;
	padding : 5px;
	margin : 10px;
	border : 1px solid #556b2f;
}
img.corner {
	width : 10px;
	height : 10px;
	border : none;
	display : block !important;
}
blockquote {
	font-weight : bold;
	font-style : italic;
	color : #b29b35;
	font-size: 12px;
}
#container {
	width : 840px;
	margin-left : auto;
	margin-right : auto;
	padding : 0;
	border : 5px solid #fff;
	background-color: #eef6fb;
}
#header {
	height : 150px;
	margin : 0;
	color : #fff;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#header h1 {
	letter-spacing : 5px;
	color : #FFF;
	background : transparent;
	text-align: right;
	font-family: "Trebuchet MS", tahoma, verdana, sans-serif;
	font-size: 20px;
	font-weight: bold;
	padding-top: 120px;
	padding-right: 15px;
	padding-bottom: 20px;
	padding-left: 20px;
	margin: 0px;
}
#content {
	padding : 5px;
	margin-left : auto;
	margin-bottom : 5px;
	color : #555;
	background : #eef6fb;
	margin-top: 10px;
	margin-right: auto;
}
#backtotop {
	font-size: 10px;
	font-weight: bold;
	background-color: #6CF;
	text-align: center;
	display: block;
	width: 60px;
	margin: 10px;
	padding: 0px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #00F;
	border-right-color: #00F;
	border-bottom-color: #00F;
	border-left-color: #00F;
	float: right;
}
#footer {
	clear : both;
	padding : 5px;
	margin : 0px;
	text-align : center;
	border-top : 10px solid #6ca3e4;
	color : #333;
	background : #99c6e7;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
}
.dayOfWeek {
	font-family: Geneva, Arial, Helvetica, san-serif;
	font-size: 12px;
	background-color: #FFF500
}
.date {
	font-family: Geneva, Arial, Helvetica, san-serif;
	font-size: 14px;
	;
	background-color: #FFFFCC
}
.monthYear {
	font-family: Geneva, Arial, Helvetica, san-serif;
	font-size: 20px;
	background-color: #EA8A46;
	font-weight: bold
}
.calendarText {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	text-align: center;
}
.calendarText p a {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	text-align: center;
}
a.boxpopup3 {
	position:relative;
	z-index:12;
	color:#046;
	border-bottom:thin dotted #046;
	text-decoration:none;
}
a.boxpopup3:hover {
	z-index:24;
	background-color:#FF0
}
a.boxpopup3 span {
	display: none
}
a.boxpopup3:hover span { /*the span will display just on :hover state*/
	display:block;
	position:absolute;
	top:0px;
	left:-425px;
	width:400px;
	padding:0.3em;
	border:2px outset #BBB;
	color:#000;
	background:#FF9;
	text-align:left;
}
small {
	margin : 0 15px;
}

