﻿/* MENU PRIMARY V4 */

.KeyMenuHeader
{
    position: relative;
    display: table;
    float: right;
    width: auto;
    height: inherit;
    cursor: pointer;
}
.KeyMenuSubMain
{   
    position: relative;
    display: table;
    width: auto;
    height: 40px;
    padding: 0px 20px 0px 20px;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 1.0em;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    color: #FFFFFF;
    direction: rtl;
    z-index: 100;
}
.KeyMenuSubMain_Over
{
    position: absolute;
    display: block;
    width: 0%;
    height: 2px;
    left: 50%;
    bottom: 0px;
    background-color: rgba(200,150,45,0.0);
    z-index: 10;
    
    -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: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);

    -moz-transition: all 0.6s cubic-bezier(0.000, 0.700, 0.300, 1.000);
	-ms-transition: all 0.6s cubic-bezier(0.000, 0.700, 0.300, 1.000);
	-o-transition: all 0.6s cubic-bezier(0.000, 0.700, 0.300, 1.000);
	-webkit-transition: all 0.6s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	transition: all 0.6s cubic-bezier(0.000, 0.700, 0.300, 1.000);
}
.KeyMenuHeader:hover .KeyMenuSubMain_Over
{
    width: 100px;
    background-color: rgba(200,150,45,1.0);
}

.KeyMenuSubBody
{
    position: absolute;
    display: block;
    width: 100%;
    height: auto;
    min-width: 200px;
    top: 40px;
    left: 50%;
    padding: 10px 10px 20px 10px;
    background-color: rgba(255,255,255,0.9);
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.3);
    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;
    z-index: 1000;

    -webkit-transform: translateX(-50%) translateY(-10px);
    -moz-transform: translateX(-50%) translateY(-10px);
    -o-transform: translateX(-50%) translateY(-10px);
    -ms-transform: translateX(-50%) translateY(-10px);
    transform: translateX(-50%) translateY(-10px);

    -moz-transition: all 0.3s cubic-bezier(0.000, 0.700, 0.300, 1.000);
	-ms-transition: all 0.3s cubic-bezier(0.000, 0.700, 0.300, 1.000);
	-o-transition: all 0.3s cubic-bezier(0.000, 0.700, 0.300, 1.000);
	-webkit-transition: all 0.3s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	transition: all 0.3s cubic-bezier(0.000, 0.700, 0.300, 1.000);
}
.KeyMenuSubBody:before
{
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    left: 50%;
    top: -6px;
    margin-left: -3px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(255,255,255,0.9);
    z-index: 10;
}
.KeyMenuSub
{
    position: relative;
    width: 100%;
    height: auto;
    padding: 5px 5px 5px 5px;
    background-color: rgba(255,255,255,0.0);
    border-bottom: solid 1px #EAEAEA;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 0.9em;
    text-align: right;
    color: #000000;
    cursor: pointer;
    clear: both;
    -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-transition: all 0.3s cubic-bezier(0.000, 0.700, 0.300, 1.000);
	-ms-transition: all 0.3s cubic-bezier(0.000, 0.700, 0.300, 1.000);
	-o-transition: all 0.3s cubic-bezier(0.000, 0.700, 0.300, 1.000);
	-webkit-transition: all 0.3s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	transition: all 0.3s cubic-bezier(0.000, 0.700, 0.300, 1.000);
}
.KeyMenuSub:hover
{
    background-color: rgba(255,255,255,1.0);
    padding-right: 10px;
    color: #3CB4C3;
}



@media screen and (min-width:0px) and (max-width:600px)
{
    
}