/*
================================
COMMON STYLES 
================================
*/

.left {float:left;}
.right {float:right}
.hide {display:none;}
.pointer {cursor:pointer;}
.clearBoth {clear:both;}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    }

.clearfix {display: inline-block;}  /* for IE/Mac */

a:active, a:focus
{
    outline: none;
}

/*
=================================================================================
STICKY FOOTER
http://matthewjamestaylor.com/blog/keeping-footers-at-the-bottom-of-the-page
=================================================================================
*/

html, body
{
	margin:0;
	padding:0;
	height:100%;
}

#container
{
   min-height:100%;
   position:relative;
}

#body
{
   /*padding-bottom:70px;*/   /* Height of the footer */
   /*padding-bottom:110px;*/    /*Height of the footer + additional padding between footer & content */
}

#footer
{
   position:absolute;
   bottom:0;
   width:100%;
   height:55px;   /* Height of the footer */ /*70px - 15px (top padding) - 0px (bottom padding) = 55px*/
}

/*
================================
MAIN STYLES
================================
*/

body
{
	background-color:#cccccc;
	font-family: "trebuchet ms", Verdana, Helvetica, Sans-Serif;
}

#container
{
}

a
{
    color:#3366ff;
    text-decoration:none;
}

a:hover
{
    color:blue;
}

a.rightArrow
{
    background:url(../media/Assets/arrow_right.gif) no-repeat center right;
    padding:0 7px 0 0;
}

a.leftArrow
{
    background:url(../media/Assets/arrow_left.gif) no-repeat center left;
    padding:0 0 0 7px;
}
strong
{
	font-weight: bold;
}
em
{
	font-style: italic;
}

/*
================================
HEADER STYLES 
================================
*/

#header
{
	margin:0 auto;
	width:960px;
	height:80px;
	background-image:url('../images/headerbg.gif');
	background-repeat:repeat-x;
}
#header .sitename
{
	font-weight: normal;
	font-size: 20pt;
	margin: 0px 10px;
}
#header .sitename A
{
	color: #FFFFFF;
}

/*
================================
MENU STYLES 
================================
*/

#menu
{
	margin:0 auto;
	width:960px;
	height:25px;
	margin-top:-25px;
}
#menu LI
{
	list-style: none;
	position: relative;
	float: left;
	display:block;
	line-height: 25px;
}
#menu LI A
{
	display:list-item;
	padding: 0px 10px 0px 10px;
	margin: 0px 2px 0px 2px;
	color: #663300;
}
#menu LI.selected
{
	background-color: #996633;
}
#menu LI.selected A
{
	color: white;
}
#menu A:hover
{
	color: white;
	background-color: #996633;
}

/*
================================
BODY STYLES 
================================
*/
#body
{
	width:960px;
	background-color: white;
	margin:0 auto;
}

/*
================================
SIDEBAR STYLES 
================================
*/
#sideBar
{
	width:160px;
	color: #996600;
	padding: 15px 0px;
}

#sideBar UL
{
	border-top: 1px dotted gray;
	width:160px;
}

#sideBar LI
{
	list-style: none;
	float: left;
	line-height: 25px;
	width: 100%;
}
#sideBar LI A
{
	display:list-item;
	padding-left: 10px;
	color: #000080;
	border-bottom: 1px dotted gray;
}
#sideBar LI.selected
{
	background-color: #e6e6e6;
}
#sideBar A:hover
{
	background-color: #e6e6e6;
}

