/*CSS changes here affect EVERY page across all websites. Override at site level using Site.css, view level in a view specific css page  */

html,body {
    margin: 0;
    padding: 0;
}

body
{
    font-size: .85em;
    font-family: "Trebuchet MS", Verdana, Helvetica, Sans-Serif;
    color: #232323;
    background-color: #fff;
}

header,
footer,
nav,
section {
    display: block;
}

a:link
{
    color: #06c;
    text-decoration: none;
}
a:visited
{
}
a:active
{
}
a:hover
{
    color: #06c;
    text-decoration: underline;
}

/* Styles for basic forms
-----------------------------------------------------------*/

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;
}

textarea 
{
    min-height: 75px;
}

.editor-label 
{
    margin: 1em 0 0 0;
}

.editor-field 
{
    margin:0.5em 0 0 0;
}


/* 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 header (might be used across multiple pages in the future) */
.login-header
{
	width: calc(100% - 8px);
    text-align:right;
    margin: -8px;
    margin-bottom:0;
    padding: 15px 8px 8px 8px;
    color: #fff;
    background-color: #183662;
    height: 30px;
}

.login-header ul
{
	list-style-type: none;
	margin: 0px;
	margin-top: 2px;
}

.login-header ul > li 
  {
    display: inline-block;
    list-style: none;
  }

.login-header li
{
    text-decoration: none;
    padding: 2px 4px 4px 4px;
    display: inline-block;
}

.login-header li:link, .login-header li:visited, .login-header li
{
    font-size: inherit;
    background-color: #274c6d;
    background-image: linear-gradient(to top, #274c6d, #366488);
    border: 0px none;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

li.selected {
    background-image: linear-gradient(to bottom, #6a88a2, #699cc9);
}

.login-header li:hover
{
}
.login-header li:focus
{
}
.login-header li:active
{
}

.logo
{
	padding-left: 5px;
    height: 35px;
    float: left;
}

