/* reset */
/* http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 20080212 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body {
    line-height: 1;
    overflow: scroll;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a img{
    border: 0;
}
/*
        960 Grid System ~ Text CSS.
        Learn more ~ http://960.gs/

        Licensed under GPL and MIT.
*/

/* `Basic HTML
----------------------------------------------------------------------------------------------------*/

body {
    font: 14px/1.5 Arial, 'Helvetica', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

a:focus {
    outline: 1px dotted;
}

hr {
    border: 0 #ccc solid;
    border-top-width: 1px;
    clear: both;
    height: 0;
}

/* `Headings
----------------------------------------------------------------------------------------------------*/

h1 {
    font-size: 25px;
}

h2 {
    font-size: 23px;
}

h3 {
    font-size: 21px;
}

h4 {
    font-size: 19px;
}

h5 {
    font-size: 17px;
}

h6 {
    font-size: 15px;
}

/* `Spacing
----------------------------------------------------------------------------------------------------*/

ol {
    list-style: decimal;
}

ul {
    list-style: none;
}

li {
    margin-left: 30px;
}

p,
dl,
hr,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
pre,
table,
address,
fieldset {
    margin-bottom: 20px;
}

a { text-decoration: none; }

a:hover { text-decoration: underline; }

/* basic CSS */

.a-wrapper { width: 980px; margin: 0 auto; position: relative; clear: both; }

.a-header { clear: both; position: relative; margin:0; float: left; width: 100%;}

.a-content { }

.a-footer-wrapper { clear: both; border-top: 1px solid #ddd; margin-top: 20px; }
.a-footer { clear: both; width: 980px; margin: 0 auto; padding: 10px 0; }

/*floats */
.float-left{
    float:left;
}
.float-right{
    float:right;
}
/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear,.clearfloat {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

.clearfix:before,
.clearfix:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix:after {
    clear: both;
}

/*
        The following zoom:1 rule is specifically for IE6 + IE7.
        Move to separate stylesheet if invalid CSS is a problem.
*/

.clearfix {
    zoom: 1;
}
/* css buttons */
.button{
    -moz-box-shadow: 0 0 10px #aaa;
    -webkit-box-shadow: 0 0 10px #aaa;
    box-shadow: 0 0 10px #aaa;
    padding:5px;
    margin:10px 0;
    display: block;
    text-align: center;
    font-weight:400;
    width: 140px;
    border:2px solid #fff;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background-color: #888;
    background-image: linear-gradient(bottom, rgb(125,125,125) 46%, rgb(145,145,145) 61%);
    background-image: -o-linear-gradient(bottom, rgb(125,125,125) 46%, rgb(145,145,145) 61%);
    background-image: -moz-linear-gradient(bottom, rgb(125,125,125) 46%, rgb(145,145,145) 61%);
    background-image: -webkit-linear-gradient(bottom, rgb(125,125,125) 46%, rgb(145,145,145) 61%);
    background-image: -ms-linear-gradient(bottom, rgb(125,125,125) 46%, rgb(145,145,145) 61%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.46, rgb(125,125,125)),
        color-stop(0.61, rgb(145,145,145))
        );
    color:#fff;
}
.button:hover{
    background-image: none;
    background-color: #888;
}
.blue{
    background-color: #2779B3;
    background-image: linear-gradient(bottom, rgb(35,111,161) 44%, rgb(38,130,191) 62%);
    background-image: -o-linear-gradient(bottom, rgb(35,111,161) 44%, rgb(38,130,191) 62%);
    background-image: -moz-linear-gradient(bottom, rgb(35,111,161) 44%, rgb(38,130,191) 62%);
    background-image: -webkit-linear-gradient(bottom, rgb(35,111,161) 44%, rgb(38,130,191) 62%);
    background-image: -ms-linear-gradient(bottom, rgb(35,111,161) 44%, rgb(38,130,191) 62%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.44, rgb(35,111,161)),
        color-stop(0.62, rgb(38,130,191))
        );
}
.blue:hover{
    background-color: #2779B3;
}
.red{
    background-color: #990101;
    background-image: linear-gradient(bottom, rgb(128,0,0) 33%, rgb(173,0,0) 60%);
    background-image: -o-linear-gradient(bottom, rgb(128,0,0) 33%, rgb(173,0,0) 60%);
    background-image: -moz-linear-gradient(bottom, rgb(128,0,0) 33%, rgb(173,0,0) 60%);
    background-image: -webkit-linear-gradient(bottom, rgb(128,0,0) 33%, rgb(173,0,0) 60%);
    background-image: -ms-linear-gradient(bottom, rgb(128,0,0) 33%, rgb(173,0,0) 60%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.33, rgb(128,0,0)),
        color-stop(0.6, rgb(173,0,0))
        );
}
.red:hover{
    background-color: #990101;
}
.green{
    background-color: #026926;
    background-image: linear-gradient(bottom, rgb(2,94,33) 46%, rgb(1,117,40) 61%);
    background-image: -o-linear-gradient(bottom, rgb(2,94,33) 46%, rgb(1,117,40) 61%);
    background-image: -moz-linear-gradient(bottom, rgb(2,94,33) 46%, rgb(1,117,40) 61%);
    background-image: -webkit-linear-gradient(bottom, rgb(2,94,33) 46%, rgb(1,117,40) 61%);
    background-image: -ms-linear-gradient(bottom, rgb(2,94,33) 46%, rgb(1,117,40) 61%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.46, rgb(2,94,33)),
        color-stop(0.61, rgb(1,117,40))
        );
}
.green:hover{
    background-color: #026926;
}
.auto-button{
    width:auto;
}

a.see_related_action, a.comment_action, a.send_action, a.print_action, a.bookmark_action{
    background: url(/images/actions8.png) 0 0 no-repeat;
    line-height:100%;
    padding: 0 10px 0 20px;
}
a.comment_action{
    background-position: 0 -28px;
}
a.send_action{
    background-position: 0 -57px;
}
a.print_action{
    background-position: 0 -84px;
}
a.bookmark_action{
    background-position: 0 -109px;
}

.hmenu_container{
    width: 260px;
    position: absolute;
    top: 0px;
    right: 0px;
}
.hmenu_languages{
    width: 100px;
    position: absolute;
    top: 8px;
    right: 285px;
}
.hmenu_languages a{
    color:#999;
    font-weight: 400;
    padding: 0 8px;
    border-right: 1px solid #ccc;
}
.hmenu_languages a.last{
    border-right: 0;
}
.hmenu_languages a.selected{
    color: #333;
}
