/*
/////////////////////////////////////////////////////////////////
//
// Web Beget Framework & Application under
// Copyright © 2009 Robb Garrioch, robb@datamenus.com
// All rights reserved
//
/////////////////////////////////////////////////////////////////
*/

.inp {
    font-family:arial;
    font-size:1em;
    background-color: #ffe;
    border:1px solid #555;   /* was #555 */
}

* html .inp {
    border:1px solid #7f9db9;
}

.inp_alert {
    font-family:arial;
    font-size:1em;

    background-color: yellow;
    background-image: url(../images1/alert_icon.jpg);
    background-position: center right;
    background-repeat:no-repeat;
    border:1px solid #555;   /* was #555 */
}





/*
For many years now IE has not allowed CSS developers to set the 
border color of the <SELECT> element. IE always uses an off blue
color #7f9db9, so setting the other element borders to this 
color standardizes the look for IE viewers. Browsers such as 
Firefox allow us to set the CSS border color property of select.
The CSS below sets those non-select element borders to match IE's
select border.
*/

* html .inp_alert {
    border:1px solid #7f9db9;
}

.sel  {
    font-family:arial;
   /* font-size:0.8em;*/

    background-color: #ffe;
    border:1px solid #555;
    /* width:250px; */
}

/* Fix: this stops the cut-off of the bottom of the select drop-down in Firefox and maybe others */
option {
    font-size:1.1em;
}
/* Fix: if a required field, option takes on 1.1em value so set specifically for alerted select tags */
option .sel_alert {
    font-size:0.9em;
}

.sel_alert {
    font-family:arial;
    font-size:0.8em;
    background-color: yellow;
    border:1px solid #555;
    /* width:250px; */
}

.selimg_alert {
    background-image: url(../images1/alert_icon.jpg);
    background-repeat: no-repeat;
    width:18px;
    height:18px;
}


.rad {
    font-family:arial;
    font-size:1em;
}


.radimg_alert {
    background-image: url(../images1/alert_icon.jpg);
    background-repeat: no-repeat;
    background-position: top center;

}




