
/* CSS Document */


@import url(./menu-bar.css);
@import url(./images.css);

@import url(./shadow.css);
@import url(./word-fix-main.css);


body  {
	
	font: 75% 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: #000000;
	padding-top: 6px;
	
}

a:Link
{
	color: #663399;
}
a:visited
{
	color: #215A7C;
}
a:active
{
	color: #663399;
}

div
{
	
	font-size: 12px;
}

p
{
	
	font-size: 12px;
	margin-bottom: 5px;
	color: #414141;
	height: auto;
}

ul{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #414141;
	margin-top: 0px;
	margin-bottom: 0px;
}

ol{
	color: #215A7C;
	margin: 20px;
}

ol.black{
	color: #414141;
	margin: 20px;
}

ul.standard-menu-arrow
{
	list-style: none;
	list-style-image: url(../../images/common/bullets2.gif);
	margin-left: 20px;
	padding: 0px;
	margin-top: 2px;
	margin-bottom:15px;
	line-height: 1.7em;
}

ul.library-menu-arrow
{
	list-style: none;
	list-style-image: url(../../images/common/bullets2.gif);
	margin-left: 0px;
	padding-bottom: 0px;
	margin-top: 2px;
	margin-bottom:15px;
	line-height: 1.7em;
}

ul.standard-menu-arrow-short
{
	list-style: none;
	list-style-image: url(../../images/common/bullets2.gif);
	margin-left: 20px;
	padding: 0px;
	margin-top: 2px;
	margin-bottom:15px;
	line-height: 1.0em;
}
div.back-to-top
{
	font-size: 9px;
	text-align: right;
	height: 15px;
	border-color: #71B1D9;
	border: 1px;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 20px;
}
div.bottom-menu
{
	font-size: 11px;
	text-align: center;
	height: 15px;
	color: #cccccc;
	font-weight: bold;
}



/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
* .thrColEls #container { 
	  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */

	width: 760px;
	
	background: #FFFFFF;
	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. */
height: auto;
} 

html > .thrColEls #container { 
	  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	
	
	
	min-width: 768px;
	max-width: 950px;
	
	width: auto;
	background: #FFFFFF;
	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. */
	
} 


#thpadding{

padding: 0px;
}



/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColEls #sidebar1 p" rule.
*/
.thrColEls #sidebar1 {
	position:relative;
 	float: left;
 	top: 27px;
 	width: 200px;
 	border-width: 1px;
 	border-color:#CCCCCC;
 	border-right-style:solid;
 	height: auto;
	margin: 0px; 
}
.thrColEls #sidebar2 {
	float: right; 
	width: 160px; /* since this element is floated, a width must be given */
	 /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 27px 0; /* top and bottom padding create visual space within this div */
	padding-right: 0px;
	top: 27px;
	height: auto;
	
	
}

.thrColEls #sidebar2_homepage {
	float: right; 
	width: 167px; /* since this element is floated, a width must be given */
	 /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 13px; /* top and bottom padding create visual space within this div */
	padding-right: 15px;
	padding-left: 5px;
	text-align:center;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	

}

.thrColEls #sidebar1 h3, .thrColEls #sidebar1 p, .thrColEls #sidebar2 p, .thrColEls #sidebar2 h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
height: auto;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.

.thrColEls #mainContent {
  margin: 27px 190px 0px 230px; 

} 

.thrColEls #mainContent-wide {
  margin: 27px 10px 0px 230px; 

} 
*/


.thrColEls #mainContent_homepage {
  margin: 27px 0px 0px 217px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
height: auto;
		
} 


/* Miscellaneous classes for reuse */
.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;
}

.indent {
padding-top: 6px;
}




div.col-header{
	
	margin: 0px 13px 5px 13px;
	height: 15px;
	padding: 0px;
	
	text-align: center;
	
	font-size:10px;
	padding-top: 3px;
	color:#FFFFFF;
	background: #085783;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: bold;
	position:relative;
	
}

div.col-header-small{
	top:20px;
	margin: 0px 20px 5px 2px; 
	height: 15px;
	padding: 0px;
	
	text-align: center;
	
	font-size:10px;
	padding-top: 3px;
	color:#FFFFFF;
	background: #085783;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: bold;
	
}

