﻿* {
    position:relative;
}

html , body {
    width:100%;
    height:100%;
    margin:0px;
    padding:0px;
}

.center {
    margin: auto;
    max-width:500px;
    width:90%;
    padding: 10px;
}

#hello {
    position:absolute;
    font-family: 'Open Sans Hebrew', serif;
    font-size:18px;
    font-weight:bold;
    float:right;
    top:5px;
    right:55px;
    color:white;
}

#userName {
    font-weight:normal;
}

select {
   border: 1px solid #111;
   background-color: #ebebeb;
   width: 80%;
   padding: 0px 3px 5px 5px;
   font-family: 'Open Sans Hebrew', serif;
   font-size: 16px;
   color: #a1a1a1;
   border: 1px solid #a1a1a1;
   height: 22px;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   background: url('../images/arrowDownBlue.png') 10px / 20px no-repeat #eee;
   -ms-box-sizing:content-box;
   -moz-box-sizing:content-box;
   box-sizing:content-box;
   -webkit-box-sizing:content-box; 
   top:-10px;
   right:5%;
}

#container {
   height:100%;
}

#bottom
{
    width: 100%;
    height: 10px;
    background-color:#005292;
    bottom: 0px;
    position: absolute;
    z-index: 6;
}

#wrap { 
    height:calc(100% - 40px);
}

.pagefooter, .push { width:100%; height:40px; bottom: 0px; float: left; }

.tbl
{
    width:100%;
    font-family: 'Open Sans Hebrew', serif;
    font-size: 16px;
    direction:rtl;
    border-collapse: collapse;
}

.tbl tr th
{
    color:white;
    font-weight:300;
    font-size: 18px;
    border-right: 1px solid white;
    background-color:#0093bb;
}

.tblOver tr:hover {
    background-color: #a6e1ec !important;
    cursor: pointer;
}

.selected td {
    background: #ffef8f !important;
}

.tbl tr td {
    padding-right:5px;
    border:1px solid white;
    color:#252525;
}

.tbl tr th:first-child {
    border-right:none;
}

.tbl tr:nth-child(even)
{
    background-color: #d7e7ef;
}

.tbl tr:nth-child(odd)
{
    background-color: #e7f1f6;
}

.tblData, .tblData2, .tblData3, .tblData4 {
    overflow-y: auto;
    overflow-x: hidden;
    direction: ltr;
}

.topDivLine {
    margin-top:10px;
    width:100%;
    height:4px;
    background-color: #005292;
}

.textClass {
   border: 1px solid #111;
   background-color: #ebebeb;
   padding: 3px 5px 5px 5px;
   font-family: 'Open Sans Hebrew', serif;
   font-size: 16px;
   color: #a1a1a1;
   border: 1px solid #a1a1a1;
   height: 19px;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   -ms-box-sizing:content-box;
   -moz-box-sizing:content-box;
   box-sizing:content-box;
   -webkit-box-sizing:content-box;
    margin-top: 7px;
    margin-left: 10px;
}

.inputTiny
{
    width:calc(10% - 26px);
}

.inputSmall
{
    width:calc(15% - 26px);
}

.inputMeduim
{   
    width:calc(20% - 26px);
    min-width: 90px;
}

.inputBig
{
    width:calc(25% - 26px);
}

.inputHuge
{
    width:calc(40% - 26px);
}

#blockUI {
    position: fixed !important;
    width: 102% !important;
    height: 100% !important;
    margin-right: -2%;
    background: rgba(0, 0, 0, .6);
    z-index: 1001;
    display: none;
    font-family: 'Open Sans Hebrew', serif;
}

#blockUICenter {
    position: absolute;
    padding: 0;
    margin: 0;
    width: 300px;
    top: 40%;
    left: calc(50% - 150px);
    text-align: center;
    color: #464646;
    border: 2px solid #aaa;
    background-color: #fff;
    cursor: wait;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 80px;
}

.btnOK {
    width: 50%;
    height:100%;
    background-color: #80b539;
    font-family: 'Open Sans Hebrew', serif;
    font-size: 15px;
    color:white;
    display:table;
    margin:0 auto;
    cursor:pointer;
    float:right;
    text-align: center;
}

.btnOK:hover {
    font-size: 16px;
}

.btnCancel {
    width: 50%;
    height:100%;
    background-color: #E63C41;/*Red*/
    font-family: 'Open Sans Hebrew', serif;
    font-size: 15px;
    color:white;
    display:table;
    margin:0 auto;
    cursor:pointer;
    float:right;
    text-align: center;
}

.btnCancel:hover {
    font-size: 16px;
}

#notifier {
    position:fixed;
    top:-80px;
    width:350px;
    left:calc(50% - 175px);
    min-height:32px;
    background-color:#0093bb;
    color:white;
    font-family: 'Open Sans Hebrew', serif;
    font-weight: normal;
    font-size: 20px;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index:3000;
}

.versionsDiv
{
    font-family: 'Open Sans Hebrew', serif;
    font-weight: normal;
    font-size: 17px;   
}

.serviceTbl
{
    float: right;
    direction: rtl;
    padding-top:5px;
}

.insideNotifier {
    width:90%;
    margin-right:5%;
    text-align:center;
}

.plusIcon
{
    height:22px;
    float: right;
    top: 4px;
    right: 8px;
}

/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */

.reveal-modal-bg {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #000;
    background: rgba(0,0,0,.8);
    z-index: 1009;
    display: none;
    top: 0;
    left: 0;
    font-family: 'Open Sans Hebrew', serif;
}

.reveal-modal {
    visibility: hidden;
    top: 120px;
    background: #eee url('../images/modal-gloss.png') no-repeat -200px -80px;
    position: absolute;
    z-index: 2010;
    padding: 30px 40px 34px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.4);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
    -box-shadow: 0 0 10px rgba(0,0,0,.4);
}

.reveal-modal .close-reveal-modal {
    font-size: 22px;
    line-height: .5;
    position: absolute;
    top: 8px;
    right: 11px;
    color: #aaa;
    text-shadow: 0 -1px 1px rbga(0,0,0,.6);
    font-weight: bold;
    cursor: pointer;
}

.reveal-modal h1
{
    text-align:center;
    color:#464646;
    font-family: 'Open Sans Hebrew', serif;
    font-size:25px;
}

.reveal-modal h2
{
    font-size:14px;
}

