/****************************************************/
/*CRM Customized Simulation Control Styles*/
/****************************************************/
body.crm_custom {
    /*
    IE/win will act a bit sluggish when long pages are scrolled with such a “fixed” element in place. 
    Luckily, that sluggishness can be overcome by applying the only 'position: fixed' 
    IE/win understands – a background on body.  If no fixed background is wanted/needed, a link to a 
    non-existing file with 'background-attachment: fixed' will work as well
    */
    background:  #CEDFFF url(foo) fixed;
    margin: 0px;
    padding: 0px;
}

.crm_punchlist_wrapper
{
    width: 100%;
}

/*REQUIRED Wrapper to preserve Box Model*/
.crm_toolbar_wrapper {
    width: 100%;

    /*
    To fix/freeze an element to top of viewport Two basic ingredients are needed 
    for 'fixing' an element nicely to the viewport: an IE-expression and a speed fix.
    */
    position: absolute;
    top: expression(eval(document.compatMode && document.compatMode=='CSS1Compat') ? documentElement.scrollTop : document.body.scrollTop);
}

.crm_toolbar {
    /* Remaining Styling for Toolbar*/
    background: #A5CFF7 url('Images/crm_toolbar_background.gif') repeat-x;
    /*Can set the border here and Box Model width is correctly
      preserved at 100% because of wrapper panel (ie. Border does 
      push out the Box because the wrapper div has no border, padding, 
      or margin and is 100%*/
    border: 0px none transparent;
    border-bottom: 1px solid #639ACE;
    /*Exact Pixel Height of Other CRM Toolbars from Advanced Find View, etc.*/
    height: 24px;
    overflow: hidden;
}

.crm_toolbar_item {
    margin: 2px 0px 0px 15px;    
}

.crm_toolbar_link,
.crm_toolbar_text {
    font-family: arial;
    font-size: 11px;
    font-weight: bold;
    color: #10418C;
    text-decoration: none;
    cursor: pointer;
}

.crm_toolbar_text {
    font-weight: normal;
    /*color: #7491AD;*/
    /*color: #446089;*/
    cursor: auto;
}

.crm_toolbar_link:hover {
    text-decoration: underline;
}