div.header-small
{
	top: 20px;
	margin: 0px 5px 5px 5px;
	
	padding: 0px;
	width: auto;
	text-align: left;
	font-weight: 900;
	font-size: 1em;
	color: #215A7C;
	font-family: Arial, Helvetica, sans-serif;
}


/* News items */

div.news-item {
	font-size: 11px;
	margin:5px 0px 5px 5px;
	padding: 8px;
	color:#414141;
}
div.news-header {
	font-weight:bold;
	color:#000000;
}

div.news-link {
	text-align:left;
}

/* Main photo */
div#main-photo {
	border-style:solid;
	border-color:#999999;
	border-width: 1px;
	padding: 5px 5px 5px 5px;	
	
}

div#photo-area {
	position:relative;
	right: 4px;
	width: 545px; /* 545px */
	height: 233px;	
	padding: 0px;
	float: left;
	padding-right: 0px;
	padding-bottom: 10px;
	
}

div.image-footer {
	position:relative;
	top: 0px;
	text-align: right;
	font-size: 9px;
	padding-right: 1px;
	float:none;
}




/* Breadcrumbs  */

/* Page Breadcrumbs */

div#breadcrumbs {
	font-size: 10px;
	margin-left:0px;
	font-family:Georgia, "Times New Roman", Times, serif;
	color: #085783;
		
}


/* Common styles used on all pages*/


/* Line Break */
div.dotted-line {
	border-top-style:dotted;
	border-top-color:#CCCCCC;
	border-top-width: 1px;
	margin-left: 10px;
	margin-right:10px;
}

/* Standard Positioning */
div.right {
	text-align:right;
}
div.left {
	text-align:left;
}
div.center {
	text-align:center;
}

/* Bold */
span.bold{
	font-weight:bold;
}

span.bold-black{
	font-weight:bold;
	color:#000000;
}

/* Bullet points for lists > */
.bullet-point {
	font-size: 9px;
	color:#663399;
	margin-left: 6px;
	padding: 0px;
}	

/* Bullet points for lists > */
.bullet-point2 {
	font-size: 9px;
	color: #663399;
}

/* Paragraph Indenting */ 
p.indent  {
	//padding: 1px 15px 3px 3px;	
	margin-top: 4px;
}
p.indent-small  {
	padding: 1px 15px 3px 5px;	
	margin-top: 4px;
}


div.indent-body  {

	padding-right: 10px;
	margin-top: 20px;
	margin-left:7px;
	margin-right:7px;
}

div.indent-left {

	padding-right: 10px;
	margin-left:20px;
	margin-right:7px;
	text-align: left;
}

/* Text Headers */
h1{
	
	margin: 1px 1px 1px 0px;
	padding: 3px 3px 5px 0px;
	
	height: auto;
	width:auto;
	font-weight:normal;
	text-align: left;
	font-size: 18px;
	color:#000000;
	font-family:Georgia, "Times New Roman", Times, serif;
}

h2{
	top:20px;
	margin: 1px 1px 0px 0px;
	padding: 20px 3px 0px 0px;
	
	height: 20px;
	
	width:auto;
	font-weight:normal;
	text-align: left;
	font-size: 18px;
	color:#000000;
	font-family:Georgia, "Times New Roman", Times, serif;
}

img.line-break{

vertical-align:top;  padding-top: 5px;
}

div.body-header{

	text-align: left;
	font-weight: bold;
	font-size:12px;
	font-family: Arial, Helvetica, sans-serif;
	color:#000000;	
	padding-bottom: 5px;
	padding-top: 5px;
}

/* Text Headers */
div.page-header-chap {
	top:20px;
	margin: 1px 1px 1px 0px;
	padding: 3px;
	padding-left: 0px;
	height: auto;
	width:auto;
	font-weight:bold;
	text-align: left;
	font-size: 18px;
	color:#003399;
	
}

div.admin-header {
	top:20px;
	margin: 1px 1px 1px 1px; 
	height: auto;
	padding: 3px;
	padding-left: 0px;
	padding-top: 3px;
	padding-bottom: 0px;
	text-align: left;
	font-weight:bold;
	font-size:12px;
	font-family: Arial, Helvetica, sans-serif;
	color:#000000;	
}


