@charset "utf-8";
/* CSS Document */

body  {
	font: small Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #666666;
}
h1 {
	margin: 0;
	color: #0D2D84;
}
h2 {
	margin: 0;
	color: #0D2D84;
}
h3 {
	margin: 0;
	color: #0D2D84;
}
h4 {
	margin: 0;
	color: #0D2D84;
}
h5 {
	margin: 0;
	color: #0D2D84;
}
h6 {
	margin: 0;
	color: #0D2D84;
}
a{
	text-decoration: none;
	color: #0093CA;
}
a:hover{
	text-decoration: underline;
}
#containerBgr { 
	width: 810px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	background: url(gfx/bodyBgr.jpg) repeat-x;

} 
#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0;
} 

#text-small {font-size: 12px;}
#text-medium {font-size: 14px;}
#text-large {font-size: 16px;}

#htmlarea{ width:500px;}

/*#######################################
#                HEADER                 #
########################################*/
/* wrap Logo and drop down *******/
#wrapLogo { 
	padding: 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 105px;
}

/* Top Nav **********************/
    #topNav {
      float:right;
      width: 486px;
      line-height:normal;
	  margin:20px 0 0 0;
      }
    #topNav ul {
      float: right;
	  margin: 0;
	  padding: 3px 0;
	  list-style:none;
	  height: 22px;
      background: #0D2D84;
      }
    #topNav li {
      display:inline;
      margin:0;
      padding:0;
      }
    #topNav a {
      float:left;
      margin:0;
      padding:0px;
      text-decoration:none;
      }
    #topNav a span {
      display:block;
      background: #0D2D84;
      padding:2px 8px 2px 8px;
      color:#FFF;
	  border-right: 1px #FFFFFF dotted;
      }
    /* Commented Backslash Hack hides rule from IE5-Mac \*/
    #topNav a span {float:none;}
    /* End IE5-Mac hack */
    #topNav a:hover span {
      color:#00ADEF;
	  text-decoration: underline;
      }
    #topNav a:hover {
      background-position:0% -42px;
      }
    #topNav a:hover span {
      background-position:100% -42px;
      }

/* Logo *************************/
#siteName{
	margin: 0 0 0 10px;
	padding: 0;
	float: left;
}
#siteName a{
	display: block;
	background: url(gfx/logo.jpg) no-repeat; 
	display:block;
	height: 105px;
	width: 274px;
	text-indent: -900em;
	text-decoration: none;
	line-height:100%;
	margin: 0;
	padding: 0;
}
#siteName h1{
	margin: 0;
	padding: 0;
}

/* Drop Down List ***************/
#topmenuWrap{
	float: right;
	margin: 0 0 0 0;
	width: 486px;
	text-align: right;
}
#topmenuWrap form{
	margin: 10px 0px 0 0;
}
#topmenuWrap label{
	color: #4D4D4D;
	vertical-align:middle;
}
#topmenuWrap select{
vertical-align:middle;
}





/************* #search styles ***************/
.textfield {
	BACKGROUND-COLOR:#EEEEEE;
	BORDER-BOTTOM: #FFFFFF 2px solid;
	BORDER-COLLAPSE: collapse;
	BORDER-LEFT: #FFFFFF 2px solid;
	BORDER-RIGHT: #FFFFFF 2px solid;
	BORDER-TOP: #FFFFFF 2px solid;
	font-size: 0.81em;
}
.buttonSearch {
	font-weight:bold;
	color: #FFFFFF;
	BACKGROUND-COLOR:#38383A;
	BORDER-BOTTOM: #38383A 1px solid;
	BORDER-COLLAPSE: collapse;
	BORDER-LEFT: #38383A 1px solid;
	BORDER-RIGHT: #38383A 1px solid;
	BORDER-TOP: #38383A 1px solid;
	font-size: 0.81em;
	
}
/*
.button {
	background: url(gfx/goButton.jpg) no-repeat;
	width:21px;
	height:19px;
	margin: 0;
	padding: 0px;
	border: 0px;
	cursor: pointer;
	font-size: 11px;;
	font-weight: bold;
	color: #FFFFFF;
	vertical-align:middle;
}
*/
.button_go {
	width:21px;
	height:19px;
	margin: 0;
	padding: 0px;
	border: 0px;
	vertical-align:middle;
	background: url(gfx/goButton_noText.jpg) no-repeat;
	cursor: pointer;
	font-size: 11px;;
	font-weight: bold;
	color: #FFFFFF;

}

