@charset "utf-8";
/* CSS Document */
* /*Set's border, padding and margin to 0 for all values*/
{

}
body, html {
padding: 0;
margin: 0;
border: 0;
color: #000; 
font-family: Arial, Tahoma, sans-serif;
/*height: 100%;*/
overflow-x: hidden;
}
body {
font-size: 12px;
min-width: 760px; /* Don't work in IE */
}
p {
padding: 7px 0 7px 0;
}
a {
color: #000099;
}
a:hover{
color: #0000FF;
text-decoration: none;
}
h1, h2, h3 {
font-weight: bold;
padding-bottom: 5px;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.4em;
}
h3 {
font-size: 1.3em;
}
h1 a, #header h2{
color: #fff;
}
.clear { clear: both; }
#mainContainer {
min-height: 100%;

}
* html #mainContainer {
height: 100%; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
background: #414042;
height: 80px;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 165px; /*** Same width as margin-left for the float-wrap div ***/
padding-right: 245px; /*** Our right column width ***/
}
.inner {
width: 100%;
padding-bottom: 45px; /*** Padding-bottom value is the same value as the total height of the footer ***/
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
float: left;
width: 100%;
margin-left: -165px; /*** Same length as .outer padding-left but with negative value ***/
}
#content {
	float: right;
	margin-right: -165px; /*** Same length as .outer padding-left but with negative value ***/
	width: 100%;
	position: relative; /*** IE needs this  ***/
	padding-right: 10px;
}
.contentWrap{
	padding-top: 30px;
	padding-right: 40px;
	padding-bottom: 5px;
	padding-left: 5px;
    width: 540px;
}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 35px;
}
.contentWrap li {
padding-bottom: 2px;
}
/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
	float: left;
	width: 100px;
	position: relative; /*** IE needs this  ***/
	padding-top: 30px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 0px;
}
#left ul {
list-style: none;
padding-bottom: 4px;
}
#left li {
padding-bottom: 2px;
}

/*************************
RIGHT COLUMN
**************************/
#right {
	float: right;
	width: 240px;
	position: relative; /*** IE needs this  ***/
	margin-right: -245px; /** This negative margin-right value is the same as the right column width (width + padding). ***/
	position: relative; /*** IE needs this  ***/
	padding-top: 30px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}

#right ul {
list-style: none;
padding-bottom: 4px;
}
#right li {
padding-bottom: 2px;
}

#right_blog {
	float: right;
	width: 240px;
	position: relative; /*** IE needs this  ***/
/* 	margin-right: -245px;  */
	position: relative; /*** IE needs this  ***/
	padding-top: 30px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}

#right_blog ul {
list-style: none;
padding-bottom: 4px;
}
#right_blog li {
padding-bottom: 2px;
}


/**************************
FOOTER
**************************/
#footer {
height: 45px; /*** The drawback with this solution is that the height of the footer can't have a flexible height. If you add so much content to the footer that it extends 45px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
margin-top: -45px; /*** Sum of the height and padding etc to prevent vertical scrolling ***/
text-align: center;
color: #fff;
background: #414042;
}
#footer p {
clear: both;
}
/**************************
EXTRA CSS
**************************/
#topmenudiv {
	text-align: left;
	vertical-align: middle;
	float: left;
	height: 80px;
	font-family: helvetica;
	margin-left:-10px;
}
.topmenutext {
	font-family: helvetica;
	font-size: 11px;
	color: #bcafa7;
}
#divlogo {
	float: right;
	height: 80px;
	overflow: hidden;
	/*width: 265px;*/
        margin-top:5px;
}
.MenuLargeHeading {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	color: #382d24;
	font-weight: 100;
}
.MenuLargeItem {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	color: #bcafa7;
	line-height: 21px;
}
.MenuLargeItem a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	color: #A7A9AC;
	line-height: 21px;
}
.MenuLargeItem a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	color: #A7A9AC;
	line-height: 21px;
}
.MenuLargeItem a:active {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	color: #A7A9AC;
	line-height: 21px;
}
.MenuLargeItem a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	color: #414042;
	line-height: 21px;
}
hr {
	color: #bcafa7;
	background-color: #A7A9AC;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: 1px;
    margin-top: 4px;
    margin-bottom: 8px;
}

.blog-container {
width:700px;
float:left;
}

.blog_out {
padding:20px  0 0 0;
}

.form_links .jumpmenu {
width:160px !important;
}

.contact_better {
float:left;
width:190px;
}

.enquiry_form {
float:right;
}

.video-better img {
width:540px;
}