div.body-header-small{
top:20px;
	margin: 1px 1px 1px 1px; 
	height: 8px;
	padding: 0px;
	
	text-align: left;
	font-weight:bold;
	font-size:11px;
	
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#000000;
	
}
div.menu-header {
	top:20px;
	margin: 0px 0px 0px 0px; 
	height: 10px;
	padding: 3px;
	padding-left: 0px;
	padding-top: 3px;
	padding-bottom: 0px;
	text-align: left;
	font-weight:bold;
	font-size: 0.9em;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#000000;
}




ul.body-menu {
	list-style: none;
	margin-left: 20px;
	padding: 0px;
	margin-top: 10px;
}

ul.related-menu {

	font-size: 0.9em;
	line-height: 14pt;
	
	margin-left: 30px;
	padding:0px;
	list-style-image: url(../../images/common/bullets2.gif);
}

ul.left-nav{
	
	margin-top: 20px;
	margin-bottom: 20px;
	margin-right: 30px;
	padding-left: 20px;

	font-size: 0.9em;
	line-height: 14pt;
	
	margin-left: 30px;
	
	list-style-image: url(../../images/common/bullets2.gif);
}

ul.left-nav li{
padding-bottom: 3px;
}
/* Pages */

div.page{
	
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 30px;
	padding-right: 13px;
	margin: 0px;
	
}
div.page-current{
	width: 180px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 19px;
	padding-right: 13px;
	margin-left: 19px;
	margin-right: 13px;	
	margin: 0px;
	
}

/* Target Menu */

div.target-menu {
	line-height: 20px;
	padding-top:10px;
	padding-bottom: 16px;
	
}


ul.class="line-break" alt="break_line"-small {
	margin-top: 5px;
	margin-left: 15px;
	list-style:none;
	padding: 0px;

}

ul.class="line-break" alt="break_line" {
	list-style:none;
	list-style-image:url(../../images/common/bullets2.gif);
	margin-left: 15px;
	padding: 0px;
	margin-top: 2px;
	line-height: 1.7em;
	
}

ul.service-menu-arrow {
	list-style:none;
	list-style-image:url(../images/common/bullets2.gif);
	margin-left: 25px;
	padding: 0px;
	margin-top: 0px;
	
	
}


div.checkbox-container {
width: 300px;
height: auto;
position:relative;
float:left;
}

table.checkboxes {
height: auto;
width: 100%;
}

.error{text-align:left; vertical-align:middle; font-size:11px; font-weight:bold; color: red;}

div#errorDisplay{
}

div.text-field {
}

p {
margin-top: 5px;
}


/* page content admin section */

.page-title 
{
	width: 300px;
	height: 15px;
}

.right-option 
{
position: relative;
float: right;


}

div.searchBox {
height:auto;

float:right;
margin: 8px 5px 0px 5px;
font-size: 10px;
padding: 0px;


}

div.searchBoxTarget {
height:auto;

margin: 8px 5px 0px 5px;
font-size: 10px;
padding: 0px;


}

div.searchBox_pro {
height:auto;
float:right;
margin: 8px 5px 0px 5px;
font-size: 10px;
padding: 0px;


}


input#query {
font-size: 11px;
padding: 0px;
margin: 0px;
color:#1A50B8;
vertical-align: bottom;

}

input#submit{
padding: 0px;
margin: 0px;
font-size: 11px;
vertical-align: bottom;
}
.normal 
{
	font-weight:normal;
}

span.list-header {
	
	font-weight: 900;
	font-size: 0.9em;
}

ul#quick-links-menu{
	list-style:none;
	list-style-image:url(../images/common/bullets2.gif);
	margin-left: 20px;
	padding: 0px;
	margin-top: 2px;
	line-height: 1.7em;
	font-size:11px;
}

div.left-menu {
	color:#000000;
}

div#info-about-menu{
	color:#000000;
	font-size: 1em;
	line-height: 14pt;
	font-weight: 700;
	margin-left: 11px;
}

div#about-menu{
	color:#000000;
	line-height: 14pt;
	font-weight: bold;
	margin-left: 30px;

}
div#services-menu{
	color:#000000;
	line-height: 14pt;
	font-weight: bold;
	margin-left: 8px;


}
span#current-page{
	
}

div.sub-menu{
	color:#000000;
	font-size: 0.9em;
	line-height: 14pt;
	font-weight: 700;
	margin-left: 3px;
	margin-bottom: 10px;
}

