﻿body {
    /*background-image: url(../Images/BackgroundGradientStrip.png);
    background-repeat: repeat-x;
    background-color: #8196a9;
    background-position: top left;*/
    background-color: #023c6e;

/* Safari 4-5, Chrome 1-9 */
  background: -webkit-gradient(linear, left top, right top, from(#023c6e), color-stop(0.25, #000000), color-stop(0.5, #161616), color-stop(0.75, #000000), to(#023c6e));

  /* Safari 5.1+, Chrome 10+ */
  background: -webkit-linear-gradient(left, #023c6e, #000000, #161616, #000000, #023c6e);

  /* Firefox 3.6+ */
  background: -moz-linear-gradient(left, #023c6e, #000000, #161616, #000000, #023c6e);

  /* IE 10 */
  background: -ms-linear-gradient(left, #023c6e, #000000, #161616, #000000, #023c6e);

  /* Opera 11.10+ */
  background: -o-linear-gradient(left, #023c6e, #000000, #161616, #000000, #023c6e);

    font-family: Verdana, Arial, Sans-Serif;
    margin: 0px;
    padding: 0px;
    font-size: 10pt;
}
/* Login Page Style */
#dvPage {
    clear: both;
    width: 600px;
    padding: 1px;
    margin: auto;
    margin-top: 250px !important;
    background-color: White;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -moz-box-shadow: 0px 0px 10px #000000;
    -webkit-box-shadow: 0px 0px 10px #000000;
    box-shadow: 0px 0px 10px #000000;
}
    #dvPage h2 {
        color: #ffcc00;
        margin: 0px;
        padding: 10px;
        background-color: #023c6e;
        -webkit-border-top-left-radius: 10px;
        -webkit-border-top-right-radius: 10px;
        -moz-border-radius-topleft: 10px;
        -moz-border-radius-topright: 10px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
        #dvPage h2 span {
            color: White;
        }
/* Form Styles */
.dvBasicForm {
    margin: 15px 15px 15px 15px;
    padding-top: 10px;
    clear: left;
}
    .dvBasicForm strong {
        float: left;
        width: 200px;
        display: block;
    }
    .dvBasicForm input {
        float: left;
        width: 350px;
        display: block;
    }
