@charset "utf-8";
/* CSS Document */

/*****======= REMEBER TO CHECK OTHER STYLE SHEETS AND HTML CODE FOR IE FIXES ========*****/

body  {
	font : 75%/160% Verdana, Arial, Helvetica, sans-serif;
	background:url(_img/mainBG.jpg) repeat-x;
	background-color: #ffffff;
	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;
}
/* this will only work in IE6	*/
* html body{font-size:12px;}
/* END	*/

p, h1, h2, h3, h4, h5, h6, a, li, ul, input{
	padding:0;
	margin:0;
}



/* 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;
}

/*********** Links ***********/
a{outline:none;}

a, a:link, a:visited{
	color: #6a3546;
	text-decoration:underline;
} 
a:hover, a:active{
	color: #ff7400;
	text-decoration:underline;
}

/*********** fonts ***********/

h1{
	color:#000; 
	font-family:Arial, Helvetica, sans-serif;
	font-size:240%;
	padding-bottom:10px;
	line-height:1.2em;
	}

.red_txt{color:#CC3333;} /* keep as red for warnings */
.lrg_txt{font-size:18px;}
.med_txt{font-size:16px;}
.sml_txt{font-size:10px;}
.coloured_txt{color:#ff7400;}
.coloured_txt2{color:#76c341;}
.coloured_txt3{color:#fff;font-weight:bold;}

/*********** Overall Styles ***********/
/* 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.
*/
#container { 
	width: 950px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto 15px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #6d6f72;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/*********** Header Outer ***********/
#headerOuter {  
	width:950px;
	margin:10px auto 0 auto;
	overflow:hidden;
} 

#headerOuter .left{  
	width:400px;
	float:left;
}

#headerOuter .right{  
	width:400px;
	float:right;
	text-align:right;
} 

#headerOuter h1{  
	width:303px;
	height:91px;
	background:url(_img/logo.gif) no-repeat;
}  
#headerOuter h1 a{  
	width:303px;
	height:91px;
	display:block;
} 
#headerOuter h1 span{  
	display: none;
} 
#headerOuter .right{ 
	color:#334e63;
	padding:30px 0 0 0;
	font-size:17px;
	}
#headerOuter .right .colouredTxt{  
	color:#76c341;
}  


/*********** Header ***********/
#header {  
	width:950px;
	height:175px;
	padding:3px 0 0 0;
} 


/*********** Left Side Bar ***********/
#leftsidebar {
	float: left; 
	width: 180px; /* since this element is floated, a width must be given */
	margin: 15px 30px 0 0;
}

#leftsidebar .meetnow p{
	width:96px;
	height:63px;
	background:url(_img/meet-now.png) no-repeat;
	}

#leftsidebar .parentCompany p{
	width:200px;
	height:288px;
	background:url(_img/logo-mso.gif) no-repeat;
	}
#leftsidebar .parentCompany a{
	width:200px;
	height:288px;
	display:block;
	}
#leftsidebar .parentCompany p span{
	display:none;
	}

/* Main menu */
#navList{
	list-style:none;
	margin: 0 0 25px 10px;
}
#navList li{
	border-bottom: 1px dashed #6592b6;
	padding:6px 0;

}
#navList a{
	color: #334e63;
	text-decoration:none; 
	margin: 0 0 0 5px;
	padding: 0 0 0 5px;
}
#navList a:hover{
	color: #616161;
	text-decoration:underline; 
}

/*********** Header / Footer Menu / navigation ***********/
.menuContainer{
	overflow: hidden;
	background-color:#ff7400;
	padding:15px 0;
	width:950px;
}
.menuList{
	list-style-type: none;
	margin: 0 auto;
	padding: 0;
	width:930px;
}
.menuList li{
	border-left: 1px solid #fff;
	float: left;
	line-height: 1.1em;
	padding: 0 .5em 0 .5em;
}
.menuList li.home{
	border: none;
}
.menuList a, .menuList a:link, .menuList a:visited{
	color:#fff;
	text-decoration:none;
}
.menuList a:hover, .menuList a:active{
	color:#000;
	text-decoration:underline;
}


/*********** Main Content ***********/
/* 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.
*/
#mainContent {
	width:700px;
	margin: 20px 0 10px 0; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	overflow:hidden;
	min-height:770px;
} 

#mainContent p{
	
	padding:5px 0 10px 0;
}

#mainContent table{
	margin:0 0 15px 0;
}

#mainContent h4{
	color:#FF7400;
	margin:0 0 5px 0;
}

#mainContent ul{
	margin: 0 0 15px 25px;
} 
#mainContent li{
	margin: 5px 0;
} 

#mainContent img{
	margin:15px 0 15px 15px;
}

.left{
	float:left;
	width:45%;
	overflow:hidden;
} 
.right{
	float:right;
	width:55%;
	overflow:hidden;
} 

/* Home */
ul#HomeFeatures{
	width:700px;
	display:block;
	overflow:hidden;
	margin:0;
}
ul#HomeFeatures li{
	list-style:none;
	width:224px;
	margin:0 14px 14px 0;
	float:left;
}
ul#HomeFeatures a{
	padding:0;
	display:block;
	background-color:#f6f6f6;
	background-repeat:no-repeat;
	background-position:0px -150px;
	text-decoration:none;
	border:7px #f6f6f6 solid;
}
ul#HomeFeatures a span{
	font-size:12px;
	background:#f6f6f6;
	display:block;
	padding:5px 0 0 0;
}
ul#HomeFeatures a em{
	font-style:normal;
	font-size:22px;
	display:block;
	visibility:hidden;
	font-weight:bold;
	height:90px;
	margin:0 0 0 0;
	padding:50px 5px 5px 5px;
	color:#ffffff;
}

ul#HomeFeatures a em sup{
	display:block;
	font-size:12px;
	font-weight:normal;
}

ul#HomeFeatures a:hover{
	border-color:#eeeeee;
	background-position:0px 0px;
}

ul#HomeFeatures a:hover span{
	background-color:#eeeeee;
}

ul#HomeFeatures a:hover em{
	visibility:visible;
}


ul#HomeFeatures li#l3,
ul#HomeFeatures li#l6{
	margin:0 0 14px 0;
}

ul#HomeFeatures li#l5 a em{
	font-size:18px;
}

ul#HomeFeatures li#l1 a{background-image:url("_img/l1.jpg");}
ul#HomeFeatures li#l2 a{background-image:url("_img/l2.jpg");}
ul#HomeFeatures li#l3 a{background-image:url("_img/l3.jpg");}
ul#HomeFeatures li#l4 a{background-image:url("_img/l4.jpg");}
ul#HomeFeatures li#l5 a{background-image:url("_img/l5.jpg");}
ul#HomeFeatures li#l6 a{background-image:url("_img/l6.jpg");}

/*********** Contact Page - Forms ***********/
.contact form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	  margin: 0;
	  padding: 0;
	  min-width: 250px;
	  max-width: 390px;
	  width: 380px; 
}

.contact form fieldset {
	  clear: both;
	  border-color: #ccc;
	  border-width: 1px;
	  border-style: solid;
	  padding: 10px;        /* padding in fieldset support spotty in IE */
	  margin: 10px 0;
}

.contact form fieldset legend {
	color:#76c341;
	font-weight:bold;
	font-variant:small-caps;
	font-size:110%;
}

.contact form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 110px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

.contact form input, form textarea, form select {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of label aligns textarea better in IE */
	padding:2px;
}

.contact form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

.contact textarea { overflow: auto; }

.contact form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

/* Google Directions */
#directionsForm form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  margin: 10px 0 1em 0;
  padding: 0;
}

#directionsForm  form fieldset {
  padding: 10px; 
  margin: 0;
}

#directionsForm form label { 
	display: block;
	float: left; 
	width: 180px; 
	padding: 0; 
	margin: 0; 
	text-align: left; 
}


/*********** Footer ***********/
#footer { 
	width:950px;
	background-color:#0c469a;
	overflow:hidden;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5px 20px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-weight:bold;
	color:#fff;
}
#footer a, #footer a:link, #footer a:visited {
	color:#FFFFFF;
	text-decoration:none;
}
#footer a:hover, #footer a:active {
	color:#3096d0;
}


/*********** Outer Footer ***********/
#footerOuter{
	overflow:hidden;
	width:920px;
	padding-top:0.5em;
	margin: 0 auto 10px auto;
}
/** Outer footer menu **/
#footerMenu{
	overflow: hidden;
	width:920px;
	margin:0 0 20px 0;
}
#footerMenu .left{
	float:left;
	width:400px;
}
#footerMenu .right{
	float:right;
	width:220px;
}
#footerMenuList{
	list-style-type: none;
	margin: 0 auto;
	padding: 0;
}
#footerMenuList li{
	border-left: 1px solid #1b81cd;
	float: left;
	line-height: 1.1em;
	padding: 0 .5em 0 .5em;
}
#footerMenuList li.home{
	border: none;
}
#footerMenuList a, #footerMenuList a:link, #footerMenuList a:visited{
	color:#000;
	text-decoration:none;
	font-size:11px;
}
#footerMenuList a:hover, #footerMenuList a:active{
	color:#ff7400;
	text-decoration:underline;
}

/* Creators website info */
#w3c{
	float:left;
	text-align:left;
}
#ourDetails{
	float:right;
	text-align:right;
}
#ourDetails, #w3c{
	font-size:90%;
	color: #999; 
}
#ourDetails a, #w3c a{
	font-size:90%;
	color: #999;
	text-decoration: none; 
}
#ourDetails a:hover, #w3c a:hover{
	font-size:90%;
	color: #999;
	text-decoration: underline; 
}





