﻿body
{
    background-color: #eee;
    font-family: Tahoma;
    font-size: 8pt;
    direction: rtl;
    margin: 0;
}

.Container
{
    width: 1000px;
    height:100%;
    margin: 0 auto;
    position: relative;
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}

.Logo
{
    position: absolute;
    left: 70px;
    top: 10px;
    border: none;
    max-width: 100px;
}

a img
{
    border: 0;
}

.BButton, .PButton, .GButton
{
    font-family: Tahoma;
    font-size: 8pt;
    border: none;
    padding-bottom: 6px;
    color: #fff;
    width: 101px;
    height: 35px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 0 3px #333 inset;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

a.BButton, a.PButton, a.GButton
{
    height: 30px;
    display: inline-block;
    line-height: 30px;
}

.BButton
{
    background-color: #336699;
}

.BButton:hover
{
    background-color: #2D5986;
}

.PButton
{
    background-color: #333399;
}

.PButton:hover
{
    background-color: #2D2D86;
}

.GButton
{
    background-color: #333333;
}

.GButton:hover
{
    background-color: #2A2A2A;
}

.Copyright
{
    background-color: #fff;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 8pt;
    line-height: 20px;
    border-top: 1px solid #999;
    text-align: center;
    z-index: 20;
}

.Copyright a
{
    text-decoration: none;
}


/*#region Home & Help */

.HomeHelp
{
    position: absolute;
    top: 0px;
    right: 20px;
}

.HomeHelp a
{
    text-decoration: none;
    color: #335;
}

.HomeHelp a img
{
    vertical-align: middle;
    border: none;
}

.HomeHelp a span
{
    font-size: 8pt;
    border-bottom: 1px solid #335;
}

/*#endregion*/

/*#region Reg Form */

.RegForm
{
    margin: 0 50px;
    font-size: 8pt;
}

.RegForm .Views
{
    display: none;
}

.RegForm .Views img
{
    vertical-align: middle;
    margin-left: 5px;
}

.RegForm h4
{
    margin: 0;
    font-family: 'B Yekan';
    font-size: 14pt;
    color: #444;
}

.RegForm hr
{
    color: #ccc;
    border-style: solid;
    border-width: 1px 0px 0px 0px;
    border-color: #ccc;
    margin-left:20px;
}

.RegForm label
{
    color: #333;
}

.RegForm .tdLabel
{
    text-align: left;
}

.RegForm .LTR
{
    text-align: left;
    direction: ltr;
}

.RegForm .LTR2
{
    text-align: right;
    direction: ltr;
}

input[type="text"], input[type="password"], select, textarea
{
    font-family: Tahoma;
    font-size: 9pt;
    text-align: right;
    color: #333;
    border: 1px solid #999;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 5px;
    margin: 3px 0;
    transition: all 0.2s ease 0s;
}

select
{
    margin: 3px 0 2px;
}

textarea
{
    resize: none;
}

input[type="text"]:focus, input[type="password"]:focus, select:focus, textarea:focus
{
    color: #000;
    border: 1px solid #1A548E;
}

input[type="checkbox"]
{
    vertical-align: middle;
}

.links
{
    color: #333;
    text-decoration: none;
}

.links img
{
    vertical-align: middle;
}

.TextBox
{
    font-family: Tahoma;
    font-size: 9pt;
    width: 98%;
    direction: ltr;
    text-align: right;
    color: #333;
    border: 1px solid #999;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 5px;
}

.TextBox:hover
{
    color: #000;
}

.TextBox:focus
{
    color: #000;
    border: 1px solid #1A548E;
}
/*#endregion*/

/*#region ErrorBoxes */

.errorBOX
{
    display: none;
    background: #eee;
    box-shadow: 0 0 2px #999;
    padding: 3px;
    height: 16px;
    position: relative;
    -webkit-border-top-right-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
    -moz-border-radius-topright: 20px;
    -moz-border-radius-bottomright: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.errorBOX div
{
    background: url('../img/error.gif');
    position: absolute;
    width: 16px;
    height: 16px;
}

.errorBOX span
{
    cursor: default;
    line-height: 15px;
    right: 20px;
    position: relative;
    color: #333;
    text-shadow: 0 0 1px #999;
}

/*#endregion*/

/*#region PasswordBar */

.PasswordStrengthBorder
{
    border: 1px solid #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 1px;
    width: 100px;
    margin-top: -2px;
}

.PasswordStrength
{
    position: relative;
    background-color: #090;
    margin-top: -2px;
}

.VeryPoorStrength
{
    background: Red;
    color: White;
    margin-top: -2px;
}

.WeakStrength
{
    background: Gray;
    color: White;
    margin-top: -2px;
}

.AverageStrength
{
    background: orange;
    color: black;
    margin-top: -2px;
}

.GoodStrength
{
    background: blue;
    color: White;
    margin-top: -2px;
}

.ExcellentStrength
{
    background: Green;
    color: White;
    margin-top: -2px;
}

/*#endregion*/

/*#region Panels */

.Panels
{
    position: relative;
}

.Panels img
{
    position: absolute;
    left: 0;
    top: 0;
}

.Panels .Price
{
    width: 140px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 180px;
}

.Panels .Price span
{
    font-weight: bold;
}

.Panels ul
{
    overflow: auto;
    max-height:300px;
    color: #666;
    list-style-type: none;
    list-style-position:inside;
    padding-right: 20px;
    list-style-image: url('../img/register-bullet-blue.png');
}

.Panels ul li
{
    line-height: 25px;
    font-size: 8pt;
    color: #111;
}

/*#endregion*/

/*#region Details */

.Details
{
    background-color: #fafafa;
    border: 1px solid #ccc;
    border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: auto;
    padding: 10px;
    -webkit-border-radius: 10px;
    width: 450px;
}

.Details .Table
{
    border-collapse: collapse;
    width: 100%;
}

.Details .Table tr td
{
    padding: 0;
    line-height: 30px;
}

.Details .Table tr td:first-child
{
    width: 100px;
}

.Details .Table tr td:first-child span
{
    margin-right: 10px;
}

.Details .Table tr td:last-child span
{
    color: #3f0fa7;
}

.Details .Table .AltRow
{
    background-color: #ddd;
}

.Details p
{
    margin: 0;
    line-height: 20px;
    text-indent: 20px;
    text-align: justify;
}
/*#endregion*/

.Overlay
{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(100,100,100,0.6);
}

.Progress
{
    position: fixed;
    width: 10%;
    min-width: 180px;
    line-height: 50px;
    display: inline;
    margin: auto;
    top: 50%;
    left: 45%;
    background: #eee;
    border: 1px solid #666;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    box-shadow: 0 0 5px #ddd;
}

.Progress img
{
    vertical-align: middle;
    margin-left: 10px;
    margin-right: 10px;
}
