@charset "utf-8";
/********** For all pages ***********/
html {
    overflow-y: scroll; /*puts scroll bar on each page*/
}

body {
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    margin: 0; /* it's good practice to zero the margin and of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center;
    color: #111; /*color of the text*/
    font-size: 0.7em;
    line-height: 1.4em;
}

#container {
    position: relative; /* allows other elements to be positioned */
    width: 900px; /* width of the content area */
    height: 100%;
    margin: 0px auto; /* centers the container */
    text-align: left;
    background-color: transparent;

    margin-bottom: 0px; /* leaves 20px space at the bottom of the page */
    /* The following CSS3 is supported by firefox, safari but NOT IE./
     -moz-border-radius-bottomright: 25px;
     -webkit-border-radius-bottomright: 25px; */
   background-image: url(../images/all_pages/main_shadow1.png);

}


#container * {
    background: #FFFFFF;
}

/********* Header formatting ********/
#header { /* contains the logo on the left, flags and Log In link on the right */
    height: 87px;
    background: #FFF;
    padding: 6px 0;
    width: 850px;
    margin: 0 auto;
}

#header #logo { /* float: left allows the logo and flags to be side by side */
    width: 50%;
    float: left;
}

#header #logo img { /* moves image to the right by 20px */
    margin-left: 20px;
}

#header #flags {
    width: 395px; /* This sets the right margin of the flags to 30px from the right margin */
    float: left; /* because 50% of 850px is 425px and 425px-30px = 395px */
    text-align: right;
}

/* If the .shaded class is added to a flag, it will turn transparent.
 * The four lines of code do the same thing, but different browsers supports a different versions */
#header #flags .shaded {
    opacity: 0.4;
    filter: alpha(opacity = 40); /* for IE support */
}

#header a { /* for signin link */
    text-decoration: underline;
}

/******** Navigation menu *********/
#navcontainer {
height:20px;
    width: 850px;
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 1em;
    text-align: left;
    line-height: 1.6em;
    vertical-align: top;
    color: #ff9900;	
    position: relative;
}

#navcontainer * {
    background-color: transparent; /* So that the background is visible */
}

#navcontainer .mainmenu { /* mainmenu is the top row of links */
    width: 100%;
    width: 850px;
    height: 100%;
    overflow: hidden;
    margin-bottom: 1px;
}

#navcontainer .submenu { /* submenu is the bottom row */
    width: 100%;
    width: 850px;
    position: absolute;
    top: 21px;
    height: 20px;
    left: 0;
    background-color: #E9F4E3;
    width: inherit; /* gets the same width and align as the #navcontainer */
    overflow: hidden;
}

#navcontainer .hidemenu { /* the hidemenu class makes sure that specific submenus are hidden */
    width: 100%;
    width: 850px;
    display: none; /* to display a submenu, delete this class from the div containing it */
}

/* currently, the orange dividers between the links in the navigation menu are images which are
 * attached to the right every link by the background-image attribute. The padding and margins adjust the
 * the links so that they were evenly spaced.	*/
#navcontainer *.selected2, #navcontainer a {
    padding: 0 7px;
    margin: 0 0 0 -5px;
    background-image: url(../images/all_pages/divider.png);
    background-position: 100% 90%;
    background-repeat: no-repeat;
}

#navcontainer *.selected {
    color: #005120;
    cursor: default;
}

#navcontainer *.selected:hover {
    text-decoration: none;
}

#navcontainer *.last { /* The last link in the menu should not have a divider on the bottom*/
    margin: 0 0 0 0;
}

#navcontainer .mainmenu a {
    display: inline-block;
    padding-bottom: 4px;
    background-position: 100% 40%;
    background-repeat: no-repeat;
}

/*********** MAIN CONTENT **************/
#maincontent {
    width: 850px; /* 50px smaller than the width of the container (800px) */
    margin: 0 auto; /* centers elements like this div */
    color: #444;
    text-align: center;
    padding-bottom: 100px; /* Adds blank space to the bottom before the footer */
    min-height: 400px; /* sets minimum height of the page so that short pages */
}

#maincontent * {
    margin: 0;
    background-color: transparent;
}

