﻿@import url(/fonts/fontiran.css);

* {
    box-sizing: border-box; /* https://www.w3schools.com/css/css3_box-sizing.asp */
    direction: rtl;
}
/* Responsive Styles
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <div class="row"> use class='row height100' to set all column height to 100%
        <div class="col-3">...</div> <!-- 25% -->
         <div class="col-9">...</div> <!-- 75% -->
    </div>

    For Images this attribute needed: background-size: contain;

    //These module use for responsive pages
    SetFlexOption()
    $(window).resize(function() {
        SetFlexOption()
    })
    function SetFlexOption() {
        if ($(window).width() < 768) {
            $(".height100").css("display", "table");
        }
        else {
            $(".height100").css("display", "flex");
        };
    }

*/
/* For desktop: */
.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    [class*="col-"] {
        width: 100%;
    }
    /*[class="row"]{display: table;}*/
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

[class*="col-"] {
    float: right; /*RTL:right  LTR:left*/
    /*display:table-cell;*/
    text-align: justify;
    /*For Test*/
    /*border:1px dotted gray;*/
}

.responsiveimage {
    width: 100%;
    height: auto;
    display: block;
}

html {
    height: 100%;
}

body {
    background-color: #FFFFFF;
    margin: 0px;
    padding: 0px;
    font-family: IRANSans,Tahoma;
    font-size: 12px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    height: 100%;
}

a {
    text-decoration: none;
}

p {
    display: contents;
}

hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.imageloader {
    background-position: center center;
    background-image: url('../images/loader.gif');
    background-repeat: no-repeat;
    background-color: #FFFFFF;
}

h3, .title /*  page titles */ {
    margin: 0px 0px 4px 0px;
    color: #000000;
    font-size: 14px;
    font-family: IRANSans,Tahoma;
    font-weight: bold;
    font-style: normal;
    padding-bottom: 4px;
}

.textbox {
    /* background-color: #262626; */
    /* color: white; */
    border: 1px solid #000;
    font-size: 11px;
    font-weight: bold;
    border-radius: 5px;
    padding: 2px;
    font-family: IRANSans,Arial;
}

.button {
    background-color: #151515;
    border: 1px solid #000000;
    font-weight: bold;
    font-family: IRANSans,Tahoma;
    font-size: 10px;
    color: white;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
}

#flags {
    color: black;
    font-weight: bold;
    font-size: 10px;
    background-color: #fff;
    /* background-image: url('/pages/image/photo/141'); */
    background-repeat: no-repeat;
    /* background-size: 100%; */
    /* min-height: 85px; */
    background-position-x: right;
    background-position-y: -24px;
}

    #flags a {
        color: #ffd11a;
    }

#toptopdiv {
    /* border-width: 1px; */
    /* border-color: #000000; */
    /* background-color: #5a7e90; */
    color: #000;
    font-size: 10px;
    min-height: 32px;
    background-repeat: repeat-x;
    direction: rtl;
    /* vertical-align: middle; */
    /* border-bottom: 1px solid #4e4e4f; */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    /* z-index: 3; 
    background-image: linear-gradient(to top, rgb(200, 182, 9), rgba(255, 255, 255, 0));*/
    /*background: linear-gradient(to bottom, #fff 0%, #f0f0f0 100%);*/
    background: linear-gradient(to bottom, #d7413a 0%, #bb0101 100%);
}

#topdiv {
    direction: rtl;
    background-color: #434343;
    color: #BDC3Ba;
}

#middlediv {
    border-width: 2px 1px 1px;
    background-repeat: repeat-x;
    /*border-top: 2px solid rgb(0, 0, 0);*/
    direction: rtl;
}

#downdiv {
    color: white;
    text-align: center;
    /* background-color: #576e81; */
    background-repeat: repeat-x;
    direction: rtl;
    padding-top: 1%;
    /*border-top: 2px solid rgb(0, 0, 0);*/
    /*background-image: linear-gradient(to top, #000000, #d57925);*/
    background: linear-gradient(to bottom, #d7413a 0%, #bb0101 100%);
}

    #downdiv .downitem {
        background-color: #FFFFFF46;
        border-radius: 12px;
        display: inline-block;
        font-size: 10px;
        padding: 2px;
        text-align: center;
        font-family: IRANSans,Arial;
        white-space: nowrap;
        /* float: left; */
        cursor: pointer;
        margin: 1px;
        min-width: 80px;
    }

        #downdiv .downitem a {
            color: #FFFFFF;
            font-weight: bold;
        }

        #downdiv .downitem:hover {
            background-color: #312f2f;
            color: white;
        }

    #downdiv a {
        color: #FFFFFF;
    }

        #downdiv a:hover {
            color: #ffd11a;
            font-weight: bold;
        }

