/* BEC.css
 * 2 column CSS layout for the Bridge Event Center
 * Last revision: 2011-05-09
 */

/* BEC colors
	rgb(20,60,25) - dark green
	rgb(148,189,165) - OLD medium gray/green
	rgb(148,192,166) - NEW medium gray/green
	rgb(200,224,210) - light gray/green
*/

body{
	font-family: Arial,sans-serif;
	color: black;
	line-height: 1.2em;
	font-size: 1em;
	margin: 0px;
	padding: 0px;
}

/* Photo montage for home page */
#montage {
	background-image: url(images/BECmontage2.jpg);
	background-repeat: repeat-x;
	height: 130px;	/* IE6 treats as min-height */
/*	background-position: top;	*/
	background-color: rgb(200,224,210);
	color: black;
}
html>body#montage {	/* IE doesn't understand child-selectors;
				this is for non-IE browsers */
	min-height: 130px;
}
#mnav {
	background-color: rgb(200,224,210);
	color: rgb(20,60,25);
	text-align: center;
	padding: 15px 0;
}
#mnav a:link, #mnav a:visited, #mnav a:hover {
	color: rgb(20,60,25);
	text-decoration: none;
	padding-right: 30px;
}
#mnav a:hover {
	text-decoration: underline;
}
#mnav .thispage {
	font-weight: bold;
	padding-right: 20px;
}

#contentground {
	background-color: rgb(148,192,166);
	padding: 0 1.5em 2ex;
}

#pagecontent {
	background-color: white;
	color:black;
	margin: 0px 3em;
	padding: 1ex 1.5em;
}

.footer {	/* styled to go over med-green */
	color: rgb(20,60,25);
	text-align:center;
	font-size: 80%;
}
.footer a:link, .footer a:visited, .footer a:hover,
#pagecontent a:link, #pagecontent a:visited, #pagecontent a:hover {
	color: rgb(20,60,25);
	text-decoration: underline;
}
		
/* Layout Divs                                 */
/***********************************************/
#masthead{
	margin: 0;
	padding: 10px 0px 0px 0px;
	border-bottom: 1px solid rgb(255,191,0);
	width: 100%;
}

#navBar{
	margin: 0 79% 0 0;
	padding: 0;
	background-color: rgb(255,243,213);
	border-right: 1px solid rgb(255,191,0);
	border-bottom: 1px solid rgb(255,191,0);
}

#belowNavBar{
	/* top margin to ensure we're out of the colored box */
	margin: 2em 79% 0 0;
	padding: 0;
	/* use page's */
	/* background-color: rgb(255,243,213); */
	border-style: none;
}

/* not using this... yet? */
#content{
  float:right;
	width: 75%;
	margin: 0;
	padding: 0 3% 0 0;
}

h1 {
	font-size: 125%;
}
h2 {
	font-size: 115%;
	margin-bottom: 0;
}
h3 {
	font-size: 105%;
	margin-bottom: 0;
}
ul {
	margin-top:0;
}
hr {
	width: 50%;
	border-top: 1px solid rgb(20,60,25);
	height: 1px;
}

/*********** image styles **************/
.pix {	/* image floated inside a <p> */
	float: right;
	padding: 0px 0px 5px 5px;
	margin: 0;
	border-style: hidden;
	border-width: 0;	/* because MSIE is hard of hearing */
}
.lpix {
	float: left;
	padding: 0px 5px 5px 0px;
	border-style: hidden;
	border-width: 0;
}
.poppix {
	float: right;
	margin: 0 0 5px 5px;
	padding: 0;
	border: #700 dotted 1px;
}
.lpoppix {
	float: left;
	margin: 0px 5px 5px 0px;
	padding: 0;
	border: #700 dotted 1px;
}

/*********** popover info bubbles ************/
div.popover {
	/* must set the display:none locally, else it won't work on first click */
	/* display:none; */
	/* positioning handled by a containing <div> */
	/* position:absolute; */
	z-index: 10;
	/* images cropped to 400px */
	width: 404px;	/* height expands as needed */
	border:1px solid rgb(20,60,25);
	background-color: rgb(200,224,210);
	color: black;
	padding:4px;
}
div.closeX {	/* pseudo close control at upper right */
	float:right;
	color: gray;
	font-weight: bold;
	padding: 0 2px;
	margin: 0 0 0 3px;
	border:1px solid rgb(20,60,25);
	cursor:hand;	/* for some old IE versions? */
	cursor:pointer;
}
a.popover {
	outline:none;
	text-decoration:underline;
	cursor:hand;
	cursor:pointer;
}

/*********** forms, tables, what-not ************/
label {
	font-weight: bold;
}
label.lft{
	float: left;
	width: 10em;
	text-align: right;
	margin-right: 1em;
}
#submitbutton {
	margin-top: 0.5ex;
	width: 6em;
}
.req {
	color: red;
	font-weight: bold;
}
.rt {
	text-align: right;
}
tr.stripe {
	background-color: rgb(200,224,210);
}
td.stripe {
	background-color: rgb(200,224,210);
	border: 1px solid black;
}

