code, kbd, pre, samp, span.pre {
   /* font-family: 'Source Code Pro', monospace; */
   /* font-size: 13px; */
}



html
{
   height: 100%;
}

body
{
   position: relative;
   width: 100%;
	margin: 0px;
   padding: 0px;
   border: 0px;
   outline: 0px;

   color: #333;

   /* font-weight: normal; */

   background: linear-gradient(to bottom left, #eee 0%, #FFFFFF 100%) fixed;

}

h1
{
   font-size: 18px;
   font-weight: normal;
   color: #027eae;
   margin-top: 1.4em;
}

h2
{
   font-size: 16px;
   font-weight: normal;
   color: #666;
   border-bottom: solid 1px #ccc;
   padding-bottom: 4px;
   padding-left: 4px;
   margin-bottom: 20px;
   margin-top: 48px;
}

h3
{
   font-size: 16px;
   font-weight: bold;
   color: #027eae;
}

a
{
   color: #027eae;
   text-decoration: none;
}

a:visited
{
   color: #027eae;
}

a:hover
{
   color: #9ed106;
   text-decoration: underline;
}

img
{
   border: none;
}

ul
{
   padding-left: 20px;
   margin-top: -6px;
}

ul li
{
   background-image: url("../img/bullet.png");
   background-position: 0 0.5em;
   background-repeat: no-repeat;
   list-style-type: none;
   margin-bottom: 0.5em;
   padding-left: 18px;
   line-height: 1.4em;
   width: 80%;
   font-size: 14px;
}

ol
{
   margin-top: 2.0em;
   margin-left: 2.0em;
}

ol > li
{
   margin-top: 1.0em;
}

ol > li > ul
{
   margin-top: 0.5em;
}


div.shell
{
   margin-left: 36px;
}

div.shell > pre
{
   color: #a6530f;
   font-size: 14px;
   font-weight: bold;
   font-family: Consolas, monospace;
}

/* Inline Shell */
span.shell
{
   color: #a6530f;
   font-size: 14px;
   font-weight: bold;
   font-family: Consolas, monospace;
   margin-left: 6px;
   margin-right: 6px;
}

/* Inline Code */
span.code
{
   color: #18930f;
   font-size: 14px;
   font-weight: bold;
   font-family: Consolas, monospace;
   margin-left: 2px;
   margin-right: 2px;
}

/*
   Fix for: https://bitbucket.org/alexg/syntaxhighlighter/issue/177/superfluous-vertical-scrollbars-in-chrome
.syntaxhighlighter { padding-bottom: 1px !important; }
 */
.syntaxhighlighter table td.code .container { padding-bottom: 1px !important; }


/*******************************************************************************
 *    Header
 */

#awh_layout_header
{
   position: relative;
   width: 100%;
   height: 100px;
}

#header_inner_top_banner
{
   position: relative;
   width: 960px;
   height: 100%;
   margin:auto;
   color: #fff;
   background-color: #027eae;
}

#project_top_banner
{
   position: absolute;
   left: 20px;
   top: 38px;
}

#outside_l_top_banner
{
   float: left;
   background-color: #027eae;
   width:50%;
   height: 100%;
}

#outside_r_top_banner
{
   float: right;
   background-color: #027eae;
   width:50%;
   height: 100%;
}


/*******************************************************************************
 *    Top Navbar
 */

#navbar_wrapper
{
   width: 100%;
   height: 38px;

   background-color: #a5d500;
   background-image: -webkit-linear-gradient(top,       #d8ff50, #a5d500);
   background-image:    -moz-linear-gradient(top,       #d8ff50, #a5d500);
   background-image:     -ms-linear-gradient(top,       #d8ff50, #a5d500);
   background-image:      -o-linear-gradient(top,       #d8ff50, #a5d500);
   background-image:         linear-gradient(to bottom, #d8ff50, #a5d500);
}

#navbar
{
   position: relative;
   width: 960px;
   height: 100%;
   margin: 0 auto;
   z-index: 50;
}

#navbar a
{
   text-decoration: none;
   color: #fff;
}

#navbar > .navitem
{
   display: block;
   float: left;
   position: relative; /*without this, the changed z-index on hover does nothing for the visibility of the box-shadow*/

   font-size: 13px;
   height: 38px;
   line-height: 38px;
   padding-left: 16px;
   padding-right: 16px;

   min-width: 80px;
   text-align: center;

   transition: all 0.1s ease-in-out;
   -ms-transition: all 0.1s ease-in-out;
   -webkit-transition: all 0.1s ease-in-out;
   -moz-transition: all 0.1s ease-in-out;
   -o-transition: all 0.1s ease-in-out;

   color: rgba(0, 0, 0, 0.4);
}

#navbar > .navitem:hover
{
   z-index: 110; /*raises the hovered item so that the box shadow is not covered by element to the right*/

   box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.12);
   -moz-box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.12);
   -webkit-box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.12);

   color: rgba(0, 0, 0, 0.5);
}

#navbar > .navitem_highlighted
{
   box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.12);
   -moz-box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.12);
   -webkit-box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.12);

   color: rgba(0, 0, 0, 0.5);
}

#navbar > .navitem_highlighted:hover
{
   z-index: 100;

   box-shadow: 0px 0px 12px 2px rgba(255, 255, 255, 0.8);
   -moz-box-shadow: 0px 0px 12px 2px rgba(255, 255, 255, 0.8);
   -webkit-box-shadow: 0px 0px 12px 2px rgba(255, 255, 255, 0.8);
}


/*******************************************************************************
 *    Middle Content
 */

.middle_wrapper
{
   width: 100%;
   min-height: 35em;
}

.page_wrapper
{
   position: relative;
   width: 960px;
   min-height: 100%;
   margin: 0 auto;
   padding: 30px 0;
   color: #333;
}


/*******************************************************************************
 *    Footer
 */

#footer_wrapper
{
   clear: both;
   width: 100%;
   height: 110px;
   background-color: #027eae;
   background-color: #fff;
}

#footer {
   width: 960px;
   margin: 20px auto 40px auto;
   padding-top: 0px;
   padding-bottom: 30px;
   color: #bbb;
   font-size: 13px;
}

#footer p {
   text-align: center;
   line-height: 6px;
}

#footer a
{
   color: #ccc;
   text-decoration: underline;
}

#footer a:visited
{
   color: #ccc;
}

#footer a:hover
{
   color: #ccc;
   text-decoration: underline;
}

#footer_legal {
   clear: both;
   padding: 10px 0 0;
}

/*** generally used layout hacks ***/

.clearboth
{
   clear: both;
}
.spacer_20
{
   height: 20px;
}

/****** css for sticky footer ****/
/*** outer wrapper takes viewport height as minimum
 * central wrapper has a padding at the bottom which ensures that the footer does not overlap any content
 * footer is positioned after the outer wrappper, but moved up its height so that it is actually in the viewport *****/

html,
body
{
   height: 100%;
   min-width: 100%;
   overflow: visible;
}

#sticky_footer_outer_wrapper
{
   min-height: 101%;
   min-width: 100%;
   position: relative;
   overflow: visible;
}

#sticky_footer_central_content_wrapper
{
   position: relative;
   overflow: visible;
   padding-bottom: 260px; /* must be same height as the footer */
}

#footer_wrapper
{
   position: relative;
   margin-top: -260px;
   height: 260px;
   clear: both;
   overflow: visible;
}

#footer
{
   overflow: visible;
}


.legacyNotice {
    border: 1px solid #D35400;

    padding: 1em;
    background-color: #FF9147;
}
