@charset "UTF-8";
/* CSS Document */


/* Main Structure */

body  {
	font: 14px 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 */
	padding: 0;
	text-align: center;
	background-color: #000000;
	color: #FFFFFF;
	min-width: 750px;
	background-image: url(images/back_stripe.png);
	line-height: 1.5;
}

#symbolOverlay {
	background-image: url(images/symbol_leftcorner.png);
	background-position: top left;
	background-repeat: no-repeat;
}

.mbmLayout #header {
	text-align: center;
	padding: 10px 0 0 0;
}

.logo {
	padding: 0;
	margin: 0;
}

.mbmLayout #container 
{
	width: 80%;
	background-color: #EBEBEB;
	color: #000000;
	text-align: left;
	margin: -25px auto 25px auto;
	padding: 0;
	border: solid #b05555 3px;
} 

#profile
{
	padding: 10px;
}

#photos
{
	float: left;
	width: 170px;
	text-align: center;
	padding-bottom: 10px;
}

#photos img
{
	width: 150px;
	padding-top: 10px;
}


/* Main Body Background -------------------------------------------------------------------------------------*/
.mbmLayout #mainContent 
{
\	background-color: #EBEBEB;
	color: #000000;
	text-align: left;
	margin: 0 0 0 180px;
	padding: 10px;
	/*    border: solid #b05555 3px;    */ /* solid #006699 5px;  */
}


.mbmLayout #footer
{
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 90%;
	text-align: center;
	color: #FFFFFF;
}

.mbmLayout #footer a
{
	color: #FFFFFF;
}


/* Navigation */

#mainNav, #profileNav {
	padding: 7px;
	text-align: center;
	margin-bottom: 5px;
	background-image: url(../images/gray_fade.png);
	background-position: bottom;
	background-repeat: repeat-x;
	border-bottom: solid #666666 1px;
	font-size: 95%;
}

ul.navigation
{
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.navigation li
{
	display: -moz-inline-box;  /* for Mozilla based browsers */
	display: inline-block;  /* IE5/Mac needs these to have a set width. Change it when necessary. */
	padding: 0;
	margin: 5px 0;
}

/* Main Navigation Buttons -------------------------------------------------------------------------------------*/
ul.navigation li a
{
	background-color: #97313a;  /* #000000; /*  #b05555  */
	padding: 5px 15px;
	margin: 0;
	text-decoration: none;
	color: #FBFBFB;
}

ul.navigation li a.active /* Active Page */
{
	background-color: #d87a83; 
	color: #000000;
}

ul.navigation li a:active /* On Click */
{
	background-color: #d87a83; 
	color: #000000;
}

ul.navigation li a:hover /* Mouse Over */
{
	text-decoration: underline;

	/*  outline:solid;
	outline-width:thin
	outline-color: FBFBFB;
	*/
}


/* Form Styles -------------------------------------------------------------------------------------------------*/

#formdiv {
}

form {
	width: 600px;
	text-align: left;
}

form div{
	width: 200px;
	display: -moz-inline-box;  /* for Mozilla based browsers */
	display: inline-block;  /* IE5/Mac needs these to have a set width. Change it when necessary. */
	text-align: right;
}

form input, select, textarea {
	width: 200px;
	border: inset #DDDDDD 1px;
	vertical-align: top;
	text-align: left;
}

form textarea {
	width: 350px;
	border: inset #DDDDDD 1px;
	vertical-align: top;
	text-align: left;
}

form span {
	width: 200px;
}

form #submit{
	border: outset black 1px;
	text-align: center;
	margin-left: 150px;
	width: 300px
}

/* Headlines */

h1 {
	font-size: 170%;
}

h2 {
	font-size: 130%;
}

/* Links */

a:link {
	color: #97313a; /*  #006699; */
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #97313a;
}
a:hover {
	text-decoration: underline;
	color: #d87a83;
}
a:active {
	text-decoration: none;
	color: #d87a83;
}

/* Miscellaneous Reusable Classes */

.inline {
	display: -moz-inline-box;  /* for Mozilla based browsers */
	display: inline-block;  /* IE5/Mac needs these to have a set width. Change it when necessary. */
	vertical-align: top;
	padding: 10px;
}

.indent {
	margin-left: 20px;
}

.hideMe {
	visibility: hidden;
	height: 0px;
	font-size: 0px;
}

.showMe {
	visibility: visible;
	height: auto;
	font-size: 100%;
}

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