#toptopcell2 {
    width: 350px;
    background-repeat: repeat-x;
    vertical-align: middle;
    text-align: left;
}

#toptopcell3 {
    width: 220px;
    text-align: center;
}


#topcell1 {
    padding: 0px;
    margin: 0px;
    position: relative;
    display: block;
    text-align: right;
    vertical-align: top;
}

#topmenu {
    background-color: #434343;
}

.topmenuitem {
	float: right;
	list-style-type: none;
	/* background: linear-gradient(to bottom, #ff9340 0%, #ff6e00 100%); */
	text-align: center;
	cursor: pointer;
	font-weight: bold;
	font-size: 12px;
	font-family: IRANSans, Arial;
	font-style: italic;
	white-space: nowrap;
	overflow: hidden;
	/* border-top-right-radius: 28px; */
	/* border-top-left-radius: 39px; */
	/*border-right: 1px solid #eaeaea;*/
	/* transition: 2s; */
	height: 28px;
	color: #FFFFFF !important;
	padding-top: 6px;
}

    .topmenuitem:hover {
        background: linear-gradient(to bottom, #d7413a 0%, #bb0101 100%);
        text-decoration: underline;
        /*filter: blur(1px);
        font-size: 14px;*/
    }
        .topmenuitem:hover a {
        color:#FFFFFF !important;
        }


    .topmenuitem a {
        color: #FFFFFF;
    }

/*.topmenuitem a:hover {
            color: rgb(0, 0, 0);
            text-shadow: black 0px 0px 5px;
        }*/

#topcell2 {
    width: 180px;
    background-color: #C1C663;
    background-image: url('Backgrounds/TopDivCell2Background.png');
    background-repeat: repeat-x;
    padding: 10px;
    vertical-align: middle;
}

    #topcell2 .title {
        color: #FFFFFF;
    }

/*#homepagemiddledata {
    color: #434343;
}

    #homepagemiddledata .title {
        font-size: 20px;
        color: #5ED990;
    }

    #homepagemiddledata a {
        font-style: italic;
        color: gray;
    }

        #homepagemiddledata a:hover {
            color: Black;
        }*/

#middlecell1 {
    border: medium none;
    padding: 10px;
    min-height: 300px;
    vertical-align: top;
    color: rgb(0, 0, 0);
    text-align: justify;
    background-color: rgb(255, 255, 255);
    background-size: 300px; /*default:Cover*/
    /*background-image: url(/pages/image/photo/149);*/
    background-repeat: no-repeat;
    background-position: left bottom;
}

    #middlecell1 h3, #middlecell1 .title {
        font-size: 25px;
        color: rgb(0, 0, 0);
    }

    #middlecell1 a {
        color: #000000 ;
        font-weight: bold;
    }

        #middlecell1 a:hover {
            text-decoration: none;
            color: #ff6e00 ;
        }

        #middlecell1 h4 {
	        font-size: 18px;
	        color: #434343;
	        font-weight: bold;
	        margin: 0px;
	        border-bottom: 1px solid #cecece;
        }

#middlecell2 {
    border: none;
    /* background-color: #99ccff; */
    /* background-repeat: repeat-x; */
    padding: 0px 10px 10px 10px;
    vertical-align: top;
    color: #000;
    border-right: 2px solid #d8d8d8;
}

    #middlecell2 .newskadr {
        padding: 0px;
        /* background-color: rgb(153, 204, 255); */
        margin-bottom: 4px;
        text-align: justify;
        border-radius: 10px;
        color: black;
        font-size: smaller;
    }

        #middlecell2 .newskadr a:hover {
            color: #ffd11a;
        }

    #middlecell2 .newstitle {
        color: Gray;
        font-style: italic;
        font-size: 11px;
        margin-bottom: 2px;
    }

        #middlecell2 .newstitle:hover {
            color: white;
        }

    #middlecell2 .newstext {
        color: gray;
        font-size: 11px;
    }

    #middlecell2 .title {
        color: black;
        font-size: 15px;
    }

    #middlecell2 a {
        color: #5EB990;
    }

        #middlecell2 a:hover {
            color: #FFFFFF;
        }

    #middlecell2 .kadr {
        padding: 5px;
        background-color: #06AEFF;
        border: 0px solid #990000;
        font-size: smaller;
        color: white;
    }

        #middlecell2 .kadr a {
            color: #FF0000;
        }

            #middlecell2 .kadr a:hover {
                text-decoration: underline;
            }

#middlecell3 {
    border: none;
    background-color: #ffeee0;
    /* background-repeat: repeat-x; */
    /* background-image: url('Backgrounds/MiddleDivCell2Background.png'); */
    /*border-right: 3px solid #B3B3B3;*/
    padding: 10px;
    vertical-align: top;
    color: #000;
}

    #middlecell3 h3, #middlecell3 .title {
        font-size: 14px;
        color: #000000;
    }


    #middlecell3 .whitebox {
        /*background-color: white;*/
        border-radius: 10px;
        padding: 5px;
    }
/* General Box */
.generalbox {
    border-left: 2px solid rgb(102, 102, 102);
    color: rgb(11, 11, 11);
    padding-left: 5px;
    margin-top: 10px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    background-color: #ffffff4f;
    padding-right: 5px;
}

    .generalbox .caption, .generalbox .caption a {
        font-weight: bold;
        text-decoration: none;
        color: black !important;
    }

        .generalbox .caption a:hover {
            color: #999999 !important;
        }

    .generalbox a {
        text-decoration: none;
        color: #000000 !important;
    }

        .generalbox a:hover {
            color: rgb(0, 0, 0) !important;
            font-weight: bold;
        }

/* Menu CSS */
.accmenu_mainitems {
    border-width: 1px;
    border-color: #000000;
    border-bottom-style: dotted;
}

    .accmenu_mainitems .item {
        border-width: 1px;
        border-color: #4d4d7b;
        color: #bdc3c9;
        font-weight: bold;
        padding: 10px 0px 0px 0px;
        cursor: pointer;
        width: 90px;
        float: right;
        text-align: center;
        border-left-style: solid;
        vertical-align: bottom;
        height: 26px;
    }

        .accmenu_mainitems .item:hover {
            color: #ffffff;
        }

.accmenu_mainitems_hover, #topmenusubmenus {
    background-color: #434343;
}

.accmenu_level2menus img {
    border: 1px solid #000000;
}

.accmenu_level2menus .item {
    color: #F8FdA9;
    cursor: pointer;
    font-size: 11px;
    float: right;
    width: 110px;
    text-align: center;
    padding-top: 4px;
    padding-bottom: 4px;
}

    .accmenu_level2menus .item:hover {
        background-color: #000000;
    }

.accmenu_level2menus_hover {
    background-color: #A88200;
}


#quicklinkmenu .item {
    margin: 1px;
    border-width: 1px;
    /* border-color: #585A0F; */
    color: white;
    padding: 5px 20px 5px 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    background-color: #1d94c3;
    border-radius: 10px;
}

    #quicklinkmenu .item:hover {
        background-color: #000000;
        color: white;
    }

#copyright {
    text-align: center;
    font-size: 10px;
}

#otherlanquages {
    text-align: center;
    font-size: 10px;
}

#threeCell {
    margin: auto;
}

    #threeCell td {
        background-color: #F8F9F4;
        border: solid 1px #E0DfDb;
        padding: 10px;
        width: 33%;
        vertical-align: top;
        color: gray;
    }

        #threeCell td a {
            color: #6AAA90;
        }

            #threeCell td a:hover {
                color: Black;
            }

        #threeCell td .title {
            color: #434343;
            font-size: 30px;
        }

.showparam {
    background-color: #000000;
    border-radius: 8px;
    /* padding: 2px; */
    padding-right: 4px;
    padding-left: 4px;
    font-weight: bold;
    display: inline;
    font-size: smaller;
    text-decoration: none;
    color: #d2b5b5;
    opacity: 0.3;
}
    .showparam a {
        color: #d2b5b5 !important;
    }

    .showparam:hover {
        background-color: yellow;
        color: black;
    }

.textField {
    vertical-align: middle;
    /*text-align: left;*/
    font-weight: bold;
    /*background: rgb(26, 23, 23);*/
}

.valueField {
    vertical-align: top;
    /*text-align: left;*/
    font-weight: bold;
}

.alerttd {
    color: #fff;
    margin-bottom: 1px;
    margin-top: 1px;
    background-color: #ecb658;
    border-radius: 8px;
    padding: 5px;
    display: table;
}

.donetd {
    color: #000;
    margin-bottom: 1px;
    margin-top: 1px;
    background-color: #5daeff;
    border-radius: 8px;
    padding: 5px;
    display: table;
}

.warningtd {
    color: #fff;
    margin-bottom: 1px;
    margin-top: 1px;
    background-color: #e05c5c;
    border-radius: 8px;
    padding: 5px;
    display: table;
}

.GalleryImageBorder {
    border: 1px solid Black;
    padding: 1px;
    border-radius: 5px;
}

.addtobasket {
    background-color: #F6F6F6;
    border-radius: 20px;
    color: #000000;
}


/* Grid Classes [Start] */
.grid {
    border: 1px none #000000;
    width: 100%;
    font-size: 11px;
    border-spacing: 0;
    border-collapse: collapse;
    text-align: center;
}

    .grid td {
        min-width: 16px;
    }

.gridFirstRow {
    border: 1px solid #FFFFFF;
    border-top: 0px solid;
    font-weight: bold;
    padding: 1px 2px 1px 2px;
    color: #FFFFFF; /*border: 1px solid #FFFFFF;background-color: #000000;*/
    height: 18px;
    font-size: 11px;
    background-color: #6CC5FF;
}

.gridFirstColumn {
    border: 1px solid #FFFFFF;
    -webkit-text-shadow: 0 0 2px #AAAAAA;
    text-shadow: 0 0 2px #AAAAAA;
    font-size: 11px;
    font-weight: bold;
    padding: 1px 2px 1px 2px;
    color: #FFFFFF; /*border: 1px solid #FFFFFF;background-color: #000000;*/
    height: 18px;
    text-align: left;
    background-color: #6CC5FF;
}

.gridFirstRow a {
    color: #000000;
}

.gridEvenClass {
    padding: 2px;
    border: 1px solid #FFFFFF;
    background-color: #DDE9F4;
    color: #000000;
    text-align: center;
}

.gridOddClass {
    padding: 2px;
    background-color: #CCDDEE;
    color: #000000;
    border: 1px solid #FFFFFF;
    text-align: center;
}

.gridTdHover {
    background-color: #A2C1C1;
}

.gridSelected {
    background-color: #1bb1c1;
}

.grid-tr-hover {
    background-color: #ADCBE1;
}

.grid-row-freeze {
    background-color: #e1e1e1;
}

.grid-col-row-freeze-1 {
    border-left: 2px solid #000;
    border-right: 2px solid #000;
}

.grid-col-row-freeze-2 {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.grid td a {
    color: #003874 !important;
    font-weight: bold;
    font-size: 11px;
}
/* Grid Classes [End] */

.header {
    /*padding: 2px;*/
    border-style: solid none solid none;
    border-width: 1px;
    border-color: #FFFFFF;
    margin: 0px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: #24A8FF;
    color: #FFFFFF;
    text-align: center;
    font-weight: bold;
    font-size: 11px;
    padding-top: 1px;
    padding-bottom: 3px;
    width: 100%;
}

    .header a {
        color: white;
    }

.controlValidationErrorLabel {
    border-style: solid;
    border-width: 1px;
    border-color: Black;
    background-position: right center;
    background-color: #DB370B;
    color: #fff;
    padding: 3px;
    margin: 2px 0px 10px 0px;
    display: table;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 2px #000000;
    box-shadow: 0px 0px 2px #000000;
    min-height: 20px;
    vertical-align: middle;
    text-align: justify;
    line-height: 1.6em;
    font-weight: bold;
    font-family: IRANSans,Arial;
}

.controlValidationErrorClass {
    box-shadow: rgb(0, 0, 0) 0px 0px 2px;
    background-color: rgb(255, 239, 174);
    border: 1px solid black;
}


.linkbutton {
    background-color: #5daeff !important;
    border: 1px none #FFFFFF;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    padding: 1px;
    border-radius: 10px;
    -webkit-text-shadow: 0 0 2px #FFFFFF;
    text-shadow: 0 0 2px #FFFFFF;
    display: inline-block;
    width: 170px;
    text-align: center;
    /* -webkit-box-shadow: 0 0 5px #000000; */
    /* box-shadow: 0 0 5px #000000; */
    cursor: pointer;
    font-family: IRANSans, Tahoma;
    height: 24px;
    vertical-align: middle;
    padding-top: 3px;
}

    .linkbutton:hover, .smalllinkbutton:hover {
        background-color: #FFCC00 !important;
        /*-webkit-box-shadow: 0 0 5px #000000;
        box-shadow: 0 0 5px #000000;*/
    }

.smalllinkbutton {
    background-color: #000000;
    border: 1px none #FFFFFF;
    color: #FFFFFF;
    font-size: 9px;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    padding: 3px 10px 3px 10px;
    border-radius: 10px;
    -webkit-text-shadow: 0 0 2px #FFFFFF;
    text-shadow: 0 0 2px #FFFFFF;
    display: inline-block;
    text-align: center;
    -webkit-box-shadow: 0 0 5px #000000;
    box-shadow: 0 0 5px #000000;
    cursor: pointer;
}

.sticky {
    position: fixed;
    top: 0;
}



.bannercaption {
	padding-right: 10px;
	font-size: 16px;
	text-shadow: 0px 0px 1px black;
	padding-top: 16px;
	color: #151515;

}

    .bannercaption .sub1 {
        font-size: smaller;
    }

    .bannercaption .sub2 {
        font-size: 22px;
        font-weight: normal;
        text-shadow:none;
    }

    .bannercaption .sub3 {
        font-size: 12px;
        text-shadow:none;
    }
.bannerimage {
	 background-image: url(/pages/image/photo/944); 
	 background-repeat: no-repeat; 
	 background-position: right; 
	 background-size: 180px;                 
     min-height: 80px;
}
#localtools {
    position: fixed;
    bottom: 20px;
    cursor: pointer;
    list-style: none;
    direction: ltr;
    background-color: black;
    color: white;
    font-size: 10px;
    font-weight: bold;
    text-align: left;
}

    #localtools div {
        text-align: center;
        border-top: 1px solid white;
        padding-top: 1px;
        transition: 1s;
    }

        #localtools div:hover {
            background-color: orangered;
        }

.toolactionsResponsiveColumns {
    border: 1px solid red;
}

.toolactionsResponsiveRows {
    border: 2px solid green;
}

.toolactionsRed {
    background-color: darkorange;
    color: white;
    display: inline;
    font-size: 8px;
    border-radius: 5px;
    padding-right: 2px;
    padding-left: 2px;
}

/* TABS */
.idTabs {
    width: 100%;
    border-width: 2px;
    border-color: #000000;
    border-bottom-style: ridge;
}

    .idTabs td {
        min-width: 90px;
    }

        .idTabs td a div {
            margin: 0px 1px 0px 1px;
            padding: 1px;
            border: 1px solid #000000;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            background-color: #000000;
            -webkit-box-shadow: 0 0 2px #000000;
            box-shadow: 0 0 2px #000000;
            color: #FFFFFF;
            text-align: center;
            font-weight: bold;
            font-size: 12px;
            opacity: 0.5;
        }

.idTabsselected {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #FF3300;
    color: #FFFFFF;
}

.idTabsContent {
    padding: 10px;
    border: 1px solid #000000;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background-image: url('Images/Back_Tab.png');
    background-repeat: repeat-x;
}

    .idTabsContent a {
        color: #1E1E1E;
    }

.homepagenewsSections {
    padding: 10px;
    font-size: smaller;
}

    .homepagenewsSections .title {
        display: block;
        font-size: 17px !important;
        border-bottom: 1px solid black;
    }


/*accordable*/
.accordable {
    margin: 0;
    padding: 0;
}

    .accordable li:before {
        content: '';
        padding: 0;
    }

    .accordable .accordable-panel {
        background-color: #ECF0F1;
        margin-bottom: 1px;
    }

    .accordable .accordable-heading {
        background: linear-gradient(to bottom, #d7413a 0%, #bb0101 100%);
        color: #FFF;
        padding: 3px 14px;
        font-weight: bold;
        font-size: larger;
    }

    .accordable .accordable-expander {
        padding: 5px;
        background-color: #FFFFFF;
        border-right: 1px solid #ff9e9e;
        border-left: 1px solid #ff9e9e;
        border-bottom: 1px solid #ff9e9e;
    }

.services {
    background: linear-gradient(to bottom, #d7413a 0%, #bb0101 100%);
    color: #FFFFFF;
    font-weight: bold;
    padding: 10px;
    border: 1px solid #FFFFFF;
}
.services .title{
    font-size:18px !important;
    color:#FFFFFF !important;
}

.boardmemberslist_photo {
	vertical-align: top;
	text-align: center;
}
.boardmemberslist_photo img{border:1px solid black;}
.boardmemberslist_body {
	border-right: 3px solid #ff6e00;
	padding: 5px;
	margin-bottom: 5px;
	border-radius: 10px;
	background-color: #ff6e0021;
}
.Advertisement_photo {
    border: 1px solid #ffb5b5;
    margin-left: 1px;
    text-align: center;
    border-radius: 10px;
    padding: 2px;
    margin-bottom: 1px;
}
.Advertisement_photo a {
	color: #000000 !important;
	font-weight: bold;
}