div.related-menu{
	color:#000000;
	font-size: 0.9em;
	line-height: 14pt;
	
	margin-left: 3px;
	margin-bottom: 10px;
	
}

div#return-link {
	margin-left:auto;
	margin-right:auto;
	text-align:right;
	float:right;
}

span#search-title{
	font-size: 12px;
	font-weight: normal;
	color:#215A7C;

}

span#search-option{
	padding-right: 15px;
	padding: 0px 15px 0px 5px;
	color:#215A7C;
}

td.bb_menu{
	padding: 0px 10px 10px 20px;
}

.smallPrintRight{
	font-size: 9px; text-align:right;
}

/* Blackboard section */
.smallPrint{
	font-size: 9px; 
	text-align:center;
}

.smallPrintLeft{
	font-size: 11px; 
	font-weight:bold; 
	text-align:left;
}

td.cellCentered{
	text-align:center;
	vertical-align:middle;
}

td.imageFooter{
	font-family: Verdana, Arial, sans-serif;
	font-weight:bold; 
	font-size:9px;
	text-align: center; 
	color:#414141;
}


li.Steps{
	font-family: Verdana, Arial, sans-serif;
	font-size:12px;
}



td.indentTable{
	padding-left: 15px;
}


tr.title {
	background-color: #E2E2E2;
	height: 18px;
	vertical-align: top;
	
}


tr.even-row{
background-color: #f4f4f4;

}
table#key-dates{
	border:1px;
	border-style: solid;
	border-color: #E1E1E1;
	
	
}
table.admin-tables{
	border:1px;
	border-style: solid;
	border-color: #E1E1E1;
	font-size:11px;
	
}

td.indentCell {
 padding-left: 5px;
}



#adminLayout {
	width: 100%; 
	text-align: left; 
	border-width: 0px; 
	border-color:#000000; 
	border-style: none; 
	font-size:9px;
}



td.tableCellTitle{ 
	font-family: Verdana, Arial, sans-serif; 
	text-align:left; 
	font-size:12px; 
	font-weight:bold; 
	background-color: #f1f1f1; 
	border-style: none; 
	width: 50%;
}

td.layoutCells{ 
	font-family: Verdana, Arial, sans-serif; 
	text-align:left; 
	vertical-align:top;  
	width: 50%; 
	border-style:none;
}

td.adminPageLinks{
	font-family: Verdana, Arial, sans-serif;
	text-align:left;
	font-size:11px;
	list-style-type:circle;
	border-width: 1px;
	border-style:none;
	list-style-type: square;
}

input#submit {
	height:18px;
}

div.ok-box {
	text-align:right;
	width: 500px;
}



p.link-path{
	font-weight:normal;
	font-size:10px;
	height: auto;
}


ul.school-list{
	list-style:none;
	list-style-image:url(../images/common/bullets2.gif);
	margin-top: 2px;
	margin-left: 0px;
	padding: 0px;

}

div.subject-search {
	border: 1px solid #E1E1E1;
	background-color: #E4E4E4;
	padding: 10px;
	width: 450px;
}

table.subject-search{
 
}

tr.search{

	width: 400px;
}

span.field-name {

	font-size:11px; font-weight:bold;
}

tr.pro-cell{
	background:#f4f4f4;
}

#result_report_subject {
	text-align:center ;
	padding:3px;
	background-color:#e5ecf9; 
	font-weight: bold;
	margin-bottom:14px;
	width: 463px;
}

.costs {
	width: 100px;
	vertical-align: top;
}

ul.page-list
{
	list-style: none;
	margin-left: 5px;
	line-height: 20px;
	padding: 0px;
	
}

ol.page-list
{
	
	margin-left: 25px;
	line-height: 15px;
	padding: 0px;
	
}

ul.page-list-about
{
	list-style: none;
	margin-left: 20px;
	line-height: 20px;
	padding: 0px;
}
ul.list-no-style
{
	list-style: none;
	margin-left: 15px;
	line-height: 20px;
	padding: 0px;
}



ul.sub-menu
{
	list-style: none;
	margin-left: 15px;
	padding: 0px;
}



