@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*/
    background-image: url(../images/all_pages/tigo_page_main_background.jpg); /*gradient*/
    background-repeat: repeat-x;
    background-attachment: fixed;
    background-color: #5FAC28;
    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: 20px; /* 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;
     border: 0px solid #FFF;	*/
    background-image: url(../images/all_pages/main_shadow1.png);
    background-repeat: repeat-y;
}

#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 {
    width: 100%; /* makes the links take up an entire row */
    width: 850px;
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 1em;
    text-align: center;
    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 *.selected, #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: #FF9900;
    cursor: default;
}

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

#navcontainer *.last { /* The last link in the menu should not have a divider to its right */
    background: none; /* You don't have to worry about using this class */
}

#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: 1.7em;
}

#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: 8px;
    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 h3 sup { /* orange headline in the middle of information pages */
	font-size:10px;
	line-height: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 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;
    padding-right: 12px;
    background-image: url(../images/green_triangle.jpg);
    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: 450px;
    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%;
    margin: 30px auto;
}

#maincontent #sidebar .box .newsbox .content {
    border-left: 1px solid #C6C6C6;
    border-right: 1px solid #C6C6C6;
    margin: 0;
    font-size: 0.8em;
    padding: 0;
}

#maincontent #sidebar .box .newsbox .content h6 {
}

#maincontent .bottomleftcorner, #maincontent .topleftcorner, #maincontent .bottomedge, #maincontent .topedge {
    margin: 0;
    height: 5px;
    width: 90%;
    background-image: url(../images/home/edge.gif);
    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: 1.8em;
    width: 850px;
    margin: 0 auto;
    font-size: 0.8em;
    text-align: center;
    background-color: #DFEFD4;
    clear: both;
    /* The following CSS3 is supported by firefox, safari but NOT IE.
     -moz-border-radius-bottomright: 25px;
     -webkit-border-radius-bottomright: 25px;
     border: 0px solid #FFF; */
}

/************ 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;
}


