@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFC0;
	/*background-image:url(images/bee2.png);*/
	/*background-attachment:fixed;*/
	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;
}

h1 {
	color:#000000;
	font-size:30px;
}

h2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:large;
	color:red;
}

h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-small;
	font-style: normal;
	line-height: 4px;
	font-weight: lighter;
}

#container { 
	width: 80%;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) centres the page */
	/*border: 1px solid #000000;*/
	text-align: left; /* this overrides the text-align: center on the body element (put there for IE6 compatibility). */
} 
#header { 
	background-image:url(images/yellowfade.jpg);
	background-repeat:repeat-x;
	
	padding: 0 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
#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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybLtHdr #sidebar1 p" rule.
*/
.twoColHybLtHdr #sidebar1 {
	float: left; 
	width: 300px; /* since this element is floated, a width must be given */
	background: white; /* background color is displayed for the length of the content but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div  */
	margin: 0px; /* puts sidebar flush with container and header */
}
.twoColHybLtHdr #sidebar1 h3, .twoColHybLtHdr #sidebar1 p {
	margin-left: 5px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.twoColHybLtHdr #sidebar1 h3, .twoColHybLtHdr #sidebar1 ul {
	margin:10px; /* puts 10px around the entire ul */
	padding:0;
}

.twoColHybLtHdr #container #sidebar1 li {
	background-image:url(images/menu-left.jpg);
		background-repeat:no-repeat;
	background-position:left;
	padding-right:20px; 
	margin-right:20px;
	width:280px; /*pushes rhs of area out to make space for bee logo */
	display:block;
	margin-bottom:5px; /*spaces out elements a bit */
}

.twoColHybLtHdr #container #sidebar1 a {
	padding:0;
	margin:0;
	color: black;
	text-decoration: none;
	background-image:url(images/menu-right.jpg);
	background-repeat:no-repeat;
	background-position:right; /*So curve on rhs is visible*/
	padding-left:20px; /*Places text this amount in from lhs of background */
	display:block; /* Makes this a tag full height of li (else just height of letters */
	margin:0;
	margin-left:20px;	/* moves a tag left a bit so li's left side background curve can be seen */
	padding-right:40px;
	outline: none;

}

.twoColHybLtHdr #container #sidebar1 a:hover {
	color: black;
	text-decoration: none;
	background-image:url(images/menu-hover-right.jpg);
	background-repeat:repeat;
	background-position:right;
	padding-left:20px; /*Moves text over further to allow for bee logo */
	display:block; /* Makes this a tag full height of li (else just height of letters */
	margin:0;
	margin-left:20px;	/* moves a tag left a bit so li's left side background curve can be seen */
	padding-right:50px;
}

.twoColHybLtHdr #container #sidebar1 a.selected {
	color: black;
	text-decoration: none;
	background-image:url(images/menu-selected-right.jpg);
	background-repeat:repeat;
	background-position:right;
	padding-left:20px; /*Moves text over further to allow for bee logo */
	display:block; /* Makes this a tag full height of li (else just height of letters */
	margin:0;
	margin-left:20px;	/* moves a tag left a bit so li's left side background curve can be seen */
	padding-right:50px;
}

.twoColHybLtHdr #container #sidebar1 a:visited {
	text-decoration: none;
}

.twoColHybLtHdr #container #sidebar1 #mainMenu {
	list-style-image: none;
	list-style: none;
	line-height: 47px;
}

.twoColHybLtHdr #container #sidebar1 .w3c a {  
	/* Note - I can't just say "#w3c a" here cos it would not be more specific than the "sidebar1 a" we are overriding */
	background-image:none; /* override background on main a tag in sidebar */
}

.w3c a img {
	/* I don't need the full definition here "#w3c" identifies it enough and I'm not overriding anything */
	border:none; /* get rid of horrid blue border */
}



/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
.twoColHybLtHdr #mainContent { 
	margin: 0 20px 20px 300px; /* big left margin gives space for sidebar */
} 

