﻿@font-face
{
    font-family: IntelFont;
    src: url('../Fonts/NeoSans.ttf')
}

body {
    background: #80a7ca;
    margin:0px;
    padding:0px;
    width:100%;
    height:100%;
    font-family: IntelFont;
}

.MainBarBottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#abb4b8), to(#e5f0f6)); /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #abb4b8, #e5f0f6); /* Chrome 10+, Saf5.1+ */
    background-image:    -moz-linear-gradient(top, #abb4b8, #e5f0f6); /* FF3.6+ */
    background-image:     -ms-linear-gradient(top, #abb4b8, #e5f0f6); /* IE10 */
    background-image:      -o-linear-gradient(top, #abb4b8, #e5f0f6); /* Opera 11.10+ */
    background-image:         linear-gradient(top, #abb4b8, #e5f0f6); /* W3C */

    width:100%;
    height:6px;
    border-top-color:darkgray;
    border-top-width:1px;
    border-top-style:solid;
}

.TitleBar {

    background: #0067b4;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#00559b), to(#0067b4)); /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #00559b, #0067b4); /* Chrome 10+, Saf5.1+ */
    background-image:    -moz-linear-gradient(top, #00559b, #0067b4); /* FF3.6+ */
    background-image:     -ms-linear-gradient(top, #00559b, #0067b4); /* IE10 */
    background-image:      -o-linear-gradient(top, #00559b, #0067b4); /* Opera 11.10+ */
    background-image:         linear-gradient(top, #00559b, #0067b4); /* W3C */

    color:white;
    width:100%;
    height:70px;
    font-size:20px;
}

.IntelLogo {
    margin:8px 30px 8px 30px;
}

.LoginBox {
    background-color:#e7eaee;
    position:fixed;
    width:400px;
    height:250px;
    top:50%;
    left:50%;
    margin:-150px 0px 0px -200px;
    border-color:white;
    border-style:solid;
    border-width:4px;
}

.MainContainer {
    width:100%;
    text-align:center;
}

.LoginControlsPanel {
    text-align:left;
    position:relative;
    width:330px;
    top:20px;
    left:50px;
    color:#0071c5;
}

.LoginTextBox {
    width:100%;
}

.LoginErrorMessage {
    padding:8px;
    text-align:center;
    color:orange;
}

.btn
{
    border-top: 1px solid #dadada;
    border-bottom: 1px solid #a9a9a9;
    border-collapse: collapse;
    border-spacing: 0;
    font-style: normal;
    margin: 0;
    position: relative;
    cursor: pointer;
    outline: 0;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-family: Arial,Helvetica,sans-serif;
    line-height: 1;
    font-size: 13px;
    font-weight: normal;
    padding: 6px 16px;
    border-radius: 4px;
    background-color: #f3f3f3;
    border-left: 1px solid #d2d2d2;
    border-right: 1px solid #d2d2d2;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 1px 1px 0 rgba(255, 255, 255, 0.6);
    text-shadow: 0 1px 0 #fff;
    background-image: linear-gradient(top,#fff,#e1e1e1);
}

.btn:hover {
    filter: none;
    background: 0;
    background: #eee;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    text-decoration: none;
    box-shadow: 0 1px 0 rgba(0,0,0,0.15);
}