
/* Events */

.event-cell{
	/*cursor: pointer;*/
	color: #000000;
}
.a-header {
	margin: 15px 15px 0px 15px;
}

.a-calendar a{
	color: #000000;
}
.a-calendar a:hover{
	text-decoration: none;
}
.a-calendar {
	/*margin: 10px;*/
	/*padding: 10px;*/
	/*float: left;*/
}

.a-calendar table {
	width: 590px;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
}

.a-calendar table th {
	border: 1px solid #ccc;
	border-width: 0 1px 1px 0;
	text-align: center;
	font-weight: bold;
	background-color: #eee;
	font-size: 1em;
	padding: 5px;
	font-family: "Lucida Grande Regular","Lucida Grande",Lucida,sans-serif;
}

.a-calendar table td {
	width: 14%;
	font-size: 0.8em;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	height: 80px;
	padding: 0px;
	vertical-align: top;
}

.a-calendar table td b {
	color: #333;
	font-size: 11px;
}

.a-calendar ul {
	/*border-top: 1px dotted #ccc;*/
	margin-top: 2px;
	margin-left: 0px;
	margin-bottom: 0px;
	list-style-type: none;
}

.a-calendar ul li {
	font-size: 0.9em;
	/*border: 1px dotted #ccc;
	border-width: 0px 0 1px 0;
	padding: 2px 2px 2px 2px;*/
	background: #6D9ECD;
	margin-bottom:2px;
	margin-left:2px;
	margin-right:2px;
	padding-left: 2px;	
}

.a-calendar ul li:hover {
	background-color: #F7CB6F;
	color: #897444;
}

.a-calendar ul li.toggle {
	background:#8ECB3B none repeat scroll 0 0;	
	text-align: right;
}

.a-details {
	float: left;
	width: 200px;
}

.a-details div {
	border: 1px solid #ccc;
	background-color: #eee;
	padding: 10px;
	margin-bottom: 10px;
}

.a-details div h3 {
	font-family: "Arial",Arial,sans-serif;
	font-size: 0.9em;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	padding-bottom: 5px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 5px;
}

.a-details div h4 {
	font-size: 0.8em;
	line-height: 1.2em;
}

.a-details div p {
	font-size: 0.8em;
	line-height: 1.1em;
	margin: 1.0em;
}

.a-details p small {
	font-size: 0.7em;
	text-align: right;
}

/*** MENU CSS ***/
.menu {
	width:100%; 
	height:auto; 
	font-size:0.85em; 
	position:relative; 
	z-index:100;
	border-right: 1px solid #ccc;
	font-weight: bold;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	//width:149px;
	position:relative;
	margin-right: 2px;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:11px;
	text-decoration:none; 
	color:#33466d; 
	//width:138px; 
	height:auto; 
	border: 1px solid #ccc;
	border-width: 0px 1px 1px 0px; 
	background:#eee; 
	padding-left: 5px; 
	padding-right: 5px;
	line-height: 25px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:25px;
	left:0;
	/*width:149px;*/
	border-top:1px solid #ccc;
}


/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
	position:absolute;
	top:0;
	left:0;
	border-collapse:collapse;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background:#eee;
	color:#33466d;
	height:auto;
	line-height:1em;
	padding:5px 5px;
	width:128px;
	border-width:0 1px 1px 1px;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	color:#919eac;
}

.menu :hover > a, .menu ul ul :hover > a {
	color:#919eac;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,.menu ul a:hover ul{
	visibility:visible;
}