#search label{
	margin: 0px;
	padding: 0px;
	
}

/* main menu ****/
    #tabs {
      float:left;
      width:100%;
      line-height:normal;
      }
    #tabs ul {
	  margin:0;
	  padding: 0;
	  list-style:none;
      }
    #tabs li {
      display:inline;
      margin:0;
      padding:0;
      }
    #tabs a {
      float:left;
      background:url("gfx/tableft.gif") no-repeat left top;
      margin:0;
      padding:0 0 0 4px;
      text-decoration:none;
      }
    #tabs a span {
      float:left;
      display:block;
      background:url("gfx/tabright.gif") no-repeat right top;
      padding:5px 15px 4px 6px;
      color:#FFF;
	  font-size: small;
	  font-weight: bold;
      }
    /* Commented Backslash Hack hides rule from IE5-Mac \*/
    #tabs a span {float:none;}
    /* End IE5-Mac hack */
    #tabs a:hover span {
      color:#0D2D84;
      }
    #tabs a:hover {
      background-position:0% -42px;
      }
    #tabs a:hover span {
      background-position:100% -42px;
      }

/*************************************************/
/***************** CSS BODY ************************/
/*************************************************/
#topBanner {
	display: block;
	height: 122px;
	width: 100%;
	text-indent: -900em;
	text-decoration: none;
	line-height:100%;
	margin: 0;
	padding: 0;
	clear:both;
}

#loadarea {
	height: 122px;
	width: 100%;
	margin: 0;
	padding: 0;
	clear:both;
}

/** 00 home *****************************/
body#home #loadarea{
	background: url(gfx/bannerHome.jpg) no-repeat left;
}
/** 01 corporates *****************************/
body#corporates #loadarea{
	background: url(gfx/bannerCorporates.jpg) no-repeat left;
}
/** 02 business *****************************/
body#business #loadarea{
	background: url(gfx/bannerBusiness.jpg) no-repeat left; 
}
/** 03 individuals *****************************/
body#individuals #loadarea{
	background: url(gfx/bannerIndividual.jpg) no-repeat left; 
}


/*- Rollover nav--------------------------- */

	#rolloverNav {
	font-size: 1.25em;
	font-weight: bold;
	}
	#rolloverNav ul {
	margin: 5px 0;
	padding:0px;
	list-style:none;
	}
	#rolloverNav li {
	display: inline;
	}


#rolloverNav ul li.corporates a:link, #rolloverNav ul li.corporates a:visited {
	background: url(gfx/introButtonCorporates.jpg) no-repeat;
}

#rolloverNav ul li.business a:link, #rolloverNav ul li.business a:visited {
	background: url(gfx/introButtonBusiness.jpg) no-repeat;
}

#rolloverNav ul li.individuals a:link, #rolloverNav ul li.individuals a:visited {
	background: url(gfx/introButtonIndividuals.jpg) no-repeat;
}



	#rolloverNav ul li.corporates a:link, #rolloverNav ul li.business a:link, #rolloverNav ul li.individuals a:link, 
	#rolloverNav ul li.corporates a:visited,  #rolloverNav ul li.corporates a:visited, #rolloverNav ul li.business a:visited, #rolloverNav ul li.individuals a:visited
	{
	padding: 0;
	color:#FFFFFF;
	text-indent: -900em;
	
	text-decoration: none;
	width: 250px;
	height: 158px;
	display: block;
	float: left;
	margin: 4px;
	   }
	#rolloverNav a:hover {
		color: FFFFFF;
	  }











#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 206px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 0;
	margin: 0 0 10px 0; /* padding keeps the content of the div away from the edges */
}
/*- mainNav--------------------------- */
	