#maincontent p, /* p = paragraph, ol = ordered list, ul = unordered list */
#maincontent ol, #maincontent ul {
    text-align: left;
    padding: 5px 45px 15px 45px;
    height: 100%;
}

#maincontent li { /* li = list element, the actual bullet point that shows up */
    margin-bottom: 15px;
}

#maincontent a img {
    border: none;
}

#maincontent #greenbar {
  //  background-color: #B5D99B;
    height: 0em;
}

#maincontent h1, /* clear: both makes sure that the header has nothing to */
#maincontent h2, /* it's left and right i.e. puts it on a new line  		 */
#maincontent h3, #maincontent h4, #maincontent h5 {
    width: 100%;
    clear: both;
    overflow: hidden;
    background-color: transparent;
}

#maincontent h1 { /* Main heading with the title of each page */
    font-size: 1.65em;
    font-weight: normal;
    color: #578631;
    line-height: 1.3em;
    margin-top: 30px;
    margin-bottom: 20px;
}

#maincontent h2 { /* subheading */
    font-size: 1.1em;   
    color: #578631; /* greenish */
    text-align: left;
    padding-left: 45px;
    padding-bottom: 10px;
}

#maincontent h3 { /* orange headline in the middle of information pages */
    font-weight: normal;
    color: #FF9900;
    line-height: 1.4em;
    margin-bottom: 8px;
    margin-top: 10px;
}

#maincontent h4 { /* Used as headlines on the events page */
    background-color: #e9f4e3;
    font-size: 1.2em;
    line-height: 1.4em;
    margin: 30px auto 0 auto;
    width: 83%;
}

#maincontent h5 { /* orange gradient date heading used on news page */
    background-image: url(../images/news/news_orange.jpg);
    background-repeat: repeat-y;
    color: white;
    text-align: left;
    font-size: 1em;
    margin: 20px 0 3px 45px;
    padding-left: 2px;
    line-height: 1.4em;
}

#maincontent h6 { /* box titles on the index.html page */
    font-size: 1.2em;
    padding: 5px;
    margin: 0;
    background: #ddd;
}

#maincontent h7 { /* city titles on contact us page */
    background-repeat: repeat-y;
    color: black;
    text-align: left;
    font-size: 1.5em;
    margin: 0;
    padding: 0;
    line-height: 1.6em;
}

#maincontent img { /* all images are centered and have spacing at the top */
    margin: auto auto;
    padding: 20px 0;
    text-align: center;
}

#maincontent img.flashImage { /* formatting for images that replace flash files when there is no flash player */
    margin: 0;
    padding: 0;
    float: left;
}

#maincontent img.figure { /* used to make diagrams not be detached from the text */
    padding: 20px 0 0 0;
}

#maincontent .caption { /* used on the our technology page as captions under the graphs */
    text-align: center;
    font-size: 0.90em;
    font-weight: bold;
    padding: 0 0px 50px;
}

#maincontent .sidebar {
    color: #808080;
}

#maincontent .leftcol, #maincontent .rightcol {
    width: 50%;
    float: right;
    margin: 0 auto;
    padding: 10px 0px;
}

#maincontent .leftcol {
    float: left;
}

#maincontent .leftcol p, #maincontent .rightcol p {
    padding: 10px 25px;
}

#maincontent a.readmore { /* classes for the read more links on news pages, etc */
    font-size: 0.9em;
    text-align: right;
    font-style: italic;
    padding-right: 12px;
    background-position: 100% 85%; /* x% y% */
    background-repeat: no-repeat;
    line-height: 0.7em;
}

#maincontent a.readmore:hover {
    color: #61AE2C;
    text-decoration: underline;
}

#maincontent div p sup {
	font-size:9px;
	line-height:10px;
}

#maincontent a.backpage {
    font-size: 1em;
    line-height: 0.7em;
}

/************* PAGE SPECIFIC FORMATTING *************/
/* FOR THE HOME PAGE SIDE BAR ON THE LEFT*/
#maincontent #sidebar {
    float: left;
    width: 170px;
    text-align: left;
    height: 100%;
    padding: 15px 5px;
    color: #6F6F6F;
    margin-right: 10px;
}

#maincontent #sidebar input {
    border-width: 1px;
    border-color: #999;
    width: 100px;
}

