
/* general styles */

.FmTitleBarDivMain
{
   height: 68px;
   margin: 0px 18px 10px 10px;
   border-radius: 0px 0px 10px 10px;
   box-shadow: rgba(0,0,0,0.3) 5px 5px 8px;

   background: rgb(176,177,178); /* Old browsers */
   background: -moz-linear-gradient(top, rgba(176,177,178,1) 0%, rgba(124,124,125,1) 50%, rgba(102,102,104,1) 51%, rgba(75,75,77,1) 100%); /* FF3.6+ */
   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(176,177,178,1)), color-stop(50%,rgba(124,124,125,1)), color-stop(51%,rgba(102,102,104,1)), color-stop(100%,rgba(75,75,77,1))); /* Chrome,Safari4+ */
   background: -webkit-linear-gradient(top, rgba(176,177,178,1) 0%,rgba(124,124,125,1) 50%,rgba(102,102,104,1) 51%,rgba(75,75,77,1) 100%); /* Chrome10+,Safari5.1+ */
   background: -o-linear-gradient(top, rgba(176,177,178,1) 0%,rgba(124,124,125,1) 50%,rgba(102,102,104,1) 51%,rgba(75,75,77,1) 100%); /* Opera 11.10+ */
   background: -ms-linear-gradient(top, rgba(176,177,178,1) 0%,rgba(124,124,125,1) 50%,rgba(102,102,104,1) 51%,rgba(75,75,77,1) 100%); /* IE10+ */
   background: linear-gradient(top, rgba(176,177,178,1) 0%,rgba(124,124,125,1) 50%,rgba(102,102,104,1) 51%,rgba(75,75,77,1) 100%); /* W3C */
   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0b1b2', endColorstr='#4b4b4d',GradientType=0 ); /* IE6-9 */
}

.FmTitleBarDivMain .Container
{
   width: 100%;
   height: 100%;
   border-spacing: 0px;
   position: relative;
}

.FmTitleBarDivMain .Container .Logo 
{
   position: absolute;
   margin-left: auto;
   margin-right: auto;
   text-align: center;
   vertical-align: middle;
   left: 0;
   right: 0;
   margin: auto;
   top: 0;
   bottom: 0;
}

.FmTitleBarDivMain .Container .Logo > div {
   top: 45%;
}

.FmTitleBarDivMain .Container > div
{
   display: inline-block;
}

.FmTitleBarDivMain .Container .Info
{
   width: 70px;
   padding: 0px;
   position: relative;
}

.FmTitleBarDivMain .Container .Text {
   font-family: "Century Gothic", Futura, Arial, sans-serif;
   text-align: right;
   padding: 0px 15px;
   color: white;
   white-space: nowrap;
}

.FmTitleBarDivMain .Container .Text > div
{
   position: relative;
}

.FmTitleBarDivMain .Container .User .Caption
{
   font-size: 12px;
}

.FmTitleBarDivMain .Container .User .Value
{
   font-size: 15px;
}

.FmTitleBarDivMain .Container .Tenant 
{
   font-size: 20px;
}

.FmTitleBarDivMain .Container .User,
.FmTitleBarDivMain .Container .Language,
.FmTitleBarDivMain .Container .Logout,
.FmTitleBarDivMain .Container .Settings,
.FmTitleBarDivMain .Container .Tenant
{
   float: right;
   position: relative;
   height: 100%;
}

.FmTitleBarDivMain .Container .Language,
.FmTitleBarDivMain .Container .Logout,
.FmTitleBarDivMain .Container .Settings,
.FmTitleBarDivMain .Container .Tenant {
   border-left: 1px solid rgba(255, 255, 255, 0.3);   
}

.FmTitleBarDivMain .Container.Login .Tenant {
   border: none;
}

.FmTitleBarDivMain .Container .Language,
.FmTitleBarDivMain .Container .Logout,
.FmTitleBarDivMain .Container .Settings
{
   width: 63px;
   padding: 0px;
}

.FmTitleBarDivMain .Container > div > div {
   margin: 0;
   position: absolute;             
   top: 50%;                
   left: 50%;       
   transform: translate(-50%, -50%);   
   -ms-transform: translate(-50%, -50%);
}

.FmTitleBarDivMain .Container .Language .RadComboBox
{
   width: 36px !important;
}

.FmTitleBarDivMain .Container .Language  .RadComboBox .rcbReadOnly .rcbArrowCellHidden
{
   visibility: hidden;
}

#FmTitleBarComboLanguageFlag_Input:hover
{
   cursor: pointer;
}

#FmTitleBarComboLanguageFlag_DropDown
{
   width: 45px !important;
}


.FmTitleBarDivHelpFrame
{
   position: fixed;
   left: 0px;
   top: 0px;
   width: 100%;
   height: 100%;
   z-index: 1000;
   background: black none repeat scroll 0 0;
   opacity: 0.5;
}

.FmTitleBarDivHelp
{
   color: black;
   position: fixed;
   left: 10%;
   top: 10%;
   width: 80%;
   height: 80%;
   z-index: 1001;
   padding: 10px;
   background: white;
   border-radius: 10px;
   box-shadow: rgba(0,0,0,0.3) 5px 5px 8px;
}

.FmTitleBarDivHelpContent
{
   position: absolute;
   overflow: auto;  /* enable scrolling */
   margin: 2% 2% 2% 2%;
   width: 96%;
   height: 94%;
   z-index: 1002;
}

.FmTitleBarDivHelpButtonClose
{
   position: absolute;
   right: 5px;
   top: 0px;
   width: 50px;
   height: 21px;
   z-index: 1003;
   background-image: url('../img/General/InfoWindow_ButtonClose.png');
}

