﻿/*  THE WRAPPER ID MAKES SURE THE PAGE IS CENTERED */
#wrapper
{
    width: 830px;
    margin: 0 auto;
    padding-bottom: 10px;    
}

/*  NOW THE SITE IS CENTERED WE CAN FLOAT THINGS TO THE LEFT INSIDE THE WRAPPER
    THIS MEANS THAT WE CAN CENTERING AND COLUMNS TO BOOT */
#site
{
    width: 830px;            
    
    float: left;    
    padding-top: 3px;    
    background-color: #fff;                                    
    position: relative;
}

/*  THE CONTAINER IS THE HOLDER OF EVERYTHING ON THE LEFT OF THE SITE
    IT HOLDS THE HEADER, NAVIGATION AND MAIN CONTENT OF THE SITE*/
#container
{
    width: 623px;                   
       
    float: left;    
    overflow: hidden; 
    display: inline; 
    position: relative;        
}

/* THE RIGHT COLUMNS CONTAINS ALL THE CONTROLS THAT WILL BE SPECIFIC TO A SECTION */
#right-column
{
    width: 197px;              
    float: left; 
    overflow: hidden; 
    padding-left: 10px;
        
    position: relative;  
}

/* THE SITE LOGO/MASTHEAD */
#header
{
    width: 613px;
    float: left;
    height: 72px;
    padding-left: 10px;    
}

/* THE NAVIGATION SECTION CONTAINS THE NAVIGATION AND SEARCH FACILITY */
#navigation
{
    width: 201px;
    float: left;           
    margin-left: 8px;        
    display: inline;
}

/* THE MAIN CONTENT OF THE SITE, THE STUFF PEOPLE WILL READ MOSTLY */
#content
{
    width: 414px;
    float: left;       
                   
    overflow: hidden;
    display: inline;
    padding-bottom: 5px;
}

/*  LIST STYLES */
ul
{
    list-style: none;
    margin: 0px;
    padding: 0px;
}

#competition-detail ul
{
    list-style-type: circle;
    padding-left: 10px;
    margin-left: 10px;
}

#in-this-section {
	position:relative;
}

#in-this-section li
{    
    padding-top: 12px; 
    padding-bottom: 1px; 
    background-image: url(images/underline1_o.gif);
    background-repeat: repeat-x;
    background-position: bottom;
}

#in-this-section li a,
#in-this-section li a:hover
{
    color: #5f553a;    
    background-image: url(/MasterPages/Default/Images/list_style_image.gif);
    background-position: left 3px;
    background-repeat: no-repeat;
    padding-left: 10px;    
	
}