a.profile-more:link
{
	color: #FA6C15;
	text-decoration: none;
	font-size: 9px;
}
a.profile-more:visited
{
	color: #FA6C15;
	text-decoration: none;
	font-size: 9px;
}
a.profile-more:hover
{
	color: #FA6C15;
	text-decoration: underline;
	font-size: 9px;
}
a.profile-more:active
{
	color: #FA6C15;
	text-decoration: none;
	font-size: 9px;
}

a.profile-header:link
{
	color: #727272;
	text-decoration: none;
	font-size: 9px;
	font-weight: bold;
}
a.profile-header:visited
{
	color: #727272;
	text-decoration: none;
	font-size: 9px;
	font-weight: bold;
}
a.profile-header:hover
{
	color: #FA6C15;
	text-decoration: underline;
	font-size: 9px;
	font-weight: bold;
}
a.profile-header:active
{
	color: #727272;
	text-decoration: none;
	font-size: 9px;
	font-weight: bold;
}





div.profile
{
	margin: 0px;
	padding: 0px;
	text-align: left;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

div#profile-text
{
	font-size: 9px;
	text-align: left;
	font-style:italic;
	color: #828282;
}


div.profile-text-int
{
	list-style-type: none;
	font-size: 10px;
	width: auto;
	margin-top: 5px;
	margin-bottom: 15px;
	margin-left: 0px;
	margin-right: 0px;
	padding-left: 1px;
	padding-right: 0px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

div.image
{
	position: relative;
	float: right;
	padding: 4px;
	width: 219px;
	height: auto;
}



div.test
{
	width: 600px;
}
div#body-left-col
{
	position: relative;
	border-width: 1px;
	border-color: #CCCCCC;
}



div.search-box
{
	position: relative;
	float: right;
	width: 150px;
	height: 70px;
}


div.locations
{
}


/* Images */

div#pic1
{
	position: relative;
	float: right;
	padding: 2px;
	width: 230px;
	height: 280px;
}

div#div-pic2
{
	position: relative;
	float: right;
	padding: 2px;
	width: 170px;
	height: 144px;
	margin: 10px 2px 2px 2px;
}
img#pic2
{
	width: 170px;
	height: 144px;
}

div#div-pic3
{
	position: relative;
	float: right;
	padding: 2px;
	width: 250px;
	height: 347px;
	margin: 10px 2px 2px 2px;
}
img#pic3
{
	width: 250px;
	height: 347px;
}

div#map
{
	position: relative;
	float: right;
	padding: 2px;
	width: 340px;
}

/* campus */

div.list-container
{
	padding-top: 0px;
	margin-top: 0px;
	width: auto;
	font-size: 0.9em;
}

div.map-container
{
	padding-top: 0px;
	width: auto;
}

div#regions-container
{
	width: auto;
	height: auto;
}

span.bold
{
	font-weight: bold;
}

.search-option-font
{
color: #215A7C;
text-decoration:none;
font-size: 0.9em;
font-weight: bold;
}

/* Links for index page */
a.news-link:link { color:#FA6C15; text-decoration:none;}
a.news-link:visited { color:#FA6C15; text-decoration:none;}
a.news-link:hover { color:#FA6C15; text-decoration:underline; font-weight:bold;}
a.news-link:active { color:#FA6C15; text-decoration:none;}

a.whats-on:link { color:#FA6C15; text-decoration:none; font-size:11px;}
a.whats-on:visited { color:#FA6C15; text-decoration:none; font-size:11px;}
a.whats-on:hover { color:#FA6C15; text-decoration:underline; font-size:11px; font-weight:bold;}
a.whats-on:active { color:#FA6C15; text-decoration:none; font-size:11px;}

a.option:link { color: #215A7C; text-decoration:none; font-size: 12px; font-weight: normal;}
a.option:visited { color: #215A7C; text-decoration:none; font-size: 12px; font-weight:normal;}
a.option:hover { color:#FA6C15; text-decoration:underline;  font-size: 12px; font-weight: normal;}
a.option:active { color: #215A7C; text-decoration:none; font-size: 12px; font-weight:normal;}

a.programme-link:link { color:#414141; text-decoration:none;  font-size:11px; font-weight: bold;}
a.programme-link:visited { color:#414141; text-decoration:none;  font-size:11px;font-weight: bold;}
a.programme-link:hover { color:#FA6C15; text-decoration:underline;  font-size:11px; font-weight: bold;}
a.programme-link:active { color:#414141; text-decoration:none;  font-size:11px; font-weight: bold;}


a.read-more-prog:link { color:#FF0000; text-decoration:none;  font-size:11px; font-weight: normal;}
a.read-more-prog:visited { color:#FF0000; text-decoration:none;  font-size:11px;font-weight: normal;}
a.read-more-prog:hover { color:#FA6C15; text-decoration:underline;  font-size:11px; font-weight: normal;}
a.read-more-prog:active { color:#FF0000; text-decoration:none;  font-size:11px; font-weight: normal;}

a.option-small:link { color:#215A7C; text-decoration:none;  font-size:9px; font-weight: normal;}
a.option-small:visited { color:#215A7C; text-decoration:none;  font-size:9px; font-weight: normal;}
a.option-small:hover { color:#FA6C15; text-decoration:none;  font-size:9px; font-weight: normal;}
a.option-small:active { color:#215A7C; text-decoration:none;  font-size:9px; font-weight: normal;}



a.main-nav:link { color:#215A7C; text-decoration:none; font-size:12px; }
a.main-nav:visited { color:#215A7C; text-decoration:none; font-size:12px; }
a.main-nav:hover { color:#FA6C15; text-decoration:underline; font-size:12px;  }
a.main-nav:active { color:#215A7C; text-decoration:none; font-size:12px; }

a.target-nav:link { color:#085783; text-decoration:none; font-size:11px; font-family:Arial, Helvetica, sans-serif, "Times New Roman", Times, serif;}
a.target-nav:visited { color:#085783; text-decoration:none; font-size:11px; font-family:Arial, Helvetica, sans-serif, "Times New Roman", Times, serif; }
a.target-nav:hover { color:#FA6C15; text-decoration:underline; font-size:11px; font-family:Arial, Helvetica, sans-serif, "Times New Roman", Times, serif;  }
a.target-nav:active { color:#085783; text-decoration:none; font-size:11px; font-family:Arial, Helvetica, sans-serif, "Times New Roman", Times, serif; }

a.section-nav:link { color:#215A7C; text-decoration:underline; font-size:12px; font-weight:normal;}
a.section-nav:visited { color:#215A7C; text-decoration:underline; font-size:12px; font-weight:normal; }
a.section-nav:hover { color:#FA6C15; text-decoration:underline; font-size:12px; font-weight:normal;}
a.section-nav:active { color:#215A7C; text-decoration:underline; font-size:12px; font-weight:normal;}

a.in-text-links:link { color: #215A7C; text-decoration:underline;  font-size:12px; }
a.in-text-links:visited { color: #215A7C; text-decoration:underline; font-size:12px;  }
a.in-text-links:hover { color:#FA6C15; text-decoration:underline; font-size:12px;  }
a.in-text-links:active { color: #215A7C; text-decoration:underline; font-size:12px; }

a.in-text-link-bold:link { color: #215A7C; text-decoration:none; font-size: 0.9em; font-weight: bold;}
a.in-text-link-bold:visited { color: #215A7C; text-decoration:none; font-size: 0.9em; font-weight:bold;}
a.in-text-link-bold:hover { color:#FA6C15; text-decoration:underline;  font-size: 0.9em; font-weight: bold;}
a.in-text-link-bold:active { color: #215A7C; text-decoration:none; font-size: 0.9em; font-weight:bold;}

a.service-nav:link { color: #215A7C; text-decoration:none; font-size: 0.8em; font-weight: bold;}
a.service-nav:visited { color: #215A7C; text-decoration:none; font-size: 0.8em; font-weight:bold;}
a.service-nav:hover { color:#FA6C15; text-decoration:underline;  font-size: 0.8em; font-weight: bold;}
a.service-nav:active { color: #215A7C; text-decoration:none; font-size: 0.8em; font-weight:bold;}

a.related-links:link { color: #215A7C; text-decoration:none; font-size: 11px; font-weight: bold; text-align: left;}
a.related-links:visited { color: #215A7C; text-decoration:none; font-size: 11px; font-weight:bold; text-align: left;}
a.related-links:hover { color:#FA6C15; text-decoration:underline;  font-size: 11px; font-weight: 700; text-align: left;}
a.related-links:active { color: #215A7C; text-decoration:none; font-size: 11px; font-weight:bold; text-align: left;}

a.pro-nav:link { color: #215A7C; text-decoration:none; font-size: 0.9em; font-weight: normal;}
a.pro-nav:visited { color: #215A7C; text-decoration:none; font-size: 0.9em; font-weight:normal;}
a.pro-nav:hover { color:#FA6C15; text-decoration:underline;  font-size: 0.9em; font-weight: normal;}
a.pro-nav:active { color: #215A7C; text-decoration:none; font-size: 0.9em; font-weight:normal;}

a.target:link { color: #215A7C; text-decoration:none; font-size: 12px; font-weight: normal;}
a.target:visited { color: #215A7C; text-decoration:none; font-size: 12px; font-weight:normal;}
a.target:hover { color:#FA6C15; text-decoration:underline;  font-size: 12px; font-weight: normal;}
a.target:active { color: #215A7C; text-decoration:none; font-size: 12px; font-weight:normal;}

a.quicklink:link { color:#727272; text-decoration:none; }
a.quicklink:visited { color:#727272; text-decoration:none;}
a.quicklink:hover { color:#FA6C15; text-decoration:underline; }
a.quicklink:active { color:#727272; text-decoration:none;}

a.back-to-top:link { color:#215A7C; text-decoration:none;}
a.back-to-top:visited { color:#215A7C; text-decoration:none;}
a.back-to-top:hover { color:#FA6C15; text-decoration:underline; }
a.back-to-top:active { color:#215A7C; text-decoration:none;}

a.bottom-menu-link:link { color:#727272; text-decoration:none; font-weight: bold;}
a.bottom-menu-link:visited { color:#727272; text-decoration:none; font-weight: bold;}
a.bottom-menu-link:hover { color:#FA6C15; text-decoration:underline; font-weight: bold;}
a.bottom-menu-link:active { color:#727272; text-decoration:none; font-weight: bold;}

a.tags:link { color: #215A7C; text-decoration:none; font-size: 9px; font-weight: bold; text-align: right;}
a.tags:visited { color: #215A7C; text-decoration:none; font-size: 9px; font-weight:bold; text-align: right;}
a.tags:hover { color:#FA6C15; text-decoration:underline;  font-size: 9px; font-weight: bold; text-align: right;}
a.tags:active { color: #215A7C; text-decoration:none; font-size: 9px; font-weight:bold; text-align: right;}

a.breadcrumbs-link:link {font-family: Verdana, Arial, sans-serif;color:#085783; font-size:10px; text-decoration:underline;  font-family:Georgia, "Times New Roman", Times, serif; }
a.breadcrumbs-link:visited {font-family: Verdana, Arial, sans-serif;color:#085783; font-size:10px; text-decoration:underline;  font-family:Georgia, "Times New Roman", Times, serif;}
a.breadcrumbs-link:hover {font-family: Verdana, Arial, sans-serif; color:#FA6C15;  font-size:10px; text-decoration:underline;   font-family:Georgia, "Times New Roman", Times, serif;}	
a.breadcrumbs-link:active { font-family: Verdana, Arial, sans-serif;color:#085783; text-decoration:underline; font-size:10px;  font-family:Georgia, "Times New Roman", Times, serif;}

/* Homepage */
/* Text */
div#welcome-text {
	position:relative;
	top: 0px;
	height:auto;
	padding: 0px;
	margin: 0px 0px 0px 0px;
	text-align:justify;	
	padding-right: 5px;
width: 345px;

	
}

html > .thrColEls #welcome-text {
	
width: auto;
min-width: 345px;	
max-width:540px;
	
}

.extras{
float: left;
text-align:center; 
margin-right: 20px;
margin-top: 15px;
}

.extras img{
  background-color: #fff;
  border: 1px solid #a9a9a9;
  padding: 2px;
  }

p#welcome-header {
	font-size: 19px;
	text-align:center;
	color:#000000;
}
p#whats-on-header {
	font-size: 19px;
	color:#000000;
}

.right-menu{
text-align: left;
}

/* 08 */
.print {
text-align: left;
width: 50%;
}

.faq {
padding-bottom:5px;
}

div.infoBar
{


	background-color: #ffc;
	width: 70%;
	border-width: 1px;
	border-color: Black;
	border-style: solid;
	padding: 4px;
	
}