﻿/**********************************************************************
 * Styles.css                                                         *
 *                                                                    *
 * This file is initially empty and you can add any additional styles *
 * or modify any of the styles defined in BaseStyles.css              *
 * This file will never be overwritten.                               *
 *                                                                    *
 * For example, if you want to override just the top padding for a    *
 * menu, you can simply add the following lines:                      *
 *                                                                    *
 * .menus {                                                           *
 * 	padding-top: 20px;                                            *
 * 	}                                                             *
 *                                                                    *
 * This will keep all the other styles of the "menus" style as-is,    *
 * but modify the top padding to be 20px.                             *
 *                                                                    *
 * You can also, add a new style by just specifying it.               *
 *                                                                    *
 * .menus {                                                           *
 * 	padding-top: 20px;                                            *
 * 	text-align: center;                                           *
 * 	}                                                             *
 * 	                                                              *
 * In the above case, we added the text-align style.  This style was  *
 * not specified in the original declaration of the menus style.      *
 *                                                                    *
 **********************************************************************/
 .dialog_header, .dh { /* panel header container */
	/*background-color: #cfd5e7;*/
	background-color: #ffffff;
	border-top: 1px #aaaaaa solid;
	border-right: 1px #aaaaaa solid;
	border-bottom: 1px #aaaaaa solid;
	border-left: 1px #aaaaaa solid;
	height: 20px;
	}

.dpTable { /* panel header */
	/*background-color: #cfd5e7;*/
	background-color: #ffffff;
	}	
	
.field_label_on_side, .fls { /* field lable on side */
	color: #666666;
	font-family: Verdana, Geneva, ms sans serif;
	font-size: 10px;
	font-weight: bold;
	padding: 0px 3px 0px 3px;
	text-align: right;
	vertical-align: middle;
	white-space: nowrap;	
	}	
.dialog_field_value, .dfv { /* panel field value text */
	color: #888888;
	font-family: Verdana, Geneva, ms sans serif;
	font-size: 10px;
	padding: 0px 3px 0px 3px;
	}	
.flsQuestion { /* special field lable on side */
	color: #666666;
	font-family: Verdana, Geneva, ms sans serif;
	font-size: 10px;
	font-weight: bold;
	padding: 0px 3px 0px 3px;
	text-align: center;
	vertical-align: middle;
	white-space: wrap;	
	}	
