/* Eric Meyer's CSS Reset */
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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* End of Eric Meyer's CSS Reset */

html {
    height: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block;
}
body {
    font: 14px/18px Arial, sans-serif;
    height: 100%;
}
.wrapper {
    width: 100%;
    min-width: 1000px;
    min-height: 100%;
    height: auto !important;
    height: 100%;
}


/* Header
-----------------------------------------------------------------------------*/
.header {
    /*height: 150px*/;
}
.header a {
    text-decoration: none;
}


/* Middle
-----------------------------------------------------------------------------*/
.middle {
    width: 100%;
    padding: 0 0 100px;
    position: relative;
}
.middle:after {
    display: table;
    clear: both;
    content: '';
}
.container {
    width: 100%;
    float: left;
    overflow: hidden;
}
.content {
    padding: 10px 0 0 200px;
}


/* Left Sidebar
-----------------------------------------------------------------------------*/
.left-sidebar {
    float: left;
    width: 150px;
    margin-left: -100%;
    position: relative;
}

.left-sidebar h1{
    display:none;
}

/* Footer
-----------------------------------------------------------------------------*/
.footer {
    margin: -100px auto 0;
    min-width: 1000px;
    height: 100px;
    position: relative;
}



.table {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    width:auto;
    min-width: 50%;
    border-collapse: collapse;
}

.table td, .table .td, .table th, .box {
    font-size: 1em;
    border: 2px solid #555;
    padding: 3px 7px 2px 7px;
    background-color: #bbb;
    vertical-align:top;
}

table .title, .table .title {
    font-size: 1.1em;
}

.table th {
    font-size: 1.1em;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 4px;
    white-space: nowrap;
}

.table tr.alt td {
    color: #000000;
    background-color: #EAF2D3;
}

.center {
    margin-left:auto;
    margin-right:auto;
    -text-align:center;
}

.wide {
    min-width:90%;
}

.test {
    border: 1px solid red !important;
}
.test2 {
    border: 1px solid blue !important;
}
.test3 {
    border: 1px solid green !important;
}

textarea {
    width:100%;
}

/* body is here just to raise specificity */
body .clear {
    background: transparent;
    border: 0;
}



div.table 
{
    display:table;
}
form.tr, div.tr, span.cr
{
    display:table-row;
}
span.td
{
    display:table-cell;
}

img {
  -ms-interpolation-mode: nearest-neighbor;     /* IE 7+ (non-standard property) */
  image-rendering: -webkit-optimize-contrast;   /* Safari 6, UC Browser 9.9 */
  image-rendering: -webkit-crisp-edges;         /* Safari 7+ */
  image-rendering: -moz-crisp-edges;            /* Firefox 3.6+ */
  image-rendering: -o-crisp-edges;              /* Opera 12 */
  image-rendering: pixelated;                   /* Chrome 41+ and Opera 26+ */
}

div.clear_left {
    clear:left;
}

div.clear_right {
    clear:right;
}

div.clear_both {
    clear:both;
}

/* for old hr attribute */
.noshade {
    height:2px;border-width:0;color:gray;background-color:gray;
}