/**
 * CSS styles for forms generated by yiic.
 *
 * The styles can be applied to the following form structure:
 *
 * <div class="form">
 *     <div class="row">
 *         <label for="inputid">xyz</label>
 *         <input name="inputid" id="inputid" type="text" />
 *         <p class="hint">hint text</p>
 *     </div>
 *     <div class="row">
 *         <label for="inputid">xyz</label>
 *         <input name="inputid" id="inputid" type="text" />
 *         <p class="hint">hint text</p>
 *     </div>
 *     <div class="row buttons">
 *         <label for="inputid">xyz</label>
 *         <input name="inputid" id="inputid" type="text" />
 *         <p class="hint">hint text</p>
 *     </div>
 * </div>
 *
 * The above code will render the labels and input fields in separate lines.
 * In order to render them in the same line, please use the "wide" form as follows,
 *
 * <div class="wide form">
 *     ......
 * </div>
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @link http://www.yiiframework.com/
 * @copyright Copyright &copy; 2008-2010 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */


div.form fieldset
{
    background: none repeat scroll 0 0 #EBF3FD; /*#F2F2E6;*/
    /*border-color: #FFFFFF #666661 #666661 #FFFFFF;*/
    border: 1px solid #D5E3F5;
    margin-bottom: 36px;
    padding: 10px;
}
div.form fieldset legend {
    /*background: none repeat scroll 0 0 #F2F2E6;*/
    /*background: none repeat scroll 0 0 #9DA2A6;*/
    background: none repeat scroll 0 0 #B7D6E7;
    /*border-color: #E5E5C3 #505014 #505014 #E5E5C3;*/
    /*border-style: solid;*/
    /*border-width: 1px;*/
    color: #298DCD;
    font: bold 14px/18px Calibri,Arial,Helvetica,sans-serif;
    margin: -26px 0 0 -11px;
    padding: 0 10px;
}