/*
================================
CONTENT STYLES 
================================
*/
#content
{
	width:780px;
	font-size:13px;
	line-height:18px;
	color: #996600;
	padding: 0px 10px 10px 10px;
}
#content p
{
	margin:10px 0;
}
#content h1
{
	font-size:2em;
	font-weight:bold;
	line-height:1em;
	color: #663300;
	margin:10px 0 13px 0;
}
#content h2
{
	font-size:1.5em;
	font-weight:bold;
	line-height:1em;
	color: #663300;
	margin:10px 0 13px 0;
}    
#content h3
{
	font-size:1.17em;
	font-weight:bold;
	line-height:1em;
	color: #663300;
	margin:10px 0 10px 0;
}    
    .content ol, .content ul
    {
        list-style-position:inside;
    }
    
    .content ol
    {
        list-style-type:decimal;
    }
    
    .content ul
    {
        list-style-type:disc;
    }
        
    .leftArrow.backLink
    {
        margin:0 0 25px 0;
        display:block;
    }
    
    .content div.date
    {
        font-weight:bold;
        font-size:12px;
    }
    
    /* Header for small thin column */
    .twoColWide .col_2  h4
    {
        font-size:12px;
        color:#f49ac1;
        font-weight:bold;
        background:url(../media/Assets/dotted_border.gif) repeat-x bottom left;    
        padding:0 0 5px 0;
        margin:0 0 5px 0;        
    }
    
/*
================================
ALBUMS
================================
*/
.album
{
	width: 360px;
	height: 160px;
	border: 1px dotted #808080;
	margin: 5px 0px 10px 15px;
	background-color:#e6e6e6;
	padding: 5px;
	cursor: pointer;
}
.album a
{
	color: #996600;
}
.album:hover
{
	border: 1px solid #663300;
}
.album img
{
	float: left;
	margin-right:10px;
}
.album h4
{
	font-size:16px;
	font-weight:bold;
}
.album p
{
	font-size:12px;
	line-height: 16px;
}

/*
================================
ALBUM ITEMS
================================
*/
.albumitem
{
	width: 180px;
	margin: 5px 0px 10px 5px;
	display:inline-block;
	text-align: center;
	vertical-align: top;
	font-size:12px;
	line-height: 1.2;
}
.albumitem img
{
	vertical-align: top;
	line-height:12px;
	margin-bottom:2px;
}

/*
================================
DOWNLOAD ITEMS
================================
*/
.downloadItem
{
	margin: 5px 0px 10px 5px;
	display: block;
}
.downloadItem img
{
	float: left;
	margin-right:40px;
}
#content .downloadItem p
{
	margin:0;
}

/*
================================
GALLERY GRID
================================
*/ 
.galleryGrid
{
    margin:25px 0 0 0;
}

    .galleryGrid .item
    {
        width:208px;
        margin:0 0 15px 20px;
    }
        
    .galleryGrid .item.first
    {
        margin-left:0;
    }
    
        .galleryGrid .item a
        {
            background:url(../media/Assets/arrow_right.gif) no-repeat center right;
            padding:0 7px 0 0;
        }
    
        .galleryGrid .item img
        {
            display:block;
        }
        
        .galleryGrid .item span
        {
            display:block;
        }

/*
================================
PHOTO GRID
================================
*/ 
.photoGrid
{
    margin:25px 0 0 0;
}

    .photoGrid .item
    {
        width:151px;
        margin:0 0 15px 20px;
    }
                
    .photoGrid .item.first
    {
        margin-left:0;
    }
    
        .photoGrid .item a
        {
            background:url(../media/Assets/arrow_right.gif) no-repeat center right;
            padding:0 7px 0 0;
        }
    
        .photoGrid .item img
        {
            display:block;
        }
    
        .photoGrid .item span
        {
            display:block;
        }

/*
================================
PHOTO ITEM
================================
*/ 
.photo
{
    margin:25px 0 0 0;
}
    
    .photo .pager
    {
        display:block;
        margin:0 0 10px 0;
    }

    .photo a.prev
    {
        background:url(../media/Assets/arrow_left.gif) no-repeat center left;
        padding:0 0 0 7px;
    }
    
    .photo a.next
    {
        background:url(../media/Assets/arrow_right.gif) no-repeat center right;
        padding:0 7px 0 0;
    }
    
    .photo .item
    {
        position:relative;
	overflow:hidden;
	/*width:550px;*/
    }
    
        .photo .item span
        {
            display:none;   /*hide it if JS disabled and when page initially loads */
        
            position:absolute;
            left:0;
            bottom:0;
            
            background:url(../media/Assets/white_60_bg.png) repeat top left;
	    color:#000;
            
            /*width:540px;*/ /*550 - 5 - = 540px */
	width:100%;
            padding:10px 5px 10px 5px;
        }

