/*
Theme Name: wp-wildlife
Theme URI: http://duklabs.com
Description: Custom Theme for Wildlife Rescue
Version: 1.0
Author: Dustin Kerr
Author URI: http://duklabs.com
Tags: 
License: 
License URI: 
*/



body {
    background-color: #7AB895;
    text-align: center;
    font-family: "Helvetica Neue", "Helvetica", "Arial", Sans-Serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    margin: 0 auto;
}

.header {
    width: 100%;
    height: 175px;
    background-color: #186339;
}

.navbar {
    width: 100%;
    background-color: #537662;
    margin: 0; padding: 0;
}

.content {
    width: 100%;
    background-color: #FFFFFF;
    font-size: large;
  
    background: url(images/bgTop.png),
	url(images/bgBottom.png),
	url(images/background.jpg);
	
    background-repeat: repeat-x, repeat-x, no-repeat;
    background-position: top left, bottom left, center;
    background-size: auto 400px, auto 30px, cover;
}

.contentContainer {
    width: 80%;
    text-align: left;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 15px;
}

#headerLeftImg {
    float: left;
}

#headerRightImg {
    float: right;
}

#headerText {
    font-size: 35pt;
    color: #FFFF3C;
    position: relative;
    top: 35px;
    text-align: center;
    display: block;
    /*font-family: Tahoma, Geneva, sans-serif;  <-- Prettier Title */
    font-family: Times New Roman, Times, Tahoma, Geneva, sans-serif;
}

h1 {
    text-align: center;
}

a {
    color: #186339;
}

/* Menu Stuff */
.main-nav {
    text-align: left;
    font-size: 120%;
    color: #FFF;
}

.main-nav ul {
	list-style: none;
    position: relative;
    display: inline-table;
    background: #537662;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-padding-start: 25px;
}

.main-nav ul:after {
    content: ""; clear: both; display: block;
}

.main-nav ul li {
	float: left;
	position: relative;
	padding-left: 5px;
	padding-right: 5px;
    z-index: 1;
}

.main-nav ul li:hover {
    background: #FFFFFF;
}

.main-nav ul li:hover a {
    color: #000;
}

.main-nav ul li a {
    display: block; 
    padding: 8px 8px;
    text-decoration: none;
    color: #FFF;
}

.main-nav ul ul {
    display: none;
}

.main-nav ul li:hover > ul {
    display: block;
}

.main-nav ul ul {
    background: #fff;
    border-radius: 0px;
    padding: 0;
    position: absolute;
    left: -2px;
    top: 100%;
    border-left: 2px solid #537662;
    border-right: 2px solid #537662;
    border-bottom: 2px solid #537662;
    width: 300px;
}
	
.main-nav ul ul li {
    float: none;
    position: relative;
    color: #FFF;
    padding-left: 0px;
    padding-right: 0px;
}
	
.main-nav ul ul li a {
    padding: 10px 30px;
    color: #FFF;
}
	
.main-nav ul ul li a:hover {
    background: #537662;
    color: #fff;
}

.current_page_item {
    font-weight: bold;
}

.footerCopyright {
	font-size: 70%;
	background-color: #FFFFFF;
	padding-top: 5px;
  	color: #333333;
}

/* Little Extras */
.frontPageButton {
  	text-align: center;
}

.frontPageButton a {
	font-weight: bold; 
	font-size: xx-large; 
	text-align: center;
    background: #186339;
    display: inline-block;
    padding: 15px 15px 12px;
    color: #FFFF3C;
    text-decoration: none;
    font-weight: bold;
    line-height: 1;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    box-shadow: 0 1px 3px #999;
    -webkit-box-shadow: 0 1px 3px #999;
    text-shadow: 0 -1px 1px #222;
    border-bottom: 1px solid #222;
    position: relative;
    cursor: pointer;
}

.frontPageButton a:hover {
    background: #537662;
}

/* For the 2col page */
.twoColNav {
	float: left;
	width: 20%;
	text-align: left;
	padding-top: 20px;

}
  
.twoColNav ul {
    list-style: none;
}

.twoColNav ul li {
    padding-top: 10px;
}
  
.twoColContentContainer {
	width: 80%;
    text-align: left;
    float: right;
    padding-top: 15px;
    padding-bottom: 15px;
}


img.alignright {float:right; margin:0 0 1em 1em}
img.alignleft {float:left; margin:0 1em 1em 0}
img.aligncenter {display: block; margin-left: auto; margin-right: auto}

/*  Media Print Stuff */

@media print {
	.header { display: none; }
	.navbar { display: none; }
	.container { width: 100%; }
	.content { background-image: none; background-color: #FFF; width: 100%; }
	.contentContainer { width: 100%; }
	body { background-color: #FFF; }
	.footerCopyright { display: none; }
}