@charset "UTF-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%; 
	background-color: #4B5931;
	background-image: url(../images/gradientTop.png);
	background-repeat: repeat-x;
	background-position: left top;
}
#container {
	width: 780px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	height: 200px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
h1 {
	margin-top: 15px;
	font-size: xx-large;
	color: #036;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
}
#sidebarContent {
	background-color: #FFF;
	border: thin solid #660;
	width: 195px; /* the background color will be displayed for the length of the content in the column, but no further */
	background-image: url(../images/sidebar.png);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 25px;
}
.sidenav {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 7px;
	margin-left: 15px;
	font-size: medium;
	font-weight: bold;
}
.sidenav a:active, .sidenav a:link, .sidenav a:visited {
	text-decoration:none;
	color: #000;
} 
.sidenav a:hover	{
	text-decoration:none;
	color: #F90;
}
#sidebarLinks {
	margin: 15px;
	text-align: center;
}
#sidebarLinks img {
	border: none;
}
#mainContent {
	background-color: #FFF;
	margin-top: 25px;
	margin-right: 0;
	margin-left: 250px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	min-height: 600px;
	font-size: small;
	border: medium outset #030;
} 
#footer {
	font-size: x-small;
	background-color: #11160B;
	color: #FFF;
	height: 100%;
	margin-top: 25px;
	border-top-width: thick;
	border-bottom-width: thick;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #330;
	border-bottom-color: #000;
}
#footerContent {
	width: 740px;
	text-align: right; /* this overrides the text-align: center on the body element. */
	height: 200px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 20px;
}
#footerContent a:active, #footerContent a:link, #footerContent a:visited {
	text-decoration:none;
	color: #FFF;
} 
#footerContent a:hover	{
	text-decoration:none;
	color: #F90;
}
#footer p {
	margin: 0;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
#footerText {
	width: 375px;
	float: right;
	text-align: left;
	margin-right: 130px;
	position: relative;
	margin-top: -90px;
}
#footerText p {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
#footerBottom {
	position: relative;
	margin-top: -130px;
	float: right;
}
.footerTitle {
	margin: 0px;
	padding: 0px;
	font-size: small;
	font-weight: bold;
	text-decoration: underline;
	color: #FF9;
}
#footerWendy {
	position: relative;
	border: none;
	width: 270px;
	margin-left: -55px;
	margin-top: -100px;
	z-index: 1002;
	float: left;
}
#jierna {
	padding: 0px;
	margin-top: -15px;
	margin-right: -50px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 150px;
	font-style: italic;
	text-align: center;
	position: relative;
	float: right;
}
#jierna img {
	border: none;
}
#jierna p {
	margin-right: 50px;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.clearfloat { 
	clear:right;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#logo {
	float: left;
	position: relative;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: -30px;
}
#logo img {
	border: none;
}
.h1Title {
	color:#475A2F;
	font-size: xx-large;
}
#bannerDog {
	position: absolute;
	margin-top: -215px;
	margin-left: 150px;
	z-index: 1000;
}
.emailLink {
	font-size: small;
	font-weight: normal;
}
a:active, a:link, a:visited {
	text-decoration:none;
	color: #009;
} 
a:hover	{
	text-decoration:none;
	color: #F90;
}
#runningDog {
	position: absolute;
	margin-left: -19px;
	height: 50px;
}
.sidenavTop {
	padding: 0px;
	font-size: small;
	font-style: italic;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
h3 {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
.parSection {
	font-weight: bold;
	font-size: large;
	font-style: italic;
	color: #000;
}
.copyright {
	clear: right;
	width: 620px;
	position: relative;
	margin: 0px;
	padding: 0px;
	float: right;
}
.license {
	font-size: xx-small;
}
.bulletintitle {
	font-size: large;
	font-weight: bold;
	color: #00C;
}
#statement {
	position: absolute;
	width: 289px;
	height: 103px;
	font-size: x-large;
	text-align: center;
	padding-right: 30px;
	padding-left: 30px;
	color: #000;
	top: 800px;
	left: 20px;
}
#bulletinboard {
	float: left;
	height: 240px;
	width: 362px;
	position: absolute;
	overflow: hidden;
	padding-top: 45px;
	padding-right: 85px;
	padding-bottom: 0px;
	padding-left: 75px;
	background-image: url(../images/bulletin.png);
	background-repeat: no-repeat;
	background-position: center top;
	font-family: "Comic Sans MS", cursive;
	color: #000;
	border: thin none #000;
	margin-top: -5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: -20px;
}
#homecontent {
	min-height: 300px;
	position: relative;
	height: 925px;
}
.tabLeft {
	font-size: small;
	color: #000000;
	text-align: right;
	vertical-align: top;
	width: 65px;
}
.tabRight {
	font-size: small;
	color: #000000;
	text-align: left;
	vertical-align: top;
}
.submit {
	text-align: right;
}
.buttonSubmit {
	width: 10em;
}
.poemp {
	padding: 0px;
	margin-top: 0px;
	margin-right: 25px;
	margin-bottom: 10px;
	margin-left: 25px;
	font-style: italic;
}
.poemtitle {
	padding: 0px;
	text-align: center;
	font-size: medium;
	font-weight: bold;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
.faqtitleHome {
	padding: 0px;
	margin: 0px;
	font-weight: bold;
	font-size: medium;
}
.faqp {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
}
#container #mainContent #homecontent object {
	margin-right: 20px;
	margin-bottom: 20px;
}
#alignLeft {
	text-align: left;
	width: 270px;
	height: 210px;
	position: relative;
	float: left;
}
img {
	border: none;
}
.homeText {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 7px;
	margin-left: 15px;
	font-size: medium;
	font-weight: bold;
}
#help {
	width: 250px;
	float: left;
}
#wishlist {
	width: 200px;
	float: right;
	margin-top: 0px;
}
#wishlist ul {
	font-style: italic;
	font-size: small;
	list-style-position: outside;
	list-style-type: circle;
	margin-left: 15px;
	padding: 0px;
	margin-top: 7px;
	margin-right: 0px;
	margin-bottom: 5px;
}
.memoryPtop {
	margin: 0px;
	padding: 0px;
	font-size: small;
	font-style: italic;
}
#tasha {
	width: 260px;
	border: thin outset #475A2F;
	padding: 0px;
	margin-top: 15px;
	margin-right: 25px;
	margin-bottom: 20px;
	margin-left: -20px;
	position: relative;
	float: left;
}
#rainbow {
	margin-left: -20px;
	width: 525px;
	margin-top: 10px;
}
.faqtitle {
	font-size: large;
	font-weight: bold;
	color: #003717;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.faqimg {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.linktitle {
	font-size: large;
	font-weight: bold;
	color: #003717;
	padding-top: 35px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #003717;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}