/***********************************************/
/* NAVEGATION                                 */
/***********************************************/
#mainNav {
	width: 170px;
	margin: 0 0 0 20px;
	font-size: small;
	font-weight:bold
}
/* Main Links */
#mainNav ul a:link, #mainNav ul a:visited {
	color: #0D2D84;
	display: block;
	background:  url(gfx/square_green.gif) no-repeat left top;
	padding: 3px 0 3px 15px;
	OVERFLOW: visible;
	border-bottom: 2px dotted #0D2D84;
}
#mainNav ul {
	list-style: none;
	margin: 0;
	padding: 0 0 0 0px;
	LIST-STYLE-TYPE: none;
}
#mainNav li {
	padding: 1px;
}
#mainNav ul a:hover {
	text-decoration: underline;
	background:  url(gfx/square_blue.gif) no-repeat left top;
}
/* Sub Links */
#mainNav ul li ul a:link, #mainNav ul li ul a:visited {
	background: none;
	font-weight: normal;
}
#mainNav ul li ul{
	margin: 0 0 0 10px;
}
#mainNav ul li ul li ul{
	margin: 0 0 0 10px;
}



#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 130px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px; /* padding keeps the content of the div away from the edges */
	margin: 0 0 10px 0;
}
#mainContent { 
	margin: 0 0 10px 206px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContentCourse { 
	margin: 0 10px 10px 206px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#mainContentNoNav { 
	margin: 0 0 20px 0; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: left;
}
#mainContent_no_sidebar2 {
	margin: 0 0 10px 206px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#breadcrumbs{
	margin: 10px 30px;
	font-size: x-small;
}



/** FOTER *****/
#footer {
	height: 28px;	
	padding: 0 20px 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: url(gfx/footerBgr.gif) no-repeat;
} 
#bottonMenu {
	margin: 3px 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	float: left;
	color: #CCCCCC;
}
#bottonMenu a{
	color: #FFFFFF;
	text-decoration: none;
}
#bottonMenu a:hover{
	color: #00ADEF;
	text-decoration: underline;
}
#bottonMenu a span{
	display: inline;
	border-right: 1px #FFFFFF dotted;
		padding: 0 7px 0 5px;

}

#bottonLogo {
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	float: right;
}
#bottonLogo a{
	display: block;
	background: url(gfx/footerLogo.jpg) no-repeat; 
	display:block;
	height: 28px;
	width: 88px;
	text-indent: -300em;
	text-decoration: none;
	line-height:100%;
	margin: 0;
	padding: 0;
}
#bottonLogo h1{
	margin: 0;
	padding: 0;
}


.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}






















/************** #background styles **************/
#right_Col_Bg {background: url(gfx/LTRC_homeMW_01_r4_c3.jpg) left bottom no-repeat;}

#middle_Col_Bg {background: url(gfx/LTRC_homeMW_01_r4_c2.jpg) right bottom no-repeat;}

#bottom_Col_Bg{ background:url(gfx/LTRC_homeMW_01_r8_c3.jpg) right top no-repeat; height: 32px;}

#body_Bg{background: url(gfx/LTRC_homeMW_01_r3_c3.jpg) right repeat-y; border: 1px solid #999999;}


/************** #BOX Style ***********************/


.box_r2_c1{background: url(gfx/box_r2_c1.jpg) repeat-y;}
.box_r2_c3{background: url(gfx/box_r2_c3.jpg) repeat-y;}
.box_r2_c2{background: #ECDCE9;}
.box_r2_c5{background: url(gfx/box_r2_c5.jpg) repeat-y;}
.box_r2_c7{background: url(gfx/box_r2_c7.jpg) repeat-y;}
.box_r3_c1{background: url(gfx/box_r3_c1.jpg) no-repeat;}
.box_r2_c6{background: #B1D2D9;}
.box_r3_c5{background: url(gfx/box_r3_c5.jpg) no-repeat;}

.boxWrap{margin: 20px 0 0 0;}

/*************** #News Style ************************/

#newsListStyle{ /*style of tab content oontainer*/
border-top: 1px solid #C3C3C3;
padding: 10px 0 0 10px;
}
#newsListStyle a{ /*style of tab content oontainer*/
color: #006699;
}

/*************** TABS ****************/
.reports td {
	padding: 10px;
	border-bottom: 1px solid #C3C3C3;
}
.reports p {
	margin: 0;
}
.reportsAll {
	padding: 5px 0 0 0;
}

.RSSfeed {
	text-align: right;
}
.paging{
	text-align: left;
}
.tableTop{
margin-top: 0;
border-bottom: #CCCCCC 1px solid;
padding-bottom: 15px;
}









