﻿/***************************************************************/
/* Tennis Australia Event Accommodation Web-Site.              */
/* Copyright (c) 2011, Tennis Australia.                       */
/*                                                             */  
/* Site.css - Global application style-sheet for the site      */
/*            layout.                                          */
/***************************************************************/

/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, fieldset, form, 
label, legend, table, caption, tbody, tfoot, 
thead, tr, th, td
{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}


/* Standard fonts */
body, a, p, span, div, h1, h2, h3, h4, h5, h6, ul, ol
{
	color: #333333;	
	font-family:  Arial, Helvetica, Sans-Serif;
}


/* Standard font-sizes */
body, a, p, span, div
{
	font-size: 12px;
}


/* Body to display on a white(ish) background in full client area */
body {
    line-height: 1;
    width: 100%;
    padding: 0;
    text-align: center;
    background-color: #00314f;
    background-repeat: repeat-y;
}


/* Class to display form  elements aligned to the left */
form, ul, p, span
{
    text-align: left;	
}


/* Images */
img 
{
	margin-bottom: 18px;
}


/* Hyperlinks to display as standard text */
a {
    color: #00314f;
    text-decoration: none;
}


/* Hovered hyperlinks to display as underlined standard text */
a:hover
{
	text-decoration: underline;
}


/* Default heading styles */
h1, h2, h3, h4, h5, h6
{
	text-decoration: none;
	margin: 0px;
	border: none;
	padding: 0px 0px 0px 0px;
}


/* Large heading style (displayed in banner) */
h1 
{
	height: 28px; 
	font-size: 26px; 
    font-weight: normal;
}


/* Large heading style (displayed in banner) */
h2 
{
	height: 11px; 
	font-size: 11px; 
    font-weight: normal;
}


/* Default header-bar heading styles */
h1, h2
{
	display: block; 
	position: absolute;     
    left: 0px;
    width: 96%;
	color: #FFFFFF;
    text-align: right;
    text-transform: uppercase;
}


/* Heading styles to display in corporate colors (light-blue) */
h3, h4, h5, h6 {
    color: #00314f;
    margin-bottom: 4px;
}


/* Heading styles to display in corporate brand guidelines */
h3, h4, h5
{ 
	font-weight: bold;
}


/* Large heading */
h3 
{ 
	font-size: 20px; 
	line-height: 24px;
}


/* Medium heading */
h4 
{ 
	font-size: 16px; 
	line-height: 20px;
}


/* Small-Medium heading */
h5 
{ 
	font-size: 14px; 
	line-height: 18px;
}


/* Small heading */
h6, .label-heading 
{ 
	font-size: 12px; 
	line-height: 12px;
	font-weight: bold;
	font-style: normal;
	margin-bottom: 0px;
}


/* Paragraph spacing */
p, ul, table, strong, li 
{
	margin-bottom: 16px; 
	line-height: 16px;
}


/* Class to display bold text */
.bold-text
{
    font-weight: bold;	
}


/* Class to display italic text */
.italic-text
{
    font-style: italic;	
}


/* Class to display underlined text */
.underlined-text
{
    text-decoration: underline;	
}


/* Class to display plain (unformatted) text */
.no-text-formatting 
{
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
}


/* Class to display content with a space at the top */
.spacer-top
{
	margin-top: 10px;
}


/* Class to display content with a space at the bottom */
.spacer-bottom
{
	margin-bottom: 10px;
}


/* Class to display content with a space at the left */
.spacer-left
{
	margin-left: 10px;
}


/* Class to display content with a space at the right */
.spacer-right
{
	margin-right: 10px;
}


/* Class to layout/float content to the left */
.float-left
{
	float: left!important;
	clear: none;
}
 

/* Class to layout/float content to the right */
.float-right
{
	float: right!important;
	clear: none;
}


/* Class to clear the layout/float of any content */
.no-float
{
	clear: both!important;
}


/* Class to clear the margins any content */
.no-margin
{
	margin: 0px!important;
}


/* Class to display content centered in a client area */
.centered-margin
{
	margin: 0px auto;
}


/* Class to clear the padding any content */
.no-padding
{
	padding: 0px!important;
}


/* Class to display content in the full client area width */
.full-width
{
    width: 100%;
}


/* Class to display content in 3/4 of the full client area width */
.three-quarter-width
{
    width: 74%; 
}


/* Class to display content in 2/3 of the full client area width */
.two-thirds-width
{
    width: 66%; 
}


/* Class to display content in 1/2 of the full client area width */
.half-width
{
    width: 49%; 
}


/* Class to display content in 2/3 of the full client area width */
.one-third-width
{
    width: 33%; 
}


/* Class to display content in 1/4 of the full client area width */
.one-quarter-width
{
    width: 24%; 
}


/* Class (.block) to define specific width elements */
full-width,
three-quarter-width,
two-thirds-width,
half-width,
one-third-width,
one-quater-width,
.sized-width
{
    clear: none; 
    display: block; 
    height: auto; 
    margin: 0 auto; 
    overflow: hidden; 
    z-index: 0; 
}


/* Class to display the page content */
.page-content
{
	width: 960px;
    background-color: #FFFFFF;
    padding-top: 8px;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
}


/* Class to display the page header (banner) */
.page-header
{
	background: url(../Images/PageHeader.jpg) center top;	
	display: block;
	position: relative;
	overflow: visible;
	width: 100%;
	height: 136px;
}


/* Class to display event block-quote element inside the page header content */
.page-header-event blockquote 
{
    display: block; 
    float: left; 
    position: absolute; 
    top: 17px; 
    left: 838px; 
    width: 92px;
    margin: 0; 
    text-indent: -9999px; 
}


/* Class to display an event hyperlink in the header block-quote */
.page-header-event blockquote a
{
    border: 0 none; 
    display: block; 
    height: 103px; 
    top: 0; 
    left: 0; 
    margin: 0; 
    text-indent: -9999px; 
}


/* Class to display a "hovered" event hyperlink in the header block-quote */
.page-header-event blockquote a:hover 
{
    background: none;
}


/* Class to display a spacer line betweem the page header and bread-crumb */
.header-bar-spacer
{
	height: 10px;
}

/* Class to display the page header-bar */
.header-bar
{
	height: 35px;
    margin-top: 10px;
}


/* Class to display the info text header-bar */
.header-bar-text
{
	height: 22px;
    color: #0390E2;
    border-bottom: solid 1px;
}


/* Class to display the page footer */
.page-footer {
    background-color: #00314f;
    color: #FFFFFF;
    height: 28px;
    line-height: 28px;
    padding-left: 5px;
    padding-right: 5px;
}


/* Class to display content in the page footer */
.page-footer span 
{
    color: #FFFFFF;
}   


/* Class to display links in the page footer */
.page-footer a 
{
    color: #FFFFFF;
}   


/* Class to display main page content in a content-holder*/
.content-holder
{
	vertical-align: top;
}


/* Class to display a bordered frame (box) */
.frame {
    overflow: visible;
    display: block;
    border-style: solid;
    border-color: #00314f;
    border-width: 1px;
    /*-webkit-border-radius: 6px!important;
	-moz-border-radius: 6px!important;
	border-radius: 6px!important;*/
}


/* Class to a caption bar inside a frame */
.frame-caption-bar {
    position: relative;
    overflow: visible;
    background-color: 00314f;
    display: block;
    height: 28px;
    top: 0px;
    /*margin: 1px 1px 1px 1px; */
    vertical-align: middle;
    padding-left: 5px;
    padding-right: 5px;
    /*-webkit-border-top-left-radius: 5px!important;
	-webkit-border-top-right-radius: 5px!important;
	-moz-border-radius-topleft: 5px!important;
	-moz-border-radius-topright: 5px!important;
	border-top-left-radius: 5px!important;
	border-top-right-radius: 5px!important; */
}


/* Class to display text in the top of the caption bar */
.frame-caption-bar-label
{
	display: block;
	color: #FFFFFF;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	line-height: 28px;
	vertical-align: middle;
}


/* Class to display text in the caption bar */
.frame-content
{
	display: block; 
    margin: 1px;
	vertical-align: middle;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
}


/* Class to "shadow" the background of a page when showing a simulated modal popup */
.modal-background
{

    background-color: #242424;
    filter: alpha(opacity=95);
    opacity: 0.95;
}


/* Class to show a simulated modal popup */
.modal-popup {
    border-color: #00314f;
    background-color: #FFFFFF;
    padding: 2px 2px 2px 2px;
    position: absolute;
}


/* Class to display a single button in a modal-popup */
.modal-popup-button
{
    position: absolute;
    top: 130px;    
    left: 145px;
}


/* Class to show a simulated modal popup as a window */
.modal-window
{
    top: -1000px;    
    height: 160px;
    width: 380px;
}


/* Class to show a simulated modal popup as a progress indicator */
.modal-progress
{
    width: 140px; 
    height: 55px;    
    vertical-align: middle;
}
        
        
/* Class to show a progress messages in a modal popup */
.progress-message
{
    vertical-align: middle;
    line-height: 55px;
}


/* Common class for a vertical navigation menu and it's items */
ul.navigation-menu, ul.navigation-menu li, ul.navigation-menu li a 
{
    display: block;
}


/* Class to display a vertial navigation menu */
ul.navigation-menu 
{
    border: 1px solid #FFFFFF; 
    margin-left: 0; 
    width: 218px; 
    padding: 0px;
}


/* Class to display an navigation menu item */
    ul.navigation-menu li {
        line-height: 35px;
        font-weight: bold;
        background: #00314f;
        padding-left: 10px;
        border-bottom: 1px solid #F7F6F6;
        margin-bottom: 0;
    }


ul.navigation-menu li a
{
    color: #FFFFFF;
    border: none;
}


/* Class to display "highlighted" navigation menu item backgrounds */
ul.navigation-menu li:hover, ul.navigation-menu li.active 
{
    background: #F17223;
}


/* Class to display "highlighted" navigation menu item captions */
ul.navigation-menu li.active a
{
    /*color: #333333;*/
}


/* Class to display hovered navigation menu items */
ul.navigation-menu li a:hover 
{
    /*color: #333333;*/
    text-decoration: none;
}


/* Class to display the border around the first navigation menu items */
ul.navigation-menu li.first-item, ul.navigation-menu li.first-item a:hover 
{
	line-height: 34px;
}


/* Class to display the border around the last navigation menu items */
ul.navigation-menu li.last-item, ul.navigation-menu li.last-item a:hover 
{
	border-bottom: none;
}


/* Common class for a bread-crumb indicator */
ul.bread-crumb, ul.bread-crumb li
{
    display: block;
}


/* Class to display a bread-crumb */
ul.bread-crumb 
{
    margin-left: 0; 
    height: 25px;
    padding: 0px;
    margin-top: -11px;
}


/* Class to display an navigation menu item */
    ul.bread-crumb li {
        float: left;
        width: 112px;
        height: 20px;
        line-height: 15px;
        font-weight: bold;
        background: #00314f;
        border-right: 1px solid #FFFFFF;
        color: #FFFFFF;
        margin-right: 0;
        padding-top: 6px;
        text-align: center;
    }


/* Class to display "highlighted" navigation menu item backgrounds */
ul.bread-crumb li.active 
{
    background: #F17223;
}


/* Class to display the border around the first navigation menu items */
ul.bread-crumb li.first-item
{
    
}


/* Class to display the border around the last navigation menu items */
ul.bread-crumb li.last-item 
{
	border-right: none;
}



/* Class to display data-entry grouped labels and controls */
.data-entry-container
{
	text-align: left;
	height: 24px;
	line-height: 24px;
	clear: both!important;
}


/* Class to display/layout a field-label */
.data-entry-label
{
    float: left!important;
}


/* Class to display/layout a field-control */
.data-entry-control
{
    float: left!important;
    margin-left: 10px;
}


/* Class to display a (field) label */
.label
{
	vertical-align: middle;
}


/* Class to highlight a (field) label to show that it's a required field */
.required-field
{
    color: #111111;
	font-weight: bolder;
}


/* Class to display a short width label */
.short-label
{
	width: 95px;
}


/* Class to display a short width label */
.medium-label
{
	width: 135px;
}


/* Class to display a long width label */
.long-label 
{
	width: 375px;
}


/* Class to display a short width field-control */
.short-control
{
	width: 70px;
}


/* Class to display a medium width field-control */
.medium-control
{
	width: 140px;
}


/* Class to display a long width field-control */
.long-control
{
	width: 225px;
}


/* Class for a field-control */
.control
{
    color: #333333;
	vertical-align: middle;
    border-style: solid; 
    border-width: 1px; 
    border-color: #888888!important;
}


/* Class to display a standard button */
.button {
    background-color: #00314f;
    background-image: none;
    border-style: none;
    width: 90px;
    height: 25px;
    vertical-align: middle;
    color: #FFFFFF;
    font-weight: bold;
}

 
/* Class to display a "hot/hovered" button */
.button:hover
{
    background: #F17223;
}

