﻿/* GENERAL STYLES */

body 
{
   background-color: #ffffff;
   margin: 0; 
   text-align:center; /* IE fix */
}

/* fonts and colours */

body, p, td
{
    color: #000000; 
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9pt;
}

li
{
  list-style-image :url(../images/orangebullet.png)  
}

a
{
    color: #FF6300;
}

a:visited
{
    color: Purple;
}

a img
{
    border-width: 0px;
}

#page
{
	margin:0px auto;
    text-align:left; /* IE fix */
    width: 770px;
}

#hero
{
    height: 100px;
    background: #ffffff url(../images/catchlogo.gif) no-repeat bottom left;
    margin-bottom: 15px;
}

/* nav */

#topnav
{
    background-color:#FE6400;
    margin-bottom: 10px;
}



/* 
inline-block doesn't work on FF, and on IE only for natively inline elements.
-moz-inline-stack only works on FF, but you need to have an inner element with display:block.
*/
#topnav span
{
    
    display:inline-block;
    margin: 0;  
    padding: 0;
    font-weight: bold; 
    font-size:10pt;
    border-right: solid 1px #ffffff;
    width: 94px;
}

#topnav span span,
#topnav span a
{
    color: #ffffff;
    text-align: center;
    display: block;
    padding-top: 4px;
    padding-bottom: 2px;
    height: 20px;
}

#bottomnav
{
    background-color:#313131;
    margin-top: 50px;
    color: #ffffff;
    height: 26px;
    padding-top: 4px;
    padding-left: 15px;
}

#bottomnav span
{
    padding-bottom: 2px;
    padding-left: 5px;
    padding-right: 5px;
}

#bottomnav span span,
#bottomnav span a
{
    font-size:8pt;
    font-weight:normal;
    color: #ffffff;
}


/* main body */

#leftsection
{
    float: left;
}

#rightsection
{
    float: left;
}

#mainWideLeftNarrowRight #leftsection
{
    border-left: solid 35px #ffffff;
    width: 480px;
}

#mainWideLeftNarrowRight #rightsection
{
    border-left: solid 60px #ffffff;
    width: 195px;
}

#mainEqualLeftAndRightColumn #leftsection
{
    border-left: solid 35px #ffffff;
    width: 335px;
}

#mainEqualLeftAndRightColumn #rightsection
{
    border-left: solid 60px #ffffff;
    width: 335px;
}

#mainOnlyLeftColumn #leftsection
{
    border-left: solid 35px #ffffff;
    width: 735px;
}

/* classes */

.clear
{
    clear:both;
}


h1 
{
    font-weight: bold; 
    color: #000000;
    font-size: 11pt;
}

p 
{

}

h2 
{
    font-weight: bold; 
    color: #FF6300;
    font-size: 10pt;
}