/***************************************
James' Additions for courses section
***************************************/
body h3 {
	font-weight: bold;
}



/*************** Right col ****************/
#my_courses {
	width: 170px;
}
#my_courses p {
	padding: 5px 8px 8px 8px;
}
#my_courses h3 {
	font-size: 0.7em;
	margin-bottom: 20px;
}
#my_courses h3 span {
	background-image: url(gfx/my_courses_top.gif);
	display: block;
	width: 159px;
	height: 24px;
	position: relative;
	top: -3px;
	left: -3px;
	margin-bottom: -20px;
}
.bottom-image {
	display: block;
	background-image: url(gfx/my_courses_bottom.gif);
	background-repeat: no-repeat;
	width: 159px;
	height: 11px;
	position: relative;
	top: 3px;
	left: -3px;
}
.bold-blue {
	font-weight: bold;
	color: #244a9f;
}
#my_courses table {
	margin: -5px 8px 8px 8px;
}
#my_courses table td {
	vertical-align: top;
	padding-bottom: 8px;
}
#my_courses #go-to {
	margin-left: 8px;
}
#my_courses img {
	border: none;
}
#my_courses td a {
	float: right;
}

/*************** Course search ****************/
.course-search td {
	text-align: right;
	padding-right: 10px;
	line-height: 35px;
}
.course-search {
	margin: 20px 0px 0px 10px;
}
.course-search input {
	width: 116px;
	float: left;
}
.course-search select {
	float: left;
}
#search_button {
	width: 72px;
	height: 18px;
}


/*************** Search results ****************/
.search-results th {
	color: #C32A2D;
	border-bottom: dashed 1px #999999;
	padding-bottom: 5px;
	padding-right: 20px;
	text-align: left;
}
.search-results {
	border-bottom: dashed 1px #999999;
	padding: 0px;
}
.search-results .border-left {
	border-left: dashed 1px #999999;
	padding-left: 12px;
}
.search-results .border-right {
	border-right: dashed 1px #999999;
	padding-right: 12px;
}
.search-results td {
	padding-right: 20px;
	padding-top: 10px;
	line-height: 25px;
	vertical-align: top;
}
.search-results input {
	margin-bottom: 25px;
}
.search-results a:link {
	font-weight: bold;
}
.search-results a:visited {
	font-weight: normal;
}
#content .pagination img {
	margin: 0px 0px -11px 0px;
	padding: 0px;
}
#content .pagination div {
	display: none;
}
.applied {
	font-size: 0.8em;
	line-height: 1.166;
	color: #244a9f;
	margin-left: 10px;
}
#content .pagination td {
	padding: 0px;
}


/*************** Course details ****************/
#courseBar{
	margin: 5px 0 10px 0;
	padding: 0px;
	text-align: right;
}

.course-details {
	margin-top: 20px;
	line-height: 25px;
	margin-right: 50px;
}
.course-details td {
	vertical-align: top;
	padding-right: 18px;
}
.course-details p {
	line-height: 1.166;
}
.light-blue {
	font-weight: bold;
	color: #a7b7d9;
	background-image: url(gfx/arrow_light_blue.gif);
	background-repeat: no-repeat;
	padding-left: 15px;
}


.course_details td{
	padding-top: 5px;
	padding-bottom: 5px;
}
.dark-blue {
	font-weight: bold;
	color: #244a9f;
}
.course_title {
	font-weight: bold;
}
.tb_border{
	border-top: 1px #999999 dashed;
	border-bottom:  1px #999999 dashed;
}
td.t_border{
	border-top: 1px #999999 dashed;
	padding-top: 10px;
}

.tutor_img{
	margin-right: 5px;
	margin-bottom: 5px;
	border: 1px solid #666666;
}
.pink {
	font-weight: bold;
	color: #e41b5b;
	background-image: url(gfx/arrow_pink.gif);
	background-repeat: no-repeat;
}
#home .course-details .pink-link a:link, #home .course-details .pink-link a:visited {
	font-weight: bold;
	color: #e41b5b;
}
.no-details {
	color: #999999;
}
.border-bottom td {
	border-bottom: 1px dashed #999999;
	padding-bottom: 20px;
}
.padding-top td {
	padding-top: 20px;
}
.actions input, .actions img {
	float: right;
	margin: 10px 50px 15px 0px;
}



/*************** Application ****************/
.application-tab {
	margin: 20px 0px -1px 0px;
	/*position: relative;*/
	z-index: 2;
}
.application-line {
	border-bottom: 1px dashed #999999;
	height: 0px;
	color: #ffffff;
	/*position: relative;*/
	z-index: 1;
	margin-bottom: 12px;
}
.align-right {
	text-align: right;
	width: 180px;
}
#application input {
	width: 116px;
	padding: 0px;
	margin: 0px;
}
#application select {
	width: 136px;
}
#application .dob {
	width: 58px;
}
#application td {
	vertical-align: top;
	padding-bottom: 10px;
	padding-right: 15px;
	line-height: 20px;
}
#application .address {
	width: 178px;
	height: 73px;
}
.mobile {
	padding-left: 60px;
}
#application .radio {
	width: 15px;
	padding: 0px;
	margin: 0px 8px 0px 0px;
}
#application .check {
	width: 15px;
	padding: 0px;
	margin: 0px 0px 5px 0px;
}
#application a:hover img {
	text-decoration: none;
}
#application .add-button {
	width: 15px;
}
.expand {
	margin: 28px 0px 15px 0px;
}
#application .expand a:link, #application .expand a:visited {
	font-weight: bold;
	color: #ac4461;
}
#application .future-plans {
	width: 434px;
	height: 129px;
}
#application .bottom {
	vertical-align: bottom;
}
#application .longer {
	width: 240px;
}



.hiddenText {
	text-indent: -200em;
}
.hiddenTextdiv {
	display: none;
}
.hiddenTextimg {
	margin-top: 10px;
	text-align: center;
}
.hiddenTextimg img{
	margin-top: 10px;
	text-align: right;
}


/* Arond line on Events Cal *******************/

.course_line_top{
	background: url(gfx/course_line_top.gif) no-repeat right;
	height: 11px;
	font-size: 0px;
}
.course_line_bot{
	background: url(gfx/course_line_bot.gif) no-repeat right;
	height: 11px;
	font-size: 0px;
}

.course_box_table{
	font-size: 11px;
}
.course_line_mid{
/*	background: url(gfx/calendarMid.gif) repeat-y left; */
	 border-right: 1px solid #67006D;
	 margin-left: 20px;

}
/* Terms and Condition *******************************/
#terms_condition{
	width: 600px;
	height: 200px;
	background-color: #FFFFFF;
	color: #000000;
	border: 1px solid #999999;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	overflow: scroll;
}


/* basket *************************************/

.basket_bgr{background: #DEF6FF; width: 206px; margin-top: 20px}
.basket_t{ background: url(gfx/basket_t.gif) 0 0 repeat-x}
.basket_r{ background: url(gfx/basket_r.gif) 100% 0 repeat-y}
.basket_b{ background: url(gfx/basket_b.gif) 0 100% repeat-x}
.basket_l{ background: url(gfx/basket_l.gif) 0 0 repeat-y}

.basket_tr{ background: url(gfx/basket_tr.gif) 100% 0 no-repeat}
.basket_br{ background: url(gfx/basket_br.gif) 100% 100% no-repeat}
.basket_bl{ background: url(gfx/basket_bl.gif) 0 100% no-repeat}
.basket_tl{ background: url(gfx/basket_tl.gif) 0 0 no-repeat; padding: 20px 10px}








/*******************calendar ***************************/
/* The main calendar widget.  DIV containing a table. */

div.calendar { position: relative; }

.calendar, .calendar table {
  border: 1px solid #206A9B;
  font-size: 11px;
  color: #000;
  cursor: default;
  background: #F1F8FC;
  font-family: tahoma,verdana,sans-serif;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;    /* They are the navigation buttons */
  padding: 2px;          /* Make the buttons seem like they're pressing */
}

.calendar .nav {
  background: #007ED1 url(menuarrow2.gif) no-repeat 100% 100%;
}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;      /* Pressing it will take you to the current date */
  text-align: center;
  background: #000;
  color: #fff;
  padding: 2px;
}

