﻿/*
    Tag overrides
*/
*
{
    /* Set no margins and padding for all elements */
    padding: 0px 0px 0px 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
}

body
{
    height: 111px;
}

table
{
    width: 100%;
    border: none;
}

a:link, a:visited
{
    color: White;
    text-decoration: none;
}

a:hover
{
    color: White;
    text-decoration: underline;
}

ul
{
    list-style: disc outside none; 
    margin-left: 0; 
    padding-left: 2.5em
}

/*
    Backgrounds
*/
.BlackBack 
{ 
    background-color: Black;
}


.GreyBack
{
   background-color: #D7D7D7;
}

.BlueBack
{
    background-color: #7AA0E6;
}

.GradientBack
{
    background: rgb(88, 88, 88) url(images/background.png) repeat-x fixed;
}

.ContentPage
{
    margin: 8px 8px 8px 16px;
}


/*
    Fonts
*/
.SmallFontBlack 
{ 
    font-family: Arial, Verdana, Helvetica, sans-serif; 
    font-size: 10px; 
    color: black 
}

.SmallFontWhite 
{ 
  font-family: Arial, Verdana, Helvetica, sans-serif; 
  font-size: 10px;
  color: white 
}

.NormalFontBlack 
{ 
    font-family: Arial, Helvetica, sans-serif; 
    font-size: small; 
    color: black;
    width: 583px;
}

.NormalFontWhite 
{ 
    font-family: Arial, Verdana, Helvetica, sans-serif; 
    font-size: 12px;
    color: white 
}

.LargeFontBlack 
{ 
    font-family: Arial, Verdana, Helvetica, sans-serif; 
    font-size: 18px; 
    color: black 
}

.LargeFontWhite 
{ 
    font-family: Arial, Verdana, Helvetica, sans-serif; 
    font-size: 18px;
    color: white 
}

.LargestFontBlack
{
    font-family: Arial, Verdana, Helvetica, Sans-Serif;
    font-size: 28px;
    color: Black;
    height: 40px;
}

.LargestFontWhite
{
    font-family: Arial, Verdana, Helvetica, Sans-Serif;
    font-size: 28px;
    color: White;
}


/*
  Font-Color
*/

.BlueFont
{
    color: #1E3A77;
}

/*
    Styles affecting the gradient background
    Note: These styles will be picked up by any element with an 'id' attribute
          set to these names.
*/
#divGradient
{
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
}

#divContent
{
    position: relative;
    z-index: 1;
    top: 9px;
    left: -10px;
    height: 454px;
    width: 787px;
}


/*
    Miscellaneous styles
*/
.CompanyTitle
{
    /* Used by the Yartoo Software title in the header page */
    font-weight: bold;
    vertical-align: middle;
    padding-left: 4px;
}

.PageTitle
{
    /* Used by all content pages to uniformly style their heading */
    font-weight: bold;
    text-decoration: underline;
    font-size: 14px;
}

.LinkActive
{
    /* Used by any element needing to behave like a link element */
    cursor: pointer;
    text-decoration: underline;
}

.LinkInactive
{
    /* Used by any element needing to behave like a link element */
    cursor: default;
    text-decoration: none;
}


/*
    Menu styles
*/
.MenuRow
{
    /* General formatting applied to the row of menu items in the header frame */
    background-color: #7AA1E6;
    font-weight: bold;
    vertical-align: middle;
}

.MenuNormal
{
    /* The default appearance of a menu item in the header frame */
    background-color: #7AA1E6;
    color: White;

}

.MenuHighlight
{
    /* The appearance of a menu item when the mouse is hovering over it */
    background-color: White ;
    color: #1E3A77;
    cursor: pointer;
    
}

.MenuSelected
{
    /* The appearance of a menu item when it is the current selection */
    background-color: Gray;
    color: #1E3A77;

}

.MenuImage
{
    /* Styles used by images in the menu and submenu items */
    border: none;
    vertical-align: middle;
    height: 24px;
    width: 24px;
}

.SubMenuHeaderRow
{
    /* General formatting applied to the header row of submenu items */
    /*background-color: #7AA1E6;*/
   vertical-align: middle;
}

.SubMenuHeaderCell
{
    /* The default appearance of the header row of submenu items */
    font-weight: bold;
    padding-left: 4px;
}

.SubMenuItemRow
{
    /* General formatting applied to the submenu items */
    text-align: center;
    vertical-align: middle;
}

.SubMenuNormal
{
    /* The default appearance of a submenu item */

}

.SubMenuHighlight
{
    /* The appearance of a submenu item when the mouse is hovering over it */
    background-color: Silver;
    cursor: pointer;
    font-weight: bold;

}


/*
    Popup window styles
*/
.PopupWindow
{
    /* The appearance of the popup window, including positioning */
    border: solid 1px White;
    display: none;
    position: absolute;
    z-index: 60;
    background: White;
    left: 50%;
    top: 50%;
    width: 500px;
    height: 400px;
    margin-left: -250px;
    margin-top: -200px;
}

.PopupWindow iframe
{
    /* The appearance of the content area within the popup window */
    width: 100%; 
    height: 360px;
}

.PopupTitle 
{
    /* The appearance of the title area within the popup window */
    position: relative;
    font-weight: bold;
    height: 8px;
    padding: 5px;
    top: -6px;
    left: 74px;
    width: 222px;
}

.PopupTitle input
{
    /* The positioning of the Close button within the title area */
    position: absolute;
    right: 4px;
}

