@charset "UTF-8";

/*---------------------------------------
	Name: layout.css
	Author: Kenny Frank
			Excellanz Graphics
---------------------------------------*/
	
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	margin-top:4px;
	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;
	background: url(../images/if/pageBg.jpg) repeat;
}
.layout #container { 
	width: 750px;
	margin: 0 auto;
	text-align: left;
	background: url(../images/if/ctntFtrBg.jpg) repeat-y;
} 
.layout #header { 
	background: url(../images/if/pageBg.jpg);
	width: 750px;
	height: 161px;
} 

.layout #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: transparent; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
	color: #eaeaea;
	font-size: 80%;
	text-transform: uppercase;
}
.layout #sidebar1 div.linkedin {
	width: 151px;
	height: 57px;
	border: none;
	margin: 0 auto;
	margin-top: 20px;
	margin-left: 20px;
}
.layout #sidebar1 div.linkedin a {
	border: none;
}
.layout #sidebar1 div.facebook {
	width: 165px;
	height: 55px;
	border: none;
	margin: 0 auto;
	margin-top: 15px;
	margin-left: 15px;
}
.layout #sidebar1 div.facebook a {
	border: none;
}
.layout #sidebar1 div.angiesList {
	width: 143px;
	/*height: 64px;*/
	border: none;
	margin: 0 auto;
	margin-top: 15px;
	margin-left: 22px;
	padding-left: 10px;
}
.layout #sidebar1 div.angiesList a {
	border: none;
}
.layout #sidebar1 div.giveMN {
	width: 165px;
	border: none;
	margin-top: 15px;
	margin-left: -10px;
	border: none;
}
.layout #sidebar1 div.giveMN a {
	border: none;
}

.layout #mainContent { 
	margin: 0 0 0 212px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	z-index:888;
}
.layout #mainContent .calloutBox {
	width: 430px;
	margin: 13px auto;
	padding: 5px;
	background-color: #a3b5c1;
	border: 1px solid black;
} 
.layout #mainContent .calloutBox p {
	color: black;
	font-style: italic;
	font-size: 80%;
	letter-spacing: .06em;
	margin: 2px 10px;
}
.layout #mainContent .calloutBox a {
	color: purple;
	text-decoration: underline;
	font-size: 70%;
}
.layout #mainContent .calloutBox a:hover {
	color: white;
	text-decoration: none;
	background-color: purple;
}
.layout #mainContent p {
	color: #000;
	font-size: 85%;
	letter-spacing: .08em;
	margin-top: 2px;
	margin-right: 10px;
}
.layout #mainContent p.tmlCredit {
	color: #000;
	font-size: 75%;
	letter-spacing:.08em;
	margin-top: 2px;
	font-weight: bold;
	font-style: italic;
}
.layout #mainContent h1 {
	color: #000;
	font: italic bold 175% "Apple Chancery", Georgia;
}
.layout #mainContent h2 {
	color: #724816;
	font: small-caps bold 100% Arial, Helvetica, "san serif";
	margin-bottom: 3px;
}
.layout #mainContent a {
	color: purple;
	text-decoration:underline;
}
.layout #mainContent a:hover {
	color: white;
	text-decoration:none;
	background-color:purple;
}
.layout #mainContent .photoR {
	float:right;
	margin: 0 10px 10px 10px;
	color: #724816;
	font: 10px Arial, Helvetica, "san serif";
}
.layout #mainContent .photoR img {
	border: 1px solid black;
}
.layout #mainContent fieldset {
	margin-bottom: 10px;
	padding: 5px;
	border: 2px solid black;
	background-color:#a57846;
}

.layout #contactForm legend {
	color: black;
	font: 85% Arial, Helvetica, "san serif";
	margin-bottom: 7px;
	padding-right: 3px;
	padding-left: 3px;
	border: 1px solid black;
	background-color:#a57846;
}
.layout #contactForm label {
	color: white;
	font: 70% Arial, Helvetica, "san serif";
	background-color: #724816;
	margin-left:1px;
	padding: 2px 4px;
	border: 1px solid gray;
}
.layout #contactForm label#req {
	color: white;
	font: 70% Arial, Helvetica, "san serif";
	background-color: purple;
	margin-left:1px;
	padding: 2px 4px;
}
.layout #contactForm label#radio {
	color: black;
	font: 85% Arial, Helvetica, "san serif";
	margin-left: 8px;
	background-color: transparent;
	vertical-align: text-top;
	border: none;
}
.layout #contactForm input {
	margin-bottom: 7px;
	color: black;
	font: 90% "Courier New", Courier, mono;
}
.layout #contactForm select {
	margin-bottom: 7px;
}
.layout #contactForm textarea {
	margin-bottom: 7px;
	color: black;
	font: 90% "Courier New", Courier, mono;
	background-color: white;
	border: 1px solid black;
}
.layout #footer { 
	padding: 0;
	margin: 0;
	height: 112px;
	background: url(../images/if/ctntFtrBottomTopInset.jpg) no-repeat;
} 
.layout #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top:30px;
	text-align: center;
	font-size: 70%;
	color: #8e5829;
}
.layout #footer p.tagline {
	color: #8e5829;
	font-size: 100%;
	font-weight: bold;
	font-style: italic;
}
.layout #footer a {
	color: #a57846;
	text-decoration: none;
}
.layout #footer a:hover {
	color: #8e5829;
	text-decoration: underline;
}

.layout #footerBottom {
	margin: 0;
	background: url(../images/if/pageBg.jpg) repeat;
}
.layout #copyright {
	width: 750px;
	margin: 0 auto;
	padding: 0;
	background: transparent;
}
.layout #copyright p {
	color: #919191;
	font-size: 65%;
	text-align: left;
	padding-top: 4px;
}
.layout #copyright a {
	color: #919191;
	text-decoration: underline;
}
.layout #copyright a:hover {
	color: white;
	text-decoration: underline;
}

.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;
}
.logoLeft {
	margin-bottom: 30px;
	border:none;
}
.logoLeft img {
	border: 1px solid black;
}
.logoLeft img a {
	text-decoration:none;
	border:none;
}
.logoLeft img a:hover {
	text-decoration:none;
	border: none;
}
.logoJumble {
	margin: 10px;
	border: none;
}
.logoJumble img {
	border: 1px solid black;
	margin: 10px;
}
.logoJumble img a {
	text-decoration: none;
	border: none;
}
.logoJumble img a:hover {
	text-decoration: none;
	border: none;
}

.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;
}

.bold {
	font-weight:bold;
}
.indent25 {
	padding-left:25px;
}
