﻿/*----------------------------------------------------------
The base color for this template is #5c87b2. If you'd like
to use a different color start by replacing all instances of
#5c87b2 with your new color.
----------------------------------------------------------*/
html {
    height: 100%;
    padding: 0px;
    margin: 0px;
}

body {
    background-image: url("background.png");
    background-repeat: repeat-x;
    background-color: #000000;
    font-size: 120%;
    font-family: Verdana, Tahoma, Arial, "Helvetica Neue", Helvetica, Sans-Serif;
    margin: 0;
    padding: 0;
    color: #ccc;
    height: 100%; /* min-height does not work for children that want to scale according to the window's height*/
}

.center {
    text-align: center;
}

.youtubediv {
    margin: auto;
    border: 3px solid gray;
    border-radius: 3px;
}

a:link {
    color: #0ff;
    /*text-decoration: underline;*/
}

a:visited {
    color: #0ff;
}

a:hover {
    color: #1d60ff;
    text-decoration: none;
}

a:active {
    color: #0ff;
}

p, ul, li {
    margin-bottom: 5px;
    line-height: 1.5em;
    text-align: left;
}

/* HEADINGS   
----------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-size: 1.5em;
    color: #bbb;
}

h1 {
    font-size: 2em;
    padding-bottom: 0;
    margin-bottom: 0;
}

h2 {
    font-size: 1.8em;
    padding: 0px;
}

h3 {
    font-size: 1.5em;
}

h4 {
    font-size: 1.1em;
}

h5, h6 {
    font-size: 1em;
}

.summary {
    font-size: 1.5em;
}
/* this rule styles <h2> tags that are the 
first child of the left and right table columns */
.rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2 {
    margin-top: 0;
}

/* PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/

/* you can specify a greater or lesser percentage for the 
page width. Or, you can specify an exact pixel width. */
.page {
    /*max-width: 1050px;*/
    height: 100%;
    background-color: #111111;
    margin-left: auto;
    margin-right: auto;
}


#header {
    position: relative;
    margin: auto;
    margin-bottom: 0;
    color: #000;
    max-width: 100%;
    background-image: url("background_header.png");
    background-repeat: repeat-x;
    padding: 0 10px;
}

    #header h1 {
        font-weight: bold;
        padding: 5px 0;
        margin: 0;
        color: #fff;
        border: none;
        line-height: 2em;
        font-size: 32px !important;
    }

#main {
    margin: auto;
    padding: 0 10px;
    max-width: 100%;
    min-height: 80%;
    margin-bottom: 30px;
    _height: 1px; /* only IE6 applies CSS properties starting with an underscore */
    background-color: #111111;
    padding: 0 20px;
}



.silverlight {
    /*background-color: #333;*/
    padding: 10px;
    margin: auto;
}

#footer {
    padding: 10px 0;
    margin: 0;
    color: #999;
    text-align: center;
    line-height: normal;
    font-size: .9em;
}

/* TAB MENU   
----------------------------------------------------------*/
/*http://htmldog.com/techniques/dropdowns/*/
#menucontainer ul {
    margin: 0px;
    padding: 0px;
}

#menucontainer li {
    white-space: nowrap;
    display: inline; /*critical*/
    position: relative; /*critical*/
}

#menucontainer ul li ul {
    position: absolute; /*critical for aligning the sub-menu ul with the parent li*/
    display: none;
    left: 0px; /*critical for aligning the sub-menu ul with the parent li*/
    top: 145%;
}

#menucontainer li#greeting {
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    line-height: 2.8em;
    color: #fff;
}

#menucontainer li a {
    padding: 10px 10px;
    border-radius: 4px 4px 0 0;
    font-weight: bold;
    text-decoration: none;
    line-height: 230%;
    background-color: #c8cec4;
    color: #03aa33;
    display: inline-block;
    min-width: 100px;
    text-align: center;
}

#menucontainer li li a {
    border-radius: 0px; /*Remove round corners for sub-menu*/
    min-width: 10px; /*Critical for aligning sub-menu items to the left*/
}
/*ul#menu li ul {
		display: none;
		background-color: red;
	}*/

#menucontainer li ul li {
    display: block;
}

#menucontainer li:hover ul {
    padding: 0;
    margin: 0;
    display: block;
    background-color: #c8cec4;
}

#menucontainer li a:hover {
    background-color: #fff;
    text-decoration: none;
}

#menucontainer li a:active {
    background-color: #a6e2a6;
    text-decoration: none;
}

#menucontainer li.selected a {
    background-color: #fff;
    color: #000;
}

/* FORM LAYOUT ELEMENTS   
----------------------------------------------------------*/

fieldset {
    border: 1px solid #ddd;
    padding: 0 1.4em 1.4em 1.4em;
    margin: 0 0 1.5em 0;
}

legend {
    font-size: 1.2em;
    font-weight: bold;
    color: #cccccc;
}

textarea {
    min-height: 75px;
}


input[type="submit"], input[type="text"], textarea {
    color: black !important;
    /*background-color:forestgreen;*/
}

input[type="text"] {
    width: 200px;
    border: 1px solid #CCC;
}

input[type="password"] {
    width: 200px;
    border: 1px solid #CCC;
}

/* TABLE
----------------------------------------------------------*/

table {
    border: solid 1px #e8eef4;
    border-collapse: collapse;
}

    table td {
        padding: 5px;
        border: solid 1px #e8eef4;
    }

    table th {
        padding: 6px 5px;
        text-align: left;
        border: solid 1px #e8eef4;
    }

/* MISC  
----------------------------------------------------------*/
.clear {
    clear: both;
}

.error {
    color: Red;
}

#menucontainer {
    margin-top: 40px;
    margin-right: 10px;
}

div#title {
    display: block;
    float: left;
    text-align: left;
    margin-left: 20px;
}

#logindisplay {
    font-size: 1.1em;
    display: block;
    text-align: right;
    margin: 10px;
    color: White;
}

    #logindisplay a:link {
        color: white;
        text-decoration: underline;
    }

    #logindisplay a:visited {
        color: white;
        text-decoration: underline;
    }

    #logindisplay a:hover {
        color: white;
        text-decoration: none;
    }

/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
    color: #ff0000;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}

.validation-summary-errors {
    font-weight: bold;
    color: #ff0000;
}

.validation-summary-valid {
    display: none;
}

/* Styles for editor and display helpers
----------------------------------------------------------*/
.display-label, .editor-label {
    margin: 1em 0 0 0;
}

.display-field, .editor-field {
    margin: 0.5em 0 0 0;
}

.text-box {
    width: 30em;
}

    .text-box.multi-line {
        height: 6.5em;
    }

.tri-state {
    width: 6em;
}

.app_title {
    font-size: 4em;
    font-family: ‘Lucida Console’, Monaco, monospace;
}

table.table_features > tbody > tr > td:first-child {
    text-align: center;
    font-size: 1.0em;
    font-weight:bold;
    display: table-cell;
    padding: 0.8em 0.5em;
    white-space: nowrap;
    background-color: #101010;
}

table.table_features > tbody > tr > td {
    margin: 30px 0 30px 0;
    text-align: left;
    border: none;
}

table.table_features > tbody > tr {
    margin: 0px 0 0px 0px;
    border: 20px solid rgba(0, 0, 0, 0.05);
}

table.table_features {
    border: none;
    font-size: 1.5em;
}


div.features > div {
    padding: 5px;
    margin: 5px;
    background-color: rgba(20,40,20, 0.6);
}
