@charset "utf-8";
/* CSS Document */

body {
	font: 100% 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 */

}

img
{
border:none;
padding-left:10px;
padding-right:10px;
}

.headerbar
{
background:url("images/headerbar.jpg");
width:920px;
height:27px;
padding:5px;
}

.maincontentbox
{
background:url("images/whiteback.jpg");
width:930px;
top:25px;
}

.maintextbox
{
width:930px;
height:500px;
padding:10px;
border:thin;
border-color:#000000;
border-style:solid;
}

.oneColFixCtrHdr #container {
	width: 930px;  /* 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 */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
}
.oneColFixCtrHdr #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: 2px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
position:relative;
	top:0px;
	padding:20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background:url("images/whiteback.jpg");
	}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:url("images/footer_image.jpg");
	width:910px;
	height:163px;
	margin:auto;

	
}
.oneColFixCtrHdr #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.style3 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size:13px;
}

H1
{
font-family:Arial, Helvetica, sans-serif;
font-weight:bold;
font-size:18px;
color:#000000;
margin-top:0px;
padding-top:0px;
}

.style4 {font-family: Arial, Helvetica, sans-serif}
.style6 {font-family: Arial, Helvetica, sans-serif; font-size: 9px; }
.style7 {font-size: 10px; color:#FFFFFF;
}



/**********************
/**    BUTTONS      ***
/**********************/

.homebutton
{
display:block;
position:relative;
top:5px;
left:50px;
background:url("images/homebutton.png");
width:48px;
Height:15px;
}

.homebutton:hover
{ 
  background-position: -52px;
}

.cataloguebutton
{
display:block;
position:relative;
top:-10px;
left:215px;
background:url("images/cataloguebutton.png");
width:94px;
Height:20px;
}

.cataloguebutton:hover
{ 
  background-position: -95px;
}

.enquiriesbutton
{
display:block;
position:relative;
top:-44px;
left:800px;
background:url("images/enquiriesbutton.png");
background-repeat:no-repeat;
width:75px;
Height:20px;
}

.enquiriesbutton:hover
{ 
  background-position: -74px;
}

.historybutton
{
display:block;
position:relative;
top:-64px;
left:620px;
background:url("images/historybutton.png");
background-repeat:no-repeat;
width:57px;
Height:20px;
}

.historybutton:hover
{ 
  background-position: -57px;
}


.productsbutton
{
display:block;
position:relative;
top:-29px;
left:420px;
background:url("images/productsbutton.png");
background-repeat:no-repeat;
width:74px;
Height:15px;
}

.productsbutton:hover
{ 
  background-position: -76px;
}


A:link {font-family:Arial; font-size: 13px; color:#990000;text-decoration:underline; font-weight:normal; border:none; }
A:visited {font-family: Arial; font-size: 13px; color:#990000;text-decoration: underline; font-weight:normal;  border:none;}
A:active {font-family: Arial; font-size: 13px; color:#990000;text-decoration: underline; font-weight:normal;  border:none;}
A:hover {font-family: Arial; font-size: 13px; color:#000033;text-decoration:underline; font-weight:normal; border:none;}

A.footer:link {font-family:Arial; font-size: 11px; color:#FFFFFF;text-decoration:underline; font-weight:normal; border:none; }
A.footer:visited {font-family: Arial; font-size: 11px; color:#FFFFFF;text-decoration: underline; font-weight:normal;  border:none;}
A.footer:active {font-family: Arial; font-size: 11px; color:#FFFFFF;text-decoration: underline; font-weight:normal;  border:none;}
A.footer:hover {font-family: Arial; font-size: 11px; color:#FFCC00;text-decoration:underline; font-weight:normal; border:none;}



/*MODAL DIALOG CSS*/

 
#dialog-overlay {

	/* set it to fill the whil screen */
	width:100%; 
	height:100%;
	
	/* transparency for different browsers */
	filter:alpha(opacity=50); 
	-moz-opacity:0.5; 
	-khtml-opacity: 0.5; 
	opacity: 0.5; 
	background:#000; 

	/* make sure it appear behind the dialog box but above everything else */
	position:absolute; 
	top:0; left:0; 
	z-index:3000; 

	/* hide it by default */
	display:none;
}


#dialog-box {
	
	/* css3 drop shadow */
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	
	/* css3 border radius */
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
	
	background:#eee;
	/* styling of the dialog box, i have a fixed dimension for this demo */ 
	width:470px; 
	
	/* make sure it has the highest z-index */
	position:absolute; 
	z-index:5000; 

	/* hide it by default */
	display:none;
}

#dialog-box .dialog-content {
	/* style the content */
	text-align:left; 
	padding:10px; 
	margin:13px;
	color:#666; 
	font-family:arial;
	font-size:11px; 
}

a.button {
	/* styles for button */
	margin:10px auto 0 auto;
	text-align:center;
	background-color: #e33100;
	display: block;
	width:50px;
	padding: 5px 10px 6px;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	line-height: 1;
	
	/* css3 implementation :) */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
	border-bottom: 1px solid rgba(0,0,0,0.25);
	position: relative;
	cursor: pointer;
	
}

a.button:hover {
	background-color: #c33100;	
}

/* extra styling */
#dialog-box .dialog-content p {
	font-weight:700; margin:0;
}

#dialog-box .dialog-content ul {
	margin:10px 0 10px 20px; 
	padding:0; 
	height:50px;
}