#maincontent #sidebar input#h_submit {
    border-color: #999;
    height: 17px;
    width: 61px;
}

#maincontent #sidebar .box {
    width: 100%;
    height: 400px;
    padding: 3px;
    border-right: 1px solid #C6C6C6;
}

#maincontent #sidebar p {
    padding: 2px 3px;
    margin: 0;
    text-align: left;
    line-height: 1.3em;
}

#maincontent #sidebar .box .newsbox {
    width: 97%;
    height: 850;
    margin: 30px auto;
}

#maincontent #sidebar .box .newsbox .content {
    margin: 0;
    font-size: 0.8em;
    padding: 0;
}

#maincontent #sidebar .box .newsbox .content .hz_line {
 width: 90%;
 height: 1px;
 background-color: #C6C6C6;
 text-align: left;
}

#maincontent #sidebar .box .newsbox .content h6 {
 background-color: white;
 text-align: left;
}

#maincontent .bottomleftcorner, #maincontent .topleftcorner, #maincontent .bottomedge, #maincontent .topedge {
    margin: 0;
    height: 5px;
    width: 90%;
    background-position: top right;
    background-repeat: no-repeat;
    background-attachment: scroll;
    float: right;
}

#maincontent .bottomedge {
    background-position: bottom right;
}

#maincontent .bottomleftcorner, #maincontent .topleftcorner {
    float: left;
    width: 16px;
    background-position: bottom left;
}

#maincontent .topleftcorner {
    background-position: top left;
}

#maincontent #maincol {
    float: left;
    width: 650px;
}

/* FOR THE INSTALLATIONS PAGE FOR THE SIGNIN BUTTON */
#maincontent img.button {
    position: relative;
    top: 3px;
    padding: 0;
}

/* FOR THE CONTACT US PAGE */
#maincontent #contactpage p {
    text-align: center;
}

#maincontent #contactpage {
}

/* FOR THE EVENTS PAGE */
#maincontent p.info {
    padding-left: 0;
    margin: 5px 0;
    line-height: 1em;
    font-size: x-small;
}

/*FOR THE TIGO TEAM PAGE AND THE ADVISORS PAGE */
#maincontent #allmem {
    float: left;
    width: 31%;
    background-color: #FFF;
    font-size: 0.8em;
    line-height: 0.8em;
}

#maincontent #allmem table {
    border-spacing: 0 10px;
    margin: 0 auto;
    background-color: transparent;
}

#maincontent td {
    vertical-align: bottom;
    text-align: left;
    width: auto;
}

#maincontent td.memberinfo {
    padding: 0 0 4px 0;
    line-height: 1.25em;
}

#maincontent td * {
    padding: 0;
}

#maincontent #selectedmem td.memberinfo {
    padding: 0 0 7px 0;
    line-height: 1.25em;
}

#maincontent #selectedmem {
    float: left;
    width: 68%;
    border-left: 1px solid #ccc;
    text-align: left;
    margin-bottom: 30px;
}

#maincontent #selectedmem #header {
    height: 100%;
    clear: both;
    padding-left: 15px;
    padding-bottom: 10px;
    font-size: 1.3em;
    font-weight: bold;
    width: auto;
}

#maincontent #selectedmem img {
    float: left;
    padding: 0;
    margin: 0;
}

#maincontent #selectedmem p {
    padding: 5px 35px 10px 25px;
    text-align: left;
}

#maincontent #allmem a {
    margin: 0;
    color: #888;
    font-weight: bold;
}

#maincontent a:hover {
}

#maincontent *.title {
    color: #999999;
    font-size: 0.8em;
}

/*********** FOOTER ***************/
#container #footer {
    height: 3.8em;
    width: 850px;
    margin: 0 auto;
    font-size: 0.8em;
    text-align: center;
    clear: both;
}

#container #footer_border {
	width: 900px;
	height: 1em;
	margin: 0 auto;
	clear: both;
	background-image: url(../images/all_pages/main_shadow_lower.png);
}

table#footerTrans {
 background-color:transparent;
}

#container #footer_home {
    height: 1.8em;
    width: 900px;
    margin: 0 auto;
    font-size: 0.8em;
    text-align: left;
    background-color: #DFEFD4;
    clear: both;
}