.twoColHybLtHdr #container #mainContent .form1 {
	width:90%;
	/*float:left;*/
}

.twoColHybLtHdr #container #mainContent .form1 label {
	color: #CC33CC;
	display:block;
	float:left;	/*put label at left and input to right of label */
	width:150px;
	text-align:right; /*text buts up against input */
	margin-top:10px; /*space lines apart */
	padding-right:5px; /*leave a gap between label and input */
}

.twoColHybLtHdr #container #mainContent .form1 input {
	width:60%; /* Try to fill remaining space in fieldset but still shrink if browser reduced */
	display:block; /* Forces it alongside the label */
	border-color:black;
	border-width:1px;
	margin-top:10px; /*space lines apart - must be same as label margin to line things up */
}

.twoColHybLtHdr #container #mainContent .form1 textarea { /*just the submit button in form1 */
	width:60%;
	display:block; /*Forces it alongside the label */
	border-color:black;
	border-width:1px;
	margin-left:150px; /*move inline with input fields */
	margin-top:10px;/* needed to get it level with label? */
	display:block; /* so it displays alongside label */
}

.twoColHybLtHdr #container #mainContent .form1 #submit{ /*just the submit button in form1 */
	width:auto; /*make it the size of the text */
	margin-left:150px; /*move inline with input fields */
	margin-bottom:10px;
}

.oneColLayout #mainContent { 
	margin: 0 20px 20px 20px; /* big left margin gives space for sidebar */
} 

.standard1, .standard2 {
	width:90%;
	/*float:left;*/
}

.standard1 label,
.standard2 label {
	color: #CC33CC;
	display:block;
	float:left;	/*put label at left and input to right of label */
	width:250px;
	text-align:right; /*text buts up against input */
	margin-top:10px; /*space lines apart */
	padding-right:5px; /*leave a gap between label and input */
}

.standard2 label {
	width: 170px; /*bit narrower */
}

.standard1 input,
.standard2 input, 
.standard1 select,
.standard2 select,
.standard1 textarea,
.standard2 textarea {
	width:50%; /* Try to fill remaining space in fieldset but still shrink if browser reduced */
	display:block; /* Forces it alongside the label */
	border-color:black;
	border-width:1px;
	margin-top:10px; /*space lines apart - must be same as label margin to line things up */
}

#date1
{
	float:left;  /* makes datepicker appear alongside */
}

#datepicker
{
	float:none; /*turn float back off */
}

#datepicker img
{
	margin-top:10px; /*align with rest of table*/
	margin-left:5px;
	border:0;
}

.standard1 #submit,
.standard2 #submit{ /*just the submit button in form standard1/2 */
	width:auto; /*make it the size of the text */
	margin-left:150px; /*move inline with input fields */
	margin-bottom:10px;
}

#rules_style li{
	margin-bottom:15px;
	text-align:justify;
}

.group {
	padding: 20px 0;
}

.contact_info {
	width:200px;
	float:left;
	margin:0;
	
}

.address {
	padding:0;
	padding-left:200px; /* to push it out level with end of contact info */
	margin:0;
	float:none;
}

.linkimage {
		border-color:black;
		margin-left:100px;
}

#createpass {
	float:left;
	margin:20px;	
}

.committeebutton {
float:left;
padding: 10px;
}

/*#BackButton {
	margin:20px;
}*/

#backform {
	float:left;
	margin:20px;	
}

.addressline {
margin:0;
margin-bottom:5px;
}

.fromaddress {
margin:0;
margin-bottom:5px;
text-align:right;
}

.explanation {
margin-left:100px;
}

.rxdata {
	color:red;
}

#warning {
font-size:smaller;
}

#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 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	z-index:1;
	background-color: #FFFFC0;
	text-align: center;
	font-size: small;
	visibility: visible;
}

#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: 10px 10px;*/ /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.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;
	
}