/*
================================
NEWS LIST
================================
*/

.newsList
{
    margin:25px 0 0 0;
    width:630px;
}

    .newsList div
    {
        width:180px;
        margin:0 0 25px 45px;
        display:inline;
        
        color:#FFFFFF;
    }
    
    .newsList div.first
    {
        margin-left:0;
    }
    
        .newsList div span
        {
            font-weight:bold;
            font-size:11px;
        }

/* CSS if sIFR not enabled START */
.newsList div h4
{
	font-size:28px;
	line-height:1em;
	font-family:Georgia, Arial, Sans-Serif;  
}

    .newsList div h4 a
    {       
        font-weight:bold;
        color:#619ca7;
    }
    
    .newsList div h4 a:hover
    {
        color:#FFFFFF;
    }      
/* CSS if sIFR not enabled END */       


/*
================================
NEWS ITEM
================================
*/
.newsItem img
{
    margin:0 0 15px 0;
}
        
/*
================================
CONTACT STYLES
================================
*/

.form .text
{
    width:265px;
    margin:0 10px 0 0;
}

.form .fields
{
    width: 265px;
}

fieldset legend
{
    display:none;
}

fieldset label
{
    display:block;
    margin:10px 0 0 0;
}

fieldset label.first
{
    margin:0;
}

fieldset input
{
    background-color:#252525;
    border:2px solid #515151;
    width:265px;
    height:17px;
    padding:2px;
    margin:0 0 3px 0;
    
    color:#FFFFFF;
    font-size:14px;
}
  
fieldset textarea
{
    background-color:#252525;
    border:2px solid #515151;
    width:265px;
    height:130px;
    padding:2px 2px 1px 2px;
    margin:0 0 3px 0;
    
    font-family:Arial, Verdana, Sans-Serif;
    color:#FFFFFF;
    font-size:14px;
}

    fieldset input:focus, fieldset textarea:focus
    {
        border:2px solid #619ca7;
    }

fieldset input.error, fieldset textarea.error
{
    border:2px solid #F49AC1;
}

    fieldset input.error:focus
    {
        border:2px solid #af4975;
    }

fieldset button
{
    border:none;
    color:#619ca7;
    padding:0 7px 0 0;
    margin:10px 0;
    background:url('../media/Assets/arrow_right.gif') no-repeat right 50%;
}

/*
================================
FOOTER STYLES 
================================
*/

#footer
{
    background:#0c0c0c url(../media/Assets/footer_border.gif) repeat-x top left;
    padding:15px 0 0 0;
}

    #footer div.container
    {
        width:912px;
        margin:0 auto;
    }

    #footer li
    {
        float:left;
        font-size:11px;
    }
    
    /*Credits*/
    #footer ul.credits
    {
    }
    
        #footer ul.credits li a
        {
            color:#868686;
        }    
    
            #footer ul.credits li a span
            {
                display:block;
                
                font-size:10px;
                color:#515151;
            }
            
        #footer ul.credits li a:hover span
        {
            color:#f49ac1;
        }

    /*Misc*/
    #footer ul.misc
    {        
    }
                
        #footer ul.misc li.rss
        {
            padding:0 0 0 17px;
            margin:0 105px 0 0;
        }
        
            #footer ul.misc li.rss a
            {
                color:#c8751a;
            }
    
                #footer ul.misc li.rss a:hover
                {
                    color:#a05e16;
                }
                
        #footer ul.misc li.valid
        {
            padding:0 0 0 17px;
        }
        
            #footer ul.misc li.valid a
            {
                color:#529c46;
            }            

/* Logos*/
.cws
{
    background:transparent url(../media/Assets/cws_logo.gif) no-repeat;
    padding:0 0 0 26px;
    margin:0 67px 0 0;
}

.g72
{
    background:transparent url(../media/Assets/g72_logo.gif) no-repeat;
    padding:0 0 0 30px;
    margin:0 190px 0 0;
}

.rss
{
    background:transparent url(../media/Assets/rss_logo.gif) no-repeat 0 2px;
}

.valid
{
    background:transparent url(../media/Assets/tick_icon.gif) no-repeat 0 0;
}





/* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */
