﻿body
{
    margin: 0px;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
}
input[type=text] {
    outline: none;
}
a
{
    text-decoration: none;
}
.S_VO_Span_Middle
{
    display: table-cell;
    width: inherit;
    height: inherit;
    text-align: center;
    vertical-align: middle;
}
.S_VO_Span_Middle_Sign
{
    display: table-cell;
    width: inherit;
    height: inherit;
    font-family: 'AtrinWebSign1';
    text-align: center;
    vertical-align: middle;
}



/*----------------- MAIN BODY / CONTENTS ----------------*/
.S_VO_Main_Back
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 20px 50px 20px 50px;
    background-color: #E0E0E0;
    -moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.S_VO_Pages_MainBack
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 20px 20px 20px 20px;
    -moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.S_VO_Dialog_Back
{
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: rgba(0,0,0,0.6);
    z-index: 9000;
}
.S_VO_Dialog_Main
{
    position: absolute;
    display: block;
    width: 100%;
    height: auto;
    max-width: 700px;
    left: 50%;
    top: 50%;
    padding: 20px;
    background-color: #FFFFFF;
    border: solid 1px #CCCCCC;
    border-radius: 6px;
    box-shadow: 0px 1px 10px 2px rgba(0,0,0,0.7);
    -moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
    
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.S_VO_Dialog_Title
{
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 0.9em;
    text-align: center;
    color: #000000;
    direction: rtl;
    clear: both;
}
.S_VO_Dialog_Keys_Main
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}
.S_VO_Dialog_Keys_Main .S_VO_Dialog_Key_Items_Col1, .S_VO_Dialog_Keys_Main .S_VO_Dialog_Key_Items_Col2, .S_VO_Dialog_Keys_Main .S_VO_Dialog_Key_Items_Col3, .S_VO_Dialog_Keys_Main .S_VO_Dialog_Key_Items_Col4
{
    position: relative;
    display: table;
    height: auto;
    text-align: center;
    direction: rtl;
}
.S_VO_Dialog_Keys_Main .S_VO_Dialog_Key_Items_Col1
{
    width: 100%;
}
.S_VO_Dialog_Keys_Main .S_VO_Dialog_Key_Items_Col2
{
    float: right;
    width: 50%;
}
.S_VO_Dialog_Keys_Main .S_VO_Dialog_Key_Items_Col3
{
    float: right;
    width: 33.33%;
}
.S_VO_Dialog_Keys_Main .S_VO_Dialog_Key_Items_Col4
{
    float: right;
    width: 25%;
}
.S_VO_Dialog_Keys_Main .S_VO_Dialog_Key_Items_Finish
{
    width: 100%;
    clear: both;
}
/*----------------- MAIN BODY / CONTENTS ----------------*/



