/* Thanks Colleen Cox for the CSS vertical-align hack - http://www.d-p.com/Internet-Development-Blog/article/CSS-and-Vertical-Alignment.cfm */



/*layout*/

html, body
{
margin: 0; //zero out margins & padding to prevent unnecessary vertical scroll
padding: 0;
height: 100%;
font-family: verdana, arial, helvetica, sans-serif;

}

.container_out
{
width: 100%;
height: 100%;
display: table;
/*IE fix*/
#position: relative;           
}

.container_in
{
margin: 0 auto;
width: 100%;
display: table-cell;
vertical-align: middle;  
/*IE fix*/
#position: absolute;  
#top: 50%; 
#left: -50%;     
}

.box
{
margin: 0 auto;
display: block;
width: 700px;
border: 1px solid #C4C5C7;
min-height: 430px;
background-color:#ccc;
/*IE fix*/
#position: relative;  
#top: -50%; 
#left: 50%;
}


* html .box
{
/*apply to IE6 but not IE7*/
height: 430px;
}


.box_home
{
background-image: url(img/bg_home.jpg);
}

.box_services
{
background-image: url(img/bg_services.jpg)
}

.box_about
{
background-image: url(img/bg_about.jpg)
}

.box_enquiries
{
background-image: url(img/bg_enquiries.jpg)
}

.box_contact
{
background-image: url(img/bg_contact.jpg)
}

.box_support
{
background-image: url(img/bg_support.jpg);
}


.header
{width: 700px;
height: 95px;
}


.column_right
{
float: right;
position: relative;
top: 10px
bottom: 0px;
width: 450px;
height: 335px;
overflow: auto;
}

.column_right table
{
border-spacing: 5px;
margin: 5px 5px 0 -4px;
color: #555;
font-size: 10pt;
}

.content
{
padding-bottom: 10px;
padding-right: 10px;
}


.registration
{
position: absolute;
bottom: 10px;
right: 10px;
left: 10px;
}

.enquiry
{
width: 260px;
line-height: 160%;
}

/*nav buttons*/

.nav
{
}

.nav table
{
float: left;
padding: 5px 0 0 5px;
border-spacing: 5px;
font-size: 10pt;
text-align: right;
/*IE fix*/
#position: relative;
#left: 5px;
}


.navbut a
{
width: 100px;
height: 100px;
display: block;
color: #666;
text-decoration: none;
background-image: url(img/but.gif);
background-position: -100px 0;
background-repeat: no-repeat;
/*IE fix*/
#margin: 4px 0 0 4px;
}


.navbut a:hover
{
color: #555;
background-image: url(img/but.gif);
background-position: -200px 0;
background-repeat: no-repeat;
}


.navbut a:active
{
color: #333;
background-image: url(img/but.gif);
background-position: -300px 0;
background-repeat: no-repeat;
}


.nav_now
{
width: 100px;
height: 100px;
float: left;
display: block;
background-image: url(img/but.gif);
background-repeat: no-repeat;
color: #555;
/*IE fix*/
#margin: 4px 0 0 4px;

}


.align
{
vertical-align: -90px;
padding-right: 10px;
/*IE fix*/
#vertical-align: -610%;
#padding-right: 9px;
}

.nav P
{
text-align: right;
}


.home_now
{
width: 100px;
height: 100px;
float: left;
display: block;
background-image: url(img/but_home.gif);
background-repeat: no-repeat;
/*IE fix*/
#margin: 4px 0 0 4px;
}


.home a
{
width: 100px;
height: 100px;
float: left;
display: block;
background-image: url(img/but_home.gif);
background-repeat: no-repeat;
/*IE fix*/
#margin: 4px 0 0 4px;
}

.home a:hover
{
background-image: url(img/but_home.gif);
background-repeat: no-repeat;
background-position: -100px 0;
/*IE fix*/
#margin: 4px 0 0 4px;
}





/*text, font*/

h2
{
margin-top: 8px;
font-size: 25px;
color: #E8E8E8;
font-weight: bold;
}

P
{
margin-top: 5px;
line-height: 180%;
color: white;
font-size: 10pt;
margin-right: 10px;
}


/*text*/

.textbold
{
font-weight: bold;
}

.textyellow
{
color: #FC3;
}

.textdark
{
color: #555555;
}

.textgrey, .textgrey a
{
color: #777777;
}

.textlight
{
color: #E8E8E8;
}

.textwhite, .textwhite a
{
color: white;
}

.textlink, .textlink a
{
text-decoration: none;
color: inherit;
}

.textsmall
{
font-size: 7.5pt;
}