/*****************************/
/*** Core html setup stuff ***/
/*****************************/

html {
  height: 100%;
  margin-bottom: 1px;
}

form {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Sans', sans-serif;
  color: black;
  margin: 0px 0px 0px 0px;
  font-size: 12px;
  line-height: 130%;
}


/* Normal link */
a {
  color: #006699;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: #333333;
  text-decoration: underline;
}

input.button { cursor: pointer; }

p { margin-top: 0; margin-bottom: 5px; }

img { border: 0 none; }

li {
  margin-top: 14px;
  margin-left: -10px;
}

/*****************************************/

div#container {
  position: absolute;
  left: 0;
  top: 0;
  float: top;
  width: 600px;
  height: 100%;
  vertical-align:top;
}

div#center_container {
  position: relative;
  margin-left: auto ;
  margin-right: auto ;
  width: 600px;
}

div#headercontainer {
  float: top;
  margin-top: 10px;
}

div#header {
  width: 600px;
  height: 194px;
}

div#middle {
  width: 600px;
  margin-top: 2px;
  background-color: white;
}

div#menu {
  display: none;
}

div#menucontents {
  display: none;
}

div#contents {
  padding: 10px;
}

div#bottom {
  position: relative;
  float: top;
  margin-top: 2px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  width: 600px;
  height: 185px;
}

/*****************************************/

div#clear {
  /* alinha floats - colocar apos os divs flutuantes */
  clear: both;
}

/*****************************************/

/* titulos  */
.componentheading, .contentheading, h1, h2 {
  margin: 0;
  letter-spacing: 2px;
  font-family: 'Noto Sans', sans-serif;
  color: #2D481F;
  font-size: 16px;
  padding-left: 0px;
  padding-bottom: 16px;
  margin-bottom: 10px;
  text-align: left;
  text-transform: uppercase;
}

a.category {
  font-weight: bold;
  font-family: sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: left;
}

strong {
}


/* Tabelas */

table {
  font-size:13px;
}

table.prog {
  color: black;
  margin: 3px;
  border: black 1px solid;

  -moz-border-radius:3px;
  -webkit-border-radius:3px;
  border-radius:3px;

  -moz-box-shadow: 0 1px 2px #d1d1d1;
  -webkit-box-shadow: 0 1px 2px #d1d1d1;
  box-shadow: 0 1px 2px #d1d1d1;
}

table.prog tr {
  padding-left: 2px;
}
table.prog td:first-child {
  border-left: 0;
}
table.prog td {
  padding: 3px;
  border-top: 1px solid white;
  border-bottom:1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  vertical-align: middle;
}
table.prog td strong{
  color: #004951;
}
table.prog tr.even td {
  background: #f6f6f6;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f6f6f6));
  background: -moz-linear-gradient(top,  #f8f8f8,  #f6f6f6);
}
table.prog tr:last-child td {
  border-bottom:0;
}
table.prog tr:last-child td:first-child {
  -moz-border-radius-bottomleft:3px;
  -webkit-border-bottom-left-radius:3px;
  border-bottom-left-radius:3px;
}
table.prog tr:last-child td:last-child {
  -moz-border-radius-bottomright:3px;
  -webkit-border-bottom-right-radius:3px;
  border-bottom-right-radius:3px;
}

table.prog2 {
  color:#black;
  font-size:13px;
  margin: 0;
  border: 1px dotted #0097A8;
}

table.prog2 tr {
  padding-left: 2px;
}
table.prog2 td {
  padding: 6px;
  border-bottom: #0097A8 0 solid;
}

/* HR */

hr { 
  border: 0; 
  height: 1px; 
  background-image: -webkit-linear-gradient(left, #666666, #8c8b8b, #f0f0f0);
  background-image: -moz-linear-gradient(left, #666666, #8c8b8b, #f0f0f0);
  background-image: -ms-linear-gradient(left, #666666, #8c8b8b, #f0f0f0);
  background-image: -o-linear-gradient(left, #666666, #8c8b8b, #f0f0f0); 
}