.calendar thead tr { /* Row <TR> containing navigation buttons */
  background: #007ED1;
  color: #fff;
}

.calendar thead .daynames { /* Row <TR> containing the day names */
  background: #C7E1F3;
}

.calendar thead .name { /* Cells <TD> containing the day names */
  border-bottom: 1px solid #206A9B;
  padding: 2px;
  text-align: center;
  color: #000;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #a66;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  background-color: #34ABFA;
  color: #000;
  border: 1px solid #016DC5;
  padding: 1px;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  background-color: #006AA9;
  border: 1px solid #008AFF;
  padding: 2px 0px 0px 2px;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 2em;
  color: #456;
  text-align: right;
  padding: 2px 4px 2px 2px;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #bbb;
}
.calendar tbody .day.othermonth.oweekend {
  color: #fbb;
}

.calendar table .wn {
  padding: 2px 3px 2px 2px;
  border-right: 1px solid #000;
  background: #C7E1F3;
}

.calendar tbody .rowhilite td {
  background: #def;
}

.calendar tbody .rowhilite td.wn {
  background: #F1F8FC;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  background: #def;
  padding: 1px 3px 1px 1px;
  border: 1px solid #8FC4E8;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  background: #cde;
  padding: 2px 2px 0px 2px;
}

.calendar tbody td.selected { /* Cell showing today date */
  font-weight: bold;
  border: 1px solid #000;
  padding: 1px 3px 1px 1px;
  background: #fff;
  color: #000;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #a66;
}

.calendar tbody td.today { /* Cell showing selected date */
  font-weight: bold;
  color: #D50000;
}

.calendar tbody .disabled { color: #999; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  visibility: hidden;
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
  display: none;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
  text-align: center;
  background: #206A9B;
  color: #fff;
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #000;
  color: #fff;
  border-top: 1px solid #206A9B;
  padding: 1px;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  background: #B8DAF0;
  border: 1px solid #178AEB;
  color: #000;
  padding: 1px;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  background: #006AA9;
  padding: 2px 0px 0px 2px;
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  width: 4em;
  cursor: default;
  border: 1px solid #655;
  background: #def;
  color: #000;
  font-size: 90%;
  z-index: 100;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .hilite {
  background: #34ABFA;
  border-top: 1px solid #46a;
  border-bottom: 1px solid #46a;
  font-weight: bold;
}

.calendar .combo .active {
  border-top: 1px solid #46a;
  border-bottom: 1px solid #46a;
  background: #F1F8FC;
  font-weight: bold;
}

.calendar td.time {
  border-top: 1px solid #000;
  padding: 1px 0px;
  text-align: center;
  background-color: #E3F0F9;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0px 3px 0px 4px;
  border: 1px solid #889;
  font-weight: bold;
  background-color: #F1F8FC;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  padding: 0px 2px 0px 3px;
  font-weight: bold;
}

.calendar td.time span.hilite {
  border-color: #000;
  background-color: #267DB7;
  color: #fff;
}

.calendar td.time span.active {
  border-color: red;
  background-color: #000;
  color: #A5FF00;
}

.heymoscow{
	text-align: center;
}
#moduleNav{
	width: 152px;
	margin: 0 auto;
	padding: 0;
}
#moduleNav ul{
	list-style: none;
	margin: 0;
	padding: 0;
}


/* Application STYLE *************************/

.dot_box{border: #999999 1px dotted; padding: 20px 50px; margin: 5px 0 30px 0; }
.dot_box fieldset { border: 1px solid #B6C0DA; margin-bottom: 20px}
.dot_box legend { font-weight: bold; color: #0D2D84}
.label { width: 140px; float: left; text-align: left; display: block; color: #999999;}
p.submit { text-align: center; margin: 0}
.failed_color { color:#CC0000}

.bluetext{font-weight: bold; color: #0D2D84}

#mainContent_no_col {
	margin: 0 0 10px 0px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}


/* Google Search ******************/
.google_search { text-align: center; padding: 40px 20px; margin-top: 10px; border: 1px dashed #999999}
.google_results { text-align: left; padding: 20px; margin-top: 10px; border: 1px dashed #999999}
#cse-search-box { border-bottom: 1px dashed #999999; padding-bottom: 10px;}
#cse-search-results { width: 400px;}