.FmTitleBarDivHelpButtonClose:hover
{
   background-image: url('../img/General/InfoWindow_ButtonClose_Rollover.png');
}


/* skin specific styles */

.FmTitleBarDivMain_Metro
{ 
   margin: 0px 8px 0px 8px;
   border-radius: 0px 0px 0px 0px;
   box-shadow: rgba(0,0,0,0.3) 0px 0px 0px;
}

.FmTitleBarDivMain_Forest
{ 
   background: rgb(156,177,158); /* Old browsers */
   background: -moz-linear-gradient(top, rgba(156,177,158,1) 0%, rgba(104,124,105,1) 50%, rgba(82,102,84,1) 51%, rgba(55,75,57,1) 100%); /* FF3.6+ */
   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(156,177,158,1)), color-stop(50%,rgba(104,124,105,1)), color-stop(51%,rgba(82,102,84,1)), color-stop(100%,rgba(55,75,57,1))); /* Chrome,Safari4+ */
   background: -webkit-linear-gradient(top, rgba(156,177,158,1) 0%,rgba(104,124,105,1) 50%,rgba(82,102,84,1) 51%,rgba(55,75,57,1) 100%); /* Chrome10+,Safari5.1+ */
   background: -o-linear-gradient(top, rgba(156,177,158,1) 0%,rgba(104,124,105,1) 50%,rgba(82,102,84,1) 51%,rgba(55,75,57,1) 100%); /* Opera 11.10+ */
   background: -ms-linear-gradient(top, rgba(156,177,158,1) 0%,rgba(104,124,105,1) 50%,rgba(82,102,84,1) 51%,rgba(55,75,57,1) 100%); /* IE10+ */
   background: linear-gradient(top, rgba(156,177,158,1) 0%,rgba(104,124,105,1) 50%,rgba(82,102,84,1) 51%,rgba(55,75,57,1) 100%); /* W3C */
   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0b1b2', endColorstr='#4b4b4d',GradientType=0 ); /* IE6-9 */
}

.FmTitleBarDivMain_Sunset
{ 
   background: rgb(176,177,158); /* Old browsers */
   background: -moz-linear-gradient(top, rgba(176,177,158,1) 0%, rgba(124,124,105,1) 50%, rgba(102,102,84,1) 51%, rgba(75,75,57,1) 100%); /* FF3.6+ */
   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(176,177,158,1)), color-stop(50%,rgba(124,124,105,1)), color-stop(51%,rgba(102,102,84,1)), color-stop(100%,rgba(75,75,57,1))); /* Chrome,Safari4+ */
   background: -webkit-linear-gradient(top, rgba(176,177,158,1) 0%,rgba(124,124,105,1) 50%,rgba(102,102,84,1) 51%,rgba(75,75,57,1) 100%); /* Chrome10+,Safari5.1+ */
   background: -o-linear-gradient(top, rgba(176,177,158,1) 0%,rgba(124,124,105,1) 50%,rgba(102,102,84,1) 51%,rgba(75,75,57,1) 100%); /* Opera 11.10+ */
   background: -ms-linear-gradient(top, rgba(176,177,158,1) 0%,rgba(124,124,105,1) 50%,rgba(102,102,84,1) 51%,rgba(75,75,57,1) 100%); /* IE10+ */
   background: linear-gradient(top, rgba(176,177,158,1) 0%,rgba(124,124,105,1) 50%,rgba(102,102,84,1) 51%,rgba(75,75,57,1) 100%); /* W3C */
   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0b1b2', endColorstr='#4b4b4d',GradientType=0 ); /* IE6-9 */
}

.FmTitleBarDivMain_Black
{ 
   background: rgb(176,177,178); /* Old browsers */
   background: -moz-linear-gradient(top, rgba(126,127,128,1) 0%, rgba(74,74,75,1) 50%, rgba(52,52,54,1) 51%, rgba(25,25,27,1) 100%); /* FF3.6+ */
   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(126,127,128,1)), color-stop(50%,rgba(74,74,75,1)), color-stop(51%,rgba(52,52,54,1)), color-stop(100%,rgba(25,25,27,1))); /* Chrome,Safari4+ */
   background: -webkit-linear-gradient(top, rgba(126,127,128,1) 0%,rgba(74,74,75,1) 50%,rgba(52,52,54,1) 51%,rgba(25,25,27,1) 100%); /* Chrome10+,Safari5.1+ */
   background: -o-linear-gradient(top, rgba(126,127,128,1) 0%,rgba(74,74,75,1) 50%,rgba(52,52,54,1) 51%,rgba(25,25,27,1) 100%); /* Opera 11.10+ */
   background: -ms-linear-gradient(top, rgba(126,127,128,1) 0%,rgba(74,74,75,1) 50%,rgba(52,52,54,1) 51%,rgba(25,25,27,1) 100%); /* IE10+ */
   background: linear-gradient(top, rgba(126,127,128,1) 0%,rgba(74,74,75,1) 50%,rgba(52,52,54,1) 51%,rgba(25,25,27,1) 100%); /* W3C */
   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0b1b2', endColorstr='#4b4b4d',GradientType=0 ); /* IE6-9 */
}

.FmTitleBarDivLanguageFlag_Windows7 .RadComboBox
{
   width: 38px !important;
}

.FmTitleBarDivLanguageFlag_Metro .RadComboBox
{
   width: 41px !important;
}

.FmTitleBarDivHelp_Metro
{
   border-radius: 0px;
   box-shadow: rgba(0,0,0,0.3) 0px 0px 0px;
}

div.RadComboBox_Metro td.rcbArrowCellHidden.rcbArrowCellRight
{
   border-width: 0 0 0 0;
}

.RadComboBox.FmTitleBarComboLanguageFlag td.rcbInputCellLeft
{
  padding: 0 2px 0 2px;
}
