html, body, #container {
    min-height: 100%; /*Sets the min height to the
    height of the viewport.*/
    width: 98%;
    height: 100%; /*Effectively, this is min height
    for IE5+/Win, since IE wrongly expands
    an element to enclose its content.
    This mis-behavior screws up modern
    browsers*/
    margin: 0;
    padding: 0px;
    padding-right: 10px;
    clear: both;
}

html>body #container {
    height: auto; /*this undoes the IE hack, hiding it
    from IE using the child selector*/
    padding-bottom: 40px;
    clear: both;
}


/* GENERAL */

img
{
    vertical-align:middle;
}

.spinner {
    padding: 5px;
    position: absolute;
    right: 0;
}

.box1 {
    line-height: 12px;
    padding: 5px 0;
}

body {
    background: #fff;
    color: #333;
    font: 11px "Bitstream Vera Sans", "Tahoma", Verdana, Arial, Helvetica;
    min-height: 100%;
}

#main {
    height: auto;
    padding: .5em;
    padding-bottom: 0em;   /*Keeps content above footer. Originally
    used margin, but a bug in Opera7 seemed
    to add spurious margin, pushing the
    footer beyond the viewport even with
    short content. */
    /* width: 85%;
    min-width: 360px;
    max-width: 460px;*/
    margin: 0 auto;
}


#container {
    position: absolute;
    top: 0;
    left: 0;

}


/*
#footerwrap {
    position: absolute;
    bottom: 0;
    width: 100%;
}
*/

.footer {
    width: 100%;
    margin: 0 auto;
    padding-top: 30px;
}

#userlogin {
    position: relative;
    left: 450px;
    top: -76;
    width: 100%;
}


a:link, a:hover, a:visited {
    color: #3669CC;
    font-weight: bold;
    text-decoration: none;
}

h1 {
    color: #006dba;
    font-weight: normal;
    font-size: 16px;
    margin: .8em 0 .3em 0;
}

h2 {
    color: #000000;
    font-weight: normal;
    font-size: 13px;
    margin: .8em 0 .3em 0;
}

h3 {
    color: #000000;
    font-weight: normal;
    font-size: 10px;
    margin: .8em 0 .3em 0;
}

ul {
    padding-left: 15px;
}

input, select, textarea {
    background-color: #fcfcfc;
    border: 1px solid #ccc;
    font: 11px "Bitstream Vera Sans", "Tahoma", Verdana, Arial, Helvetica;
    margin: 2px 0;
    padding: 2px 4px;
}
select {
    padding: 2px 2px 2px 0;
}
textarea {
    width: 250px;
    height: 150px;
    vertical-align: top;
}

input:focus, select:focus, textarea:focus {
    border: 1px solid #b2d1ff;
}

.body {
    float: left;
    margin: 0 15px 10px 15px;
}

.usuario {
    vertical-align: top;
    padding-left: 60%;
}

/* NAVIGATION MENU */

.nav {
    background: #fff url(../images/skin/shadow.jpg) bottom repeat-x;
    border: 1px solid #ccc;
    border-style: solid none solid none;
    margin-top: 5px;
    padding: 7px 12px;
    overflow: hidden;
}

.menuButton {
    font-size: 10px;
    padding: 0 5px;
}
.menuButton a {
    color: #333;
    padding: 4px 6px;
}
.menuButton a.home {
    /*background: url(../images/skin/house.png) center left no-repeat;*/
    color: #333;
    padding-left: 10px;
}

.menuButton a.selected {
    /*background: url(../images/skin/house.png) center left no-repeat;*/
    /*background-color: #CEE3F6;*/
    border: 1px solid #b2d1ff;
    padding-left: 10px;

}


.menuButton a.noSelected {
    /*background: url(../images/skin/database_table.png) center left no-repeat;*/
    color: #333;
    padding-left: 10px;
}


.menuButton a.create {
    /*background: url(../images/skin/database_add.png) center left no-repeat;*/
    color: #333;
    padding-left: 25px;
}


/* MESSAGES AND ERRORS */

.message {
    background: #f3f8fc url(../images/skin/information.png) 8px 50% no-repeat;
    border: 1px solid #b2d1ff;
    color: #006dba;
    margin: 10px 0 5px 5px;
    padding: 5px 5px 5px 30px
}

div.errors {
    background: #fff3f3;
    border: 1px solid red;
    color: #cc0000;
    margin: 10px 0 5px 0;
    padding: 5px 0 5px 0;
}
div.errors ul {
    list-style: none;
    padding: 0;
}
div.errors li {
    background: url(../images/skin/exclamation.png) 8px 0% no-repeat;
    line-height: 16px;
    padding-left: 30px;
}

td.errors input {
    border: 1px solid red;
}

.errors textarea {
    border: 1px solid red;
}

.errors checkbox {
     border: 1px solid red;
}

.errors select {
    border-right: red 1px solid;
    border-top: red 1px solid;
    border-left: red 1px solid;
    border-bottom: red 1px solid;
}
/* TABLES */

table {  
    border: 1px solid #ccc;
    width: 100%
}
tr {
    border: 0;
}
td, th { 
    font: 11px "Bitstream Vera Sans", "Tahoma", Verdana, Arial, Helvetica;
    line-height: 12px;
    padding: 5px 6px;
    text-align: left;
    vertical-align: top;
    /*overflow: auto;*/
    /*text-overflow: ellipsis;*/
}
th {
    background: #fff url(../images/skin/shadow.jpg);
    color: #666;
    font-size: 11px;
    font-weight: bold;
    line-height: 17px;
    padding: 2px 6px;
}
th a:link, th a:visited, th a:hover {
    color: #333;
    display: block;
    font-size: 10px;
    text-decoration: none;
    width: 100%;
}
th.asc a, th.desc a {
    background-position: right;
    background-repeat: no-repeat;
}
th.asc a {
    background-image: url(../images/skin/sorted_asc.gif);
}
th.desc a {
    background-image: url(../images/skin/sorted_desc.gif);
}

.odd {
    background: #f7f7f7;
}
.even {
    background: #fff;
}

/* LIST */

.list table {
    border-collapse: collapse;
}
.list th, .list td {
    border-left: 1px solid #ddd;
}
.list th:hover, .list tr:hover {
    background: #b2d1ff;
}

/* PAGINATION */

.paginateButtons {
    background: #fff url(../images/skin/shadow.jpg) bottom repeat-x;
    border: 1px solid #ccc;
    border-top: 0;
    color: #666;
    font-size: 10px;
    overflow: hidden;
    padding: 10px 3px;
    width: 90%;
}
.paginateButtons a {
    background: #fff;
    border: 1px solid #ccc;
    border-color: #ccc #aaa #aaa #ccc;
    color: #666;
    margin: 0 3px;
    padding: 2px 6px;
}
.paginateButtons span {
    padding: 2px 3px;
}

/* DIALOG */

.dialog table {
    padding: 5px 0;
}

.prop {
    padding: 5px;
}
.prop .name {
    text-align: left;
    width: 15%;
    white-space: nowrap;
}
.prop .value {
    text-align: left;
    width: 85%;
}

/* ACTION BUTTONS */

.buttons {
    background: #fff url(../images/skin/shadow.jpg) bottom repeat-x;
    border: 1px solid #ccc;
    color: #666;
    font-size: 10px;
    margin-top: 5px;
    overflow: hidden;
    padding: 0;
}

.buttons input {
    background: #fff;
    border: 0;
    color: #333;
    cursor: pointer;
    font-size: 10px;
    font-weight: bold;
    margin-left: 3px;
    overflow: visible;
    padding: 2px 6px;
}
.buttons input.delete {
    /*background: transparent url(../images/skin/database_delete.png) 5px 50% no-repeat;*/
    padding-left: 5px;
}
.buttons input.edit {
    /*background: transparent url(../images/skin/database_edit.png) 5px 50% no-repeat;*/
    padding-left: 5px;
}
.buttons input.save {
    /*background: transparent url(../images/skin/database_save.png) 5px 50% no-repeat;*/
    padding-left: 5px;
}


/* NOTICIAS */

/* 
Trechos de estilo a seguir estao parcialmente inspirados
no layout de meneame.net 
*/

/*.publicada {
    color: #FFF;
    display: block;*/
    /*text-decoration: none;*/
    /*position: relative;
    width: 55px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding: 0;
    top: 0;
    right: 0;
    left: 0;
    height: 45px;
    margin-top: 4px;
    margin-bottom: 1px;
    background: #bbbbbb url(/images/botton-big.jpg) no-repeat;
}
*/

.noticia-votar {
	position: relative;
	top: 0px;
    left: 1px;
    width: 55px;
    font-size: 85%;
    margin: 0;
    list-style: none;
    height: 65px;
    padding: 0;
    text-align: center;
    right: 0;
    z-index: 100;
    background-repeat: no-repeat;
	overflow: hidden;
}


.noticia-detalhe {
    position: relative;
	left: 10px;
	top: 20px;
    font-size:13px;
    padding: 0 0 20px;
    margin-top: 1px;

    /*position: relative;*/
    z-index: 0;
}


.limit-current {font-weight:bold;text-decoration:underline;}

.left-wrapper {
    float: left;
}
.right-wrapper {
    float: right;
}
#photo-show {
    width: 810px;
    position: relative;
    height: 100%;
    display: block;
    margin: 30px auto 150px;
}
#news-line {
    height: 10px;
    padding-top: 5px;
}
.noticia-titulo
{
  padding:0px;
  margin:0px;
  font-size: 16px;
  line-height: 120%;
}

.noticia-titulo a:visited {
    color: #888888;
}

.noticia-titulo a:hover {
    color: #5b5b5b;
}

.tiny-url
{
    padding: 3px;
    font-size: 9px;
    color: gray;
    overflow: hidden;
}

#thumb-link {
    position:absolute;
    right:5px;
    top:5px;
}

.news-body {
    margin-left: 0px;
    margin-right: 3px;
    width: 67%;
    border-style: none;
    float: left;
    padding-right: 5pt;
}

.comment-body {
    margin-left: 0px;
    margin-right: 3px;
    width: 70%;
    border-style: none;
    float: left;
    padding-bottom: 19pt;
    padding-right: 5pt;
}


.noticia-votar a:hover, .noticia-votar a:focus {
    color: white;
}

.noticia-votar-buttom{
    /*
    position: absolute;
    top: 20px;
    left: 20px; */
    width: 55px;
    text-align: center;
    font-size: 85%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.noticia-votar li, .noticia-votar-buttom li {
    padding: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}

.news-detalhes  {
    color: #ef5f15;
    position: relative;
    margin-right: 0;
    margin-left: 79px;
    height: 15px;
    z-index: 1;
    margin-bottom: 25px;
    top: 0;
    left: 0;
}

.news-detalhes a:link, .news-detalhes a:visited {
    color: #ef5f15;
}

* html .news-detalhes {
    /* padding-right: 132px; */
}


.noticia-body-text, .noticia-body-text h1 {
    padding: 2px 0 4px 0;
    text-align: left;
    text-decoration:none;
    font-weight: normal;
}

.noticia-body-text h3, .link_more, .noticia-body-text h1 {
    padding: 2px 0 4px 0;
    text-align: left;
    font-size: 100%;
}

.noticia-body-text h1 {
    padding: 0px;
    margin: 2px 0px 0px;
}

.noticia-body-text {
    padding: 0px;
    margin-top: 7px;
    font-size: 12px;
}

.noticia-enviada {
    color: #666;
    font-size: 85%;
    margin: 3px 0 0 0;
}

.noticia-enviada a:link, a:visited, a:hover {
    color: #3669CC
}

.noticia-enviar {
    font-size: 11px;
    margin: 3px 0 0 0;
}

.noticia-enviar a:link {
    color: #3669CC
}

.noticia-comentarios select {
    font-size: 80%;
}

.noticia-comentarios {
    font-size: 105%;
    margin-bottom: 5px;
    margin-top: 5px;
}

.noticia-comentarios a:link, a:visited, a:hover {
    color: #3669CC;
}

.reacoes {
    font-size: 100%;
    margin-bottom: 5px;
    margin-top: 7px;
}
.reacoes a:link {
    /*color: #e32d69;*/
    color: #ec7d2b;
    /*color: #f3622f;*/
}

.reacoes a:visited, .reacoes a:hover {
    color: #5b5b5b;
}

.problema select
{
    font-size: 80%;
}


.noticia-enviada img {
    border: 1px solid #FFE2C5;
    float: left;
    margin-right: 4px;
    margin-bottom: 0;
    margin-top: 0;
}

.link_more:link, .link_more hover:hover, .link_more hover:visited{
    color: #000000;
    text-decoration: underline;
}

.publicada strong, .queued strong, .discarded strong {
    font-size: 27px;
    font-weight: bold;
}

.publicada img, .queued img, .discarded img {
    position: absolute;
    top: 0;
    left: 0;
    border: none;
}
.publicada a {
    color: white;
    /*margin-top: 5px;
    position: relative;*/
    display: block;
}
.publicada {
    color: #FFF;
    display: block;
    text-decoration: none;
    /*position: absolute;*/
    width: 55px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding: 0;
    top: 0;
    right: 0;
    left: 0;
    height: 45px;
    margin-top: 4px;
    margin-bottom: 1px;
    background: #bbbbbb url(/images/botton-big.jpg) no-repeat;
}

.news-detalhes ul li {
    list-style-type: none;
    padding-right: 5px;
    padding-left: 5px;
    float: left;
    display: inline-block;
}
.news-detalhes .options {
    border-right: 1px solid #ff6400;
}




