/***
 * 
 * Name: Blue Bower Theme - common.css
 * Author: James Oppenheim - http://www.oppenheim.com.au
 * Version: 1.0
 * 
 ***/


/***********************************************************
 * Utility Styles
 ***********************************************************/

/**************************
 * Reset
 *************************/

html,
body {
  margin: 0;
  padding: 0;  
}


 
/**************************
 * Links
 *************************/

a,
a:link,
a:visited,
a:active {
  color: #F4EB4A;
  text-decoration: underline;
}

a:hover,
a:focus {
	color: #FE932F;
	text-decoration: none;
}


/**************************
 * Headers
 *************************/

h1,
h1.title {
  color: #F4EB4A;
  font-size: 1.25em; /*  20px */
  font-weight: normal;
  margin: 0 0 1em 0;
  padding: 0;
}

h2 {
  color: #F4EB4A;
  font-size: 1.125em; /*  18px */
  font-weight: bold;
  margin: 2em 0 0.75em  0;
  padding: 0;
}
h2 a { color: #F4EB4A; }

h3 {
  color: #F4EB4A;
  font-size: 1em; /*  16px */
  font-weight: bold;
  margin: 1.75em 0 0.75em  0;
  padding: 0;
}
h3 a { color: #F4EB4A; }

h4 {
  color: #F4EB4A;
  font-size: 1em; /*  16px */
  font-weight: bold;
  margin: 1.5em 0 0.751em  0;
  padding: 0;
}
h4 a { color: #F4EB4A; }

h5 {
  color: #F4EB4A;
  font-size: 1em; /*  16px */
  font-weight: bold;
  margin: 1.25em 0 0  0;
  padding: 0;
}
h5 a { color: #F4EB4A; }

h6 {
  color: #F4EB4A;
  font-size: 1em; /*  16px */
  font-weight: normal;
  margin: 1em 0 0  0;
  padding: 0;
}
h6 a { color: #F4EB4A; }

table, table th, table td {
	border: 1px solid #015291;
	background: #0093b5;
	text-align: left
}
thead {
	border: 1px solid #015291;
}
table th {
	background: #015291;
}
tr.even,
tr.odd {
	border-bottom: 1px solid #015291;
}
table tr.even td {
	background: #0093b5;
	border: 1px solid #015291;
}
table tr.odd td {
	background: #037d99;
	border: 1px solid #015291;
}
table td, table th {
	padding: 5px;
}
table th {
	font-weight: bold;
}
table caption {
	font-weight: bold;
	padding-bottom: 0.25em;
}

blockquote {
	border: 1px solid #015291;
	border-left: none;
	border-right: none;
	background: #0093b5;
	color: #015291;
	margin: 1em 0;
	padding: 0.75em 1em;
	text-align: center;
	font-style: italic;
	font-weight: bold;
	font-size: 1.125em;
}

hr { /* For Internet Explorer */
	height: 1px;
	color: #015291;
	border: none;
}
html>body hr { /* For Opera and Gecko-based browsers */
	height: 1px;
	background-color: #015291;
	border: 0px solid #015291;
}

/**************************
 * Image Replace
 *************************/

.image-replaced {
    position: relative;
    overflow: hidden;
}

.image-replaced span {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-position: left top;
    background-repeat: no-repeat;
}


/**************************
 * Clearfix
 *************************/

/* clearfix for good browsers */
html > body .clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
/* clearfix for IE/mac */
.clearfix {
    display: inline-block;
}
/* Hides from IE-mac, clearfix for IE/win and reset for not IE/mac */
@media all {
    * html .clearfix {
        _height: 0;
    }
    .clearfix {
        display: block;
    }
}

