/*--------------------- generic css -----------------*/

html, body {
  color: black;
  /*background-color: #ddd;*/
  font-family: arial;
  font-size: 90%;
  margin:0;
  padding:0;
  height:100%; /* needed for container min-height */
}

.hidden {
    display: none;
}

.bold, .line_def {
    font-weight: bold;
}

.vertical_scroll_area {
    /* the position: relative is here to fix a bug in IE
       that when scrolling positioned elements inside
       remain fixed.
       see http://snook.ca/archives/html_and_css/position_relative_overflow_ie/
    */
    position: relative;
    overflow: auto;
}
/*--------------------- general structure css -----------------*/

div#container {
    position:relative; /* needed for footer positioning*/
    margin:0 auto; /* center, not in IE5 */
}

div#header {
    /*padding: 0px;
    margin: 0px;*/
}

.template {
    display: none;
}

.preload {
  display: block;
  width: 0px;
  height: 0px;
  position: absolute;
  left: -10000px;
  top: -100000px;
}

.demi_link {
    color: #00f;
    text-decoration: underline;
}

.field_error {
    color: #b00;
}

/*---------------------- buttons -----------------------------*/

.yellow_button {
    cursor: pointer;
    display: block;
    padding: 5px;
    height: 26px;
    text-align: center;
    color: #000;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;

    border-radius: 18px;
    -moz-border-radius: 18px;
    -webkit-border-radius: 18px;

    box-shadow: 3px 3px 8px #888;
    -moz-box-shadow: 3px 3px 8px #888;
    -webkit-box-shadow: 3px 3px 8px #888;

    background-color: rgb(243, 150, 16);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.01, rgb(243, 130, 13)),
        color-stop(0.4, rgb(255, 206, 25))
    );
    background-image: -moz-linear-gradient(center bottom, rgb(243, 130, 13) 1%,rgb(255, 206, 25) 40%);

}

