/*------------------------------------------------------------------
Supports the TextBox controls and MultiSegmentDataEntry control.

NOTE: By default, DES compresses this file to remove comments.
You can also have it remove most whitespace or omit compression with this key
in the <appSettings> section of web.config:
<add key="DES_StyleSheetCompression" value="none|full" />

An easy way to determine what to change is to run the page. 
Browsers include some powerful development tools. FireFox offers FireBug.
Internet Explorer 9+, Safari, Chrome, and Opera all have similar tools.
Use them to point to an HTML element. They reveal all styles applied
and tell you which style sheet file supplied the class.
However, DES normally combines those style sheets into a single file 
called "GetFiles.axd". It helps to show the actual style sheet files.
So add this key in the <appSettings> section of web.config before
working in the developer tools.
<add key="DES_StyleSheetCompression" value="Separate" />
-------------------------------------------------------------------*/

/* Property: MultiSegmentDataEntry.CssClass
Overall appearance. Not predefined but suggested. By default, it gives a border to make it
look like a textbox. */
.DESTBMultiSegContainer
{
   border-left: #d3d3d3 thin inset; /* lightgrey */
   border-top: #d3d3d3 thin inset;
   border-right: #d3d3d3 thin inset;
   border-bottom: #d3d3d3 thin inset;
   padding-left: 2px;
   padding-top: 2px;
   padding-right: 2px;
   padding-bottom: 2px;
}

/* Property: not predefined but suggested
for each textbox segment in the MultiSegmentDataEntry.
Reduces the visual impact of the individual TextBox borders
so the control looks like a single textbox. */
.DESTBMultiSegTextBox
{
   border-left: #f5f5f5 thin solid;  /* whitesmoke */
   border-top: #f5f5f5 thin solid;
   border-right: #f5f5f5 thin solid;
   border-bottom: #f5f5f5 thin solid;
}

/* Property: not predefined.
For each dropdownlist segment in the MultiSegmentDataEntry.
*/
.DESTBMultiSegDropDownList
{
}