/************ TAG FORMATTING **************/
a {
    text-align: left;
    border: none;
    outline: none;
}

a img {
    border: none;
    outline: none;
}

a:link {
    color: #61AE2C;
    text-decoration: none;
}

a:visited {
    text-decoration: none;
    color: #61AE2C;
}

a:hover {
    text-decoration: underline;
    color: #FF9900; /* links turn orange when hovered over */
}

a:active {
    text-decoration: none;
    color: #61AE2C;
}

#maincontent hr { /* margins around horizontal rule */
    clear: both;
    width: 95%;
    margin: 20px auto;
    color: #ddd;
}

#maincontent br {
    margin: 0;
    padding: 0;
}

#maincontent div p sup {
    font-size: 8px;
}

a#tool {
	background-image:url('../widget/img/tool.jpg');
	background-repeat:no-repeat;
	margin-left: 25px;
	margin-top:15px;
	padding-top:12px;
	display:block;
	text-align:center;
	height: 40px;
	width: 200px;
	color: white;
	font-size: 14px;
	font-weight: bold;
	cursor:pointer;
}
					
a#tool:hover {
	background-image:url('../widget/img/tool_hover.jpg');
	text-decoration: none;
}


a#learn_more {
	background-image:url('../images/resource_center/Learn_more1.png');

	text-align:center;
	position:absolute;
	bottom:300px;
	right:335px;
	display:block;
	width:250px;
	height:30px;
       cursor:pointer;
	color: white;

     
}
					
a#learn_more:hover {
	background-image:url('../images/resource_center/Learn_more2.png');
}


#button {
       background-image:url('../images/green_button.png');
	background-repeat:no-repeat;
	display:block;
	text-align:center;
	height:50px;
	color: white;
	width:164px;
       cursor:pointer;

	padding-top:6px;
	padding-left:2px;
	padding-right:12px;
}

table#comparison {
	border:2px solid #999;
	background-color:#ecebeb;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	margin:0 auto;
}
						
table#comparison td, table#comparison th {
	padding:5px;
	width:160px;
	text-align:left;
	border-bottom:1px solid #999;
	border-right:1px solid #999;
}

table#comparison tr.last-row td {
	border-bottom:none !important;
}

table#comparison tr td.last-cell, table#comparison tr th.last-cell {
	border-left:none;
}


table#flags_table {
	background-color:#B5D99B;
	color:black;
	margin:0 auto;
}
	

#fddm
{	margin: 0;
	padding: 0;
	text-align:left;
	position: relative;
	z-index: 200
}

#fddm li
{	margin: 0;
	padding: 0;	
	text-align:left;
	list-style: none;
	float: left;
	font: bold 11px arial
}


#fddm li a
{	display: block;
	margin: 0 1px 0 0;
	padding: 4px 10px;
	width: 100px;
	background: #FFF;
	color: #B5D99B;
	text-align: left;
	text-decoration: none
}


#fddm div
{	position: absolute;
	visibility: hidden;
	text-align: left;
 	padding-left: 0;
	margin: 0;
	padding: 0;
	background: #FFF;
}


#sddm
{	
	margin: 0;
	padding: 0;
	position: absolute;
	z-index: 100
}

#sddm li
{	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	font: bold 11px arial
}

#sddm li a
{	display: block;
	margin: 0 1px 1px 0;
	padding: 4px 0px 4px 0px;
	width: 120px;
	height: 15px;
	position:relative;
	word-wrap: normal;
	background: #5fac28;

	color: #FFF;
	text-align: center;
	text-decoration: none
}

#sddm li a:hover
{	background: #3a6a19;
}

#sddm div
{	position: absolute;
	visibility: hidden;
	margin: 0;
	padding: 0;
	background: #FFF;
	border: 1px solid #5fac28
}

#sddm div a
{	position: relative;
	display: block;
	margin: 0 0 1px 0;
	padding: 5px 10px;
	width: 98px;
	height: 100%;
	word-wrap: break-word;
	text-align: center;
	text-decoration: none;
	background: #5fac28;

	color: #FFF;
	font: 11px arial
}

#sddm div a:hover
{	background: #3a6a19;
	color: #FFF
}

