body
{
    position: relative;
    min-height: 100%;
    top: 0px;
    margin: 0px;
    background-image: url('Images/Background.jpg');
    background-repeat: no-repeat;
}

.logo
{
    width: 105px;
    height:48px;
    float: left;
    display: block;
    background-image: url('Images/CompanyLogo.png');
    background-repeat: no-repeat;
    background-size: contain;
    margin: 10px;
}

.sticky
{
    position: fixed;
    top: 0;
    width: 100%;
}

.sticky + .content
{
    padding-top: 60px;
}

.header2
{
    width: 100%;
    background-color: white;
    overflow: hidden;
    top: 0px;
    left: 0px;
}

.headerItem
{
    font-family: Consolas;
    width: 100px;
    float: left;
    margin-top: 10px;
}

.headerItem a
{
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.headerItem:hover
{
    background-color: #DDD;
}

.headerItem .headerItemDropdownButton
{
    font-size: 16px;
    border: none;
    outline: none;
    color: black;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
}

.headerItemDropdownContent
{
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.headerItemDropdownContent a
{
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.headerItemDropdownContent a:hover
{
    background-color: #ddd;
}
  
  /* Show the dropdown menu on hover */
.headerItem:hover .headerItemDropdownContent
{
    display: block;
}

.navList
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: whitesmoke;
}

.panel
{
    background-color:white;
    min-height: 100px;
    width: 100%;
    padding:40px;
}

.demoPanel
{
    height: 100%;
}

.demoContent
{
    vertical-align: middle;
}