@charset "utf-8";
body {
	font-size: 15px;
	font-family: arial;
	background: #335533;
	/*background: #557755;*/
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 0px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	/*color: #42413C;*/
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	/*color: #6E6C64;*/
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	min-width: 900px;
	max-width: 1400px;
	background: #FFF;
	padding: 0px 5px;
	min-height: 100%;
	height: 100%;
	border: 2px solid;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	background: white;
	border-bottom: 2px solid black;
	padding: 5px 0px;
}

#title {
	font-size: 45px;
	color: #006600;
	font-weight: bold;
	margin: 0px;	
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

.content {
	padding: 10px 0px;
}

.info {/*
    border: 2px solid #ACA;
    border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
    padding: 5px 10px 10px 10px;
    margin: 10px 0;	*/
	border: 2px solid #000;
	/*padding: 5px 10px 10px 10px;*/
	margin: 10px 0;
}

.info h1 {
	/*font-size: 16px;
	background-color: 
	text-decoration: underline;
	font-weight: bold;
	font-style: 
	*/
	font-size: 16px;
	background-color: #006600;
	/*text-decoration: underline;*/
	font-weight: bold;
	color: #FFFFFF;
}

.info p{
	padding: 5px 10px 10px 10px;
}

.info h1,p {
	padding: 5px 10px 10px 10px;
}

.info ol, ul {
	padding-left: 40px;
	margin-bottom: 10px;
}

#welcome {
   font-size: 40px;
   padding: 5px 10px 10px 10px;
}

/*
#welcomeimg {
   float: right;
   padding: 10px;
   margin: 0;
}
*/
#sampleimg {
	float: right;
    width: auto;
    height: auto;
    border: 1px solid #888;	
}

.button, .button:link, .button:visited
{
   display: block;
   cursor: pointer;
   color: #FFFFFF;
   background-color: #006600;
   font-weight: bold;
   font-size: 12px;
   width: 120px;
   text-align: center;
   margin-top: 10px;
   padding: 0px;
   padding-top: 3px;
   padding-bottom: 4px;
   border: 1px solid #FFFFFF;
   outline: 1px solid #006600;
   text-decoration: none;
   margin-left: 1px;
}

.button:hover, .button:active
{
   background-color: #669966;
}

/* ~~ tabs for calculator ~~ */
#tab_container {
   background-color: #FFF;
   margin-top: 15px;
   overflow: hidden;
   border-bottom: 6px solid #336600;
}

#results_image {
	border: 1px solid;
	padding: 0px;
}

#tab_container ul
{
   list-style: none;
   margin-bottom: 5px;
   padding: 0;
}

#tab_container ul li
{
   float: left;
   cursor: pointer;
}

#tab_container ul li a
{
   font-size: 20px;
   color: white;
   text-decoration: none;
}

.tab
{
   font-size: 20px;
   margin-right: 3px;
   padding: 5px;
   color: white;
   background-color: #666;
   border: 0px solid #777;
   -moz-border-radius-topleft: 5px;
   -moz-border-radius-topright: 5px;
   border-top-left-radius: 5px;
   border-top-right-radius: 5px;
   border-bottom: none;
}

.tab_content {
	display: none;
	height: 600px;
	overflow: auto;
	padding: 20px;
	border: 1px solid black;
}

#bar
{
   border-top: 6px solid #336600;
   width: 100%;
}

/* ~~ Some style for the options tab ~~ */

.categoryhead
{
    margin-bottom: 20px;
    float: left;
    background-color: #77DD77;
    background-image: url(../images/arrow-right-3.png);
    background-repeat: no-repeat;
    background-position: 7px 3px;
    padding-left: 30px;
    font-size: 18px;
    font-weight: bold;
    width: 700px;
    cursor: pointer;
    border: 0px solid black;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.category
{
	display: none;
    clear: both;
    margin-left: 25px;
    margin-bottom: 20px;
    max-width: 675px;
}

.category table {
	border: 1px solid black;
}
/*#tab_container ul li a:visited
{
   font-size: 20px;
}*/

.uncheck_button {
	margin-top: 30px;
	margin-left: -80px;	
}
.ecosystem_table {
	font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
	font-size: 12px;
	width: 600px;
	border-collapse: collapse;
	border-spacing: 2px;
	border-color: gray;
	margin-top: 10px;	
}

.ecosystem_table th {
	font-weight: normal;
	font-size: 13px;
	color: #039;
	padding: 8px;	
}

.ecosystem_table td {
	background: #E8EDFF;
	border-top: 1px solid white;
	color: #336;
	padding: 2px;	
}

#add_table {
	font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
	font-size: 12px;
	border: 1px solid;
	width: 100%;
	margin-bottom: 5px;
}

#add_table td {
	border-top: 1px solid white;
	padding: 2px;	
}

#add_table th {
	font-weight: normal;
	font-size: 13px;
	color: #039;
	padding: 8px;
}

#add_table thead tr{
	border-bottom: 1px solid;
}

#edit_user {
	position: absolute;
	display: none;	
}

#alpha {
	font-size: 20px;
	color: #990000;	
	padding-top: -10px;
}

#tab_info ul {
	list-style: none;
	padding-left: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid black;	
}

#tab_info li {
	margin-bottom: 10px;	
}

#disable_div {
	display: none;
	z-index: 1001;
	position:absolute; 
	top:0%;
	left: 0%;
	width:100%;
	height: 100%;
	background-color: #000000; 
	opacity:0.5; 
	filter:alpha(opacity=50);
}

#popup_div {
	padding: 20px;
	display: none;
	position: absolute;
	z-index: 1002;
	top: 50%;
	left: 50%;
	max-width: 80%;
	max-height: 80%;
	background-color: #FFFFFF;
    border: 5px solid #336600;
    -moz-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border-radius: 10px;
	opacity: 1;
	filter:alpha(opacity=100);
	overflow: auto;
}

#remove_ecosystem {
	disabled: true;
}

#logo_div {
	float: left;
	height: 55px;
	width: 55px;
	margin-right: 3px;
	background-image: url('../images/logo.png');
	background-repeat: no-repeat;
}

#legend {
	margin-top: 10px;
	margin-left: 25px;
}

.legend_item {
	height: 10px;
	width: 20px;
	border: 1px solid;
	float: left;
	margin-top: 2px;
	margin-right: 5px;
}

#CO2_legend {
	background-color: #000066;
}

#CH4_legend {
	background-color: #66FF66;
}

#N2O_legend {
	background-color: #660000;
}

#view_png {
	margin-top: -3px;
}

.legend_label {
	float: left;
	margin-right: 10px;
}

#status {
	color: red;
	display: none;
	padding: 0;	
	float: left;
	margin: 0;
	margin-left: 10px;
}

.mainView {
	padding: 10px 0;
	display: none;
	overflow: auto;
}

/* ~~ The footer ~~ */
.footer {
   border-top: 2px solid #222;
   clear: both;
   display: inline-block;
   font-size: 12px;
   padding: 20px 0px 10px;
   text-align: center;
   width: 100%;
}

/* ~~ miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