/*----------------------- UPDATING ----------------------*/
.S_VO_Dialog_Updating
{
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.5);
    z-index: 10000;
}
.S_VO_Dialog_Updating_Title
{
    position: absolute;
    display: block;
    width: 100%;
    height: auto;
    left: 0px;
    bottom: 50%;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: 500;
    font-size: 1.1em;
    color: #FFFFFF;
    text-align: center;
    direction: rtl;
    z-index: 2;
    filter: alpha(opacity=0);
    opacity: 0.0;

    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);

    animation-name: vo_update_anim_title;
    
    animation-delay: 2s;
    animation-direction: normal;
    animation-duration: 3.0s;    
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-timing-function:ease-in-out;

}
@keyframes vo_update_anim_title {
    0%
    {
        filter: alpha(opacity=0);
        opacity: 0.0;
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        animation-timing-function: ease-in-out;
    }
    10%
    {
        filter: alpha(opacity=100);
        opacity: 1.0;
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        animation-timing-function: linear;
    }
    80%
    {
        filter: alpha(opacity=100);
        opacity: 1.0;
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        animation-timing-function: ease-in-out;
    }
    90%
    {
        filter: alpha(opacity=0);
        opacity: 0.0;
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        animation-timing-function: ease-in-out;
    }
}
.S_VO_Dialog_Updating_Sign
{
    position: absolute;
    width: 50px;
    height: 50px;
    left: 50%;
    top: 50%;
    margin-left: -25px;
    z-index: 1;
}
.S_VO_Dialog_Updating_Rotate_C, .S_VO_Dialog_Updating_Rotate_CC
{
    position: absolute;
    width: 50px;
    height: 50px;
    left: 0px;
    top: 0px;
    z-index: 20;
    

    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;

    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);

    animation-name: vo_update_anim_sign_rotate;
    
    animation-delay: 0s;
    
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}
.S_VO_Dialog_Updating_Rotate_C
{
    filter: alpha(opacity=90);
    opacity: 0.9;
    animation-direction: normal;
    animation-duration: 1.1s;
}
.S_VO_Dialog_Updating_Rotate_CC
{
    filter: alpha(opacity=30);
    opacity: 0.3;
    animation-direction: reverse;
    animation-duration: 1.0s;
}
@keyframes vo_update_anim_sign_rotate {
    0%
    {
        -moz-transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -o-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    100%
    {
        -moz-transform: rotateZ(360deg);
        -ms-transform: rotateZ(360deg);
        -o-transform: rotateZ(360deg);
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
/*----------------------- UPDATING ----------------------*/



/*------------------------------ OBJECT UPDATING ---------*/
.S_VO_Obj_Updating_BodyCenter
{
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
    z-index: 100000;
}
.S_VO_Obj_Updating
{
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
}
.S_VO_Obj_Updating_Sign
{
    position: absolute;
    width: 30px;
    height: 30px;
    left: 50%;
    top: 50%;
    margin-left: -15px;
    margin-top: -15px;
    z-index: 1;
}
.S_VO_Obj_Updating_SRotate_C, .S_VO_Obj_Updating_SRotate_CC
{
    position: absolute;
    width: 30px;
    height: 30px;
    left: 0px;
    top: 0px;
    z-index: 20;
    

    -moz-transform-origin: 15px 15px;
    -ms-transform-origin: 15px 15px;
    -o-transform-origin: 15px 15px;
    -webkit-transform-origin: 15px 15px;
    transform-origin: 15px 15px;

    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);

    animation-name: vo_update_anim_sign_rotate_obj;
    
    animation-delay: 0s;
    
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}
.S_VO_Obj_Updating_SRotate_C
{
    filter: alpha(opacity=100);
    opacity: 1.0;
    animation-direction: normal;
    animation-duration: 0.7s;
}
@keyframes vo_update_anim_sign_rotate_obj {
    0%
    {
        -moz-transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -o-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    100%
    {
        -moz-transform: rotateZ(360deg);
        -ms-transform: rotateZ(360deg);
        -o-transform: rotateZ(360deg);
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
/*------------------------------ OBJECT UPDATING ---------*/



/*------------------- TOP OFFICE INFO -------------------*/
.S_VO_OfficeInfo_Main
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #FFFFFF;
    border: solid 1px #CCCCCC;
    border-radius: 2px;
    -moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.S_VO_OfficeInfo_Item_R, .S_VO_OfficeInfo_Item_L
{
    position: relative;
    display: block;
    width: 50%;
    height: auto;
    padding: 5px;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 1.0em;
    color: #004696;
    -moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.S_VO_OfficeInfo_Item_R
{
    float: right;
    text-align: right;
}
.S_VO_OfficeInfo_Item_L
{
    float: left;
    text-align: left;
}
.S_VO_OfficeInfo_Item_Sep_1, .S_VO_OfficeInfo_Item_Sep_2
{
    position: relative;
    display: block;
    width: 100%;
    height: 5px;
    margin-top: 5px;
    border-top: solid 1px #E0E0E0;
    clear: both;
}
.S_VO_OfficeInfo_Item_Sep_2
{
    display: none;
}
.S_VO_OfficeInfo_Item_Finish
{
    width: 100%;
    clear: both;
}
/*------------------- TOP OFFICE INFO -------------------*/



/*---------------------- TOP KEYS -----------------------*/
.S_VO_Keys_Main
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    max-width: 1300px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #FFFFFF;
    border: solid 1px #CCCCCC;
    border-radius: 2px;
    box-shadow: 0px 1px 4px 1px rgba(0,0,0,0.15);
    -moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.S_VO_Keys_Item_Main, .S_VO_Keys_Item_Main_Sel
{
    position: relative;
    display: table;
    float: right;
    width: 33.333%;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 3px;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    text-align: center;
    cursor: pointer;
    direction: rtl;
    -moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.S_VO_Keys_Item_Main_Sel
{
    background-color: #004696;
}
.S_VO_Keys_Item
{
    position: relative;
    display: table;
    width: auto;
    height: 40px;
}
.S_VO_Keys_Item_Text
{
    position: relative;
    display: table-cell;
    width: auto;
    height: inherit;
    font-size: 0.95em;
    text-align: center;
    vertical-align: middle;
    color: #787878;
}
.S_VO_Keys_Item_Sign
{
    display: table-cell;
    width: auto;
    height: inherit;
    padding-left: 7px;
    font-family: 'AtrinWebSign1';
    font-size: 1.4em;
    text-align: left;
    vertical-align: middle;
    text-decoration: none;
    color: #787878;
}
.S_VO_Keys_Item_Main:hover
{
    background-color: #F0F0F0;
}
.S_VO_Keys_Item_Main:hover .S_VO_Keys_Item_Text
{
    color: #004696;
}
.S_VO_Keys_Item_Main_Sel .S_VO_Keys_Item_Text
{
    color: #FFFFFF;
}
.S_VO_Keys_Item_Main_Sel .S_VO_Keys_Item_Sign
{
    color: #FFFFFF;
}
.S_VO_Keys_Item_Sep_1, .S_VO_Keys_Item_Sep_2, .S_VO_Keys_Item_Sep_3
{
    position: absolute;
    display: block;
    width: 1px;
    height: 16px;
    left: 0px;
    top: 50%;
    margin-top: -8px;
    background-color: #E0E0E0;
}
.S_VO_Keys_Item_Sep_3
{
    display: none;
}
.S_VO_Keys_Item_Main_Sel .S_VO_Keys_Item_Sep_1, .S_VO_Keys_Item_Main_Sel .S_VO_Keys_Item_Sep_2, .S_VO_Keys_Item_Main_Sel .S_VO_Keys_Item_Sep_3
{
    display: none;
}
.S_VO_Keys_Item_Sep_Line_1, .S_VO_Keys_Item_Sep_Line_2, .S_VO_Keys_Item_Sep_Line_3
{
    position: relative;
    width: 100%;
    height: 5px;
    margin-top: 5px;
    border-top: solid 1px #E0E0E0;
    clear: both;
}
.S_VO_Keys_Item_Sep_Line_3
{
    display: block;
}
.S_VO_Keys_Item_Sep_Line_1, .S_VO_Keys_Item_Sep_Line_2
{
    display: none;
}
.S_VO_Keys_Item_Finish
{
    width: 100%;
    clear: both;
}
/*---------------------- TOP KEYS -----------------------*/



/*------------------- KEYS IN ACTIONS -------------------*/
.S_VO_Key_Action_Main_B, .S_VO_Key_Action_Main_G, .S_VO_Key_Action_Main_R, .S_VO_Key_Action_Main_Y
{
    position: relative;
    display: block;
    width: auto;
    height: auto;
    min-width: 100px;
    padding: 7px 12px 7px 12px;
    background-color: #F5F5F5;
    border: solid 1px #CCCCCC;
    border-radius: 2px;
    color: #787878;
    cursor: pointer;
}
.S_VO_Dialog_Keys_Main .S_VO_Key_Action_Main_B, .S_VO_Dialog_Keys_Main .S_VO_Key_Action_Main_G, .S_VO_Dialog_Keys_Main .S_VO_Key_Action_Main_R, .S_VO_Dialog_Keys_Main .S_VO_Key_Action_Main_Y
{
    display: table;
}
.S_VO_Content_Keys_Main .S_VO_Key_Action_Main_B, .S_VO_Content_Keys_Main .S_VO_Key_Action_Main_G, .S_VO_Content_Keys_Main .S_VO_Key_Action_Main_R, .S_VO_Content_Keys_Main .S_VO_Key_Action_Main_Y
{
    display: table;
}
.S_VO_Key_Action_Main_B:hover
{
    background-color: #F5F8FF;
    color: #004696;
}
.S_VO_Key_Action_Main_G:hover
{
    background-color: #F8FFF5;
    color: #007800;
}
.S_VO_Key_Action_Main_R:hover
{
    background-color: #FFF8F8;
    color: #C80000;
}
.S_VO_Key_Action_Main_Y:hover
{
    background-color: #FFF8F5;
    color: #825A00;
}
.S_VO_Key_Action_Text
{
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 0.9em;
    text-align: center;
    vertical-align: middle;
    color: inherit;
    direction: rtl;
    z-index: 1;
}
.S_VO_Key_Action_Sign
{
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    padding-left: 7px;
    font-family: 'AtrinWebSign1';
    font-size: 1.4em;
    text-align: left;
    vertical-align: middle;
    text-decoration: none;
    color: inherit;
    direction: rtl;
    z-index: 2;    
}
.S_VO_Key_Action_Button
{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: transparent;
    border: none;
    color: transparent;
    outline: none;
    cursor: pointer;
    z-index: 10;
}
/*------------------- KEYS IN ACTIONS -------------------*/



/*--------------------- MAIN CONTENT --------------------*/
.S_VO_Content
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    /*
    padding: 20px 20px 20px 20px;
    */
    padding: 0px;
    background-color: #FFFFFF;
    -moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
/*--------------------- MAIN CONTENT --------------------*/







@media screen and (min-width:0px) and (max-width:1000px)
{
    .S_VO_Main_Back
    {
        padding: 10px 10px 10px 10px;
    }
}
@media screen and (min-width:0px) and (max-width:800px)
{
    .S_VO_Main_Back
    {
        padding: 0px 0px 0px 0px;
    }
    .S_VO_OfficeInfo_Item_R, .S_VO_OfficeInfo_Item_L
    {
        position: relative;
        display: block;
        width: 50%;
        height: auto;
        padding: 5px;
        font-family: 'IRANSans';
        font-style: normal;
        font-weight: normal;
        font-size: 1.0em;
        color: #004696;
        -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	    -o-box-sizing: border-box;
	    -webkit-box-sizing: border-box;
	    box-sizing: border-box;
    }
    .S_VO_OfficeInfo_Item_R
    {
        float: right;
        text-align: right;
    }
    .S_VO_OfficeInfo_Item_L
    {
        float: left;
        text-align: left;
    }
    .S_VO_OfficeInfo_Item_Sep_1, .S_VO_OfficeInfo_Item_Sep_2
    {
        position: relative;
        display: block;
        width: 100%;
        height: 5px;
        margin-top: 5px;
        border-top: solid 1px #E0E0E0;
        clear: both;
    }
    .S_VO_OfficeInfo_Item_Sep_2
    {
        display: none;
    }



    .S_VO_Keys_Item_Main, .S_VO_Keys_Item_Main_Sel
    {
        width: 50%;
    }
    .S_VO_Keys_Item_Sep_2
    {
        display: none;
    }
    .S_VO_Keys_Item_Sep_3
    {
        display: block;
    }
    .S_VO_Keys_Item_Sep_Line_2
    {
        display: block;
    }
    .S_VO_Keys_Item_Sep_Line_1, .S_VO_Keys_Item_Sep_Line_3
    {
        display: none;
    }



    .S_VO_Pages_MainBack
    {
        padding: 10px 10px 10px 10px;
    }
}

@media screen and (min-width:0px) and (max-width:600px)
{
    .S_VO_Keys_Item_Main, .S_VO_Keys_Item_Main_Sel
    {
        float: none;
        width: 100%;
        clear: both;
    }
    .S_VO_Keys_Item_Sep_1, .S_VO_Keys_Item_Sep_3
    {
        display: none;
    }
    .S_VO_Keys_Item_Sep_Line_1
    {
        display: block;
    }
    .S_VO_Keys_Item_Sep_Line_2, .S_VO_Keys_Item_Sep_Line_3
    {
        display: none;
    }



    .S_VO_Pages_MainBack
    {
        padding: 10px 10px 10px 10px;
    }
}