@charset "UTF-8";
body  {
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	background-color: #5D5F67;
}
#nav_list {
	float: right;
	width: 225px;
	padding-top: 5px;
	padding-right: 15px;
	padding-left: 15px;
	margin-top: 15px;
	margin-bottom: 15px;
}
#nav_list li  {
	width: 100%;
	list-style-type: none;
	margin-bottom: 0.4em;
}
#nav_list li a    {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	color: #FFF;
	text-decoration: none;
	display: block;
	background-image: url(../images/nav_bg.png);
	background-repeat: repeat-x;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 10px;
}
#nav_list a:hover {
	background-image: url(../images/nav_bg_hover.png);
	background-repeat: repeat-x;
	text-decoration: underline;
}
#navigation {
	background-image: url(../images/navigation_new1.png);
	background-repeat: no-repeat;
	height: 300px;
}
#navigation_about {
	height: 300px;
	background-image: url(../images/navigation_shower.png);
	background-repeat: no-repeat;
}
#navigation_shower {
	height: 300px;
	background-image: url(../images/navigation_new2.png);
	background-repeat: no-repeat;
}
.bold_text {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	color: #ACDCE9;
}
#header {
	margin-top: 0px;
}
.twoColFixRtHdr #container {
	width: 950px;
	margin: 0 auto;
	text-align: left;
} 
.twoColFixRtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent h1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
	font-weight: normal;
	color: #ACDCE9;
	padding-top: 10px;
	padding-bottom: 10px;
}
#mainContent_suppliers p {
	font-family: Verdana, Geneva, sans-serif;
	color: #FFF;
	font-size: small;
	font-weight: normal;
}
#mainContent_suppliers h2 {
	color: #ACDCE9;
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
	font-weight: normal;
}
#mainContent_suppliers p a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	font-weight: normal;
	color: #FFF;
	text-decoration: none;
}
#mainContent_suppliers p a:hover {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	font-weight: normal;
	text-decoration: underline;
	color: #ACDCE9;
}
#mainContent p {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	font-weight: normal;
	color: #FFF;
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px;
	margin-right: 20px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
}
#sidebar1 img {
	padding-bottom: 5px;
}
.sidebar_gallery {
	padding-bottom: 0px;
}
#sidebar1 p {
	font-family: Verdana, Geneva, sans-serif;
	font-size: x-small;
	color: #FFF;
}
#sidebar1 p a {
	text-decoration: none;
	font-family: Verdana, Geneva, sans-serif;
	font-size: x-small;
	color: #FFF;
}
#sidebar1 p a:hover {
	color: #ACDCE9;
	text-decoration: underline;
}
#sidebar1 p img {
	padding-top: 15px;
	margin-bottom: 20px;
}
.twoColFixRtHdr #mainContent {
	margin-right: 260px;
	margin-bottom: 0;
	margin-left: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#mainContent_suppliers {
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 260px;
	padding-bottom: 0px;
	padding-right: 20px;
	padding-left: 20px;
}
#mainContent_suppliers h1 {
	color: #ACDCE9;
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
	font-weight: normal;
	padding-top: 10px;
	padding-bottom: 10px;
}
.twoColFixRtHdr #footer {
	background-color: #239AC5;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.twoColFixRtHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Verdana, Geneva, sans-serif;
	font-size: x-small;
	font-weight: normal;
	color: #FFF;
	text-align: center;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}
#footer p a:hover {
	font-family: Verdana, Geneva, sans-serif;
	font-size: x-small;
	text-decoration: underline;
}
#footer p a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: x-small;
	color: #FFF;
	text-decoration: none;
}
.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;
}
#mainContent p a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	color: #ACDCE9;
	text-decoration: none;
}
#mainContent p a:hover {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	font-weight: normal;
	color: #ACDCE9;
	text-decoration: underline;
}
#navigation_pool {
	height: 300px;
	background-image: url(../images/navigation_pool.png);
	background-repeat: no-repeat;
}
#navigation_balustrades {
	background-image: url(../images/navigation_balustrades.png);
	background-repeat: no-repeat;
	height: 300px;
}
#navigation_splashbacks {
	background-image: url(../images/navigation_splashbacks.png);
	background-repeat: no-repeat;
	height: 300px;
}
#navigation_suppliers {
	background-image: url(../images/navigation_supplier.png);
	background-repeat: no-repeat;
	height: 300px;
}
#navigation_glazing {
	background-image: url(../images/navigation_glazing.png);
	background-repeat: no-repeat;
	height: 300px;
}
#navigation_disclaimer {
	background-image: url(../images/navigation_disclaimer.png);
	background-repeat: no-repeat;
	height: 300px;
}
.disclaimer_smalltext {
	font-family: Verdana, Geneva, sans-serif;
	font-size: x-small;
	font-weight: normal;
	color: #FFF;
}
#contact_map {
	width: 270px;
	float: right;
}
#navigation_gallery {
	background-image: url(../images/navigation_gallery.png);
	background-repeat: no-repeat;
	height: 300px;
}
#mainContent h2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
	color: #ACDCE9;
	font-weight: normal;
}
#mainContent img {
	padding-top: 15px;
	padding-right: 45px;
	padding-bottom: 15px;
}
#mainContent form {
	font-family: Verdana, Geneva, sans-serif;
	color: #FFF;
	font-size: small;
}
#mainContent form input {
}
.supplier_link {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	color: #FFF;
}
#mainContent img {
	margin: 0px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 20px;
}
.main_centre_img {
	display: block;
	margin-right: auto;
	margin-left: auto;
}
