﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/* styles for validation helpers */
.field-validation-error {
    color: #b94a48;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #b94a48;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}

/*for general layout & footer*/
.footerContainer
{
    position: fixed;
    left: 0px;
    bottom: 0px;
    /*width: 100%;*/
    right: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    background-color: white;
}
.communityShare
{
    position: fixed;
    left: 0px;
    bottom: 0px;
    /*min-width: 570px;*/
    text-align: left;
    background-color: #ffffff;
    font-size: 12px;
    margin-top: -2px;
    z-index: 997;
    /*border: 1px dotted red;*/
}
.copyright
{
    text-align: center;
    background-color: #ffffff;
    padding-top: 10px;
    margin-top: -5px;
    margin-left: -50px;
    font-size: 12px;
    font-weight: bold;
    z-index: 999;
    /*border: 1px dotted red;*/
}
.footerLinks
{
    position: fixed;
    /*width: 130px;*/
    right: 0px;
    bottom: 0px;
    text-align: right;
    margin-bottom: 4px;
    padding-right: 10px;
    font-size: 12px;
    min-width: 20px;
    z-index: 998;
    background-color: white;
    /*border: 1px dotted red;*/
}
.vspace
{
    color: #f60b0b;
    width: 2px;
}

/*Multi-language support*/
.combobox-flag
{
    margin-top: 5px;
    margin-left: -14px;
    /*margin-right: -30px;*/
    background: url("/Images/combobox-flag_b.jpg") no-repeat left top;
    overflow: hidden;
    height: 10px;
    width: 19px;
    /*display: block;*/
    cursor: pointer;
    /*border: 1px dotted green;*/
}
@media (max-width: 767px)
{
    .combobox-flag
    {
        margin-top: -30px;
        margin-left: 46px;
        /*margin-right: -30px;*/
        background: url("/Images/combobox-flag_b.jpg") no-repeat left top;
        overflow: hidden;
        height: 10px;
        width: 19px;
        /*display: block;*/
        cursor: pointer;
        border: 1px solid transparent;
    }
}
.combobox-flag:hover
{
    background: url("/Images/combobox-flag_b.jpg") no-repeat left bottom;
    display: block;
}
.panel-language-box
{
    position: absolute;
    background: #ffffff;
    margin: 7px 0 0 -85px;
    padding: 4px 3px 3px 3px;
    display: none;
    width: 100px;
    z-index:200000;
}
.panel-language-box a
{
    cursor: pointer;
}
.unselectable
{
   -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;

   /*
     Introduced in IE 10.
     See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
   */
   -ms-user-select: none;
   user-select: none;
}
.selectable
{
   -moz-user-select: text;
   -khtml-user-select: text;
   -webkit-user-select:text;

   -ms-user-select:element;
   user-select: text;
}