﻿/* MonogramsSearch.css */

/* html tag overrides */
table, div, p
{
	font-size:12px;
} 
form
{
	/* width:825px; - Don't need this
	text-align:left; 
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
    */
	clear:none;
}
input[type="text"] 
{   
    border-color:#dddddd;
	border-style:inset; 
	border-width:2px;
	font-size:13px;
    font-family:Arial; 
} 
 
/* Items ******************************************************/
.region_item
{
    font-family: Trebuchet MS;
    font-size: 12px;
    font-weight:normal;
    background-color:White;
    cursor:default;
}
.region_item:hover
{
    background-color:#CFCFC3;
    cursor:pointer;
} 
.region_item_disabled
{
    font-family: Trebuchet MS;
    font-size: 11px;
    font-weight:normal; 
    color:#9F9F93;
    background-color:White;
    cursor:default;
}


/* TOOL TIPS - ALSO IN MonogramsBooking.css **************************************************************
div.tool, span.tool, span.tool-click
{
    float: left;
    position: relative;
}
p.tip
{
    position: absolute;
    display: none;
    width: 200px;
    left: 30px;
    top: 1px;
    border: 3px solid #666;
    padding: 10px;
    background: #f9f9f9;
    color: #A32204;
    margin-bottom: 0;
}
div.tool:hover p, span.tool:hover p, p.tip:hover
{
    display: block;
}
*/
.tool, .tool-click
{
    float: left;
    position: relative;
}
.tip
{
    position: absolute;
    display: none;
    width: 200px;
    left: 30px;
    top: 1px;
    border: 3px solid #666;
    padding: 10px;
    background: #f9f9f9;
    color: #A32204;
    margin-bottom: 0;
}
div.tool:hover p, .tool:hover p, .tip:hover
{
    display: block;
}


/* cbx - ALSO IN MonogramsBooking.css ***************************************************************/
.cbx-input
{
    background: white url(/user/images/booking/checkbox-unchecked.gif) 2px 1px no-repeat;
    margin: 1px;
    padding: 2px 0 3px 21px;
    width: 100px;
    cursor: pointer;
    text-align: left;
}
.clicked
{
    background: white url(/user/images/booking/checkbox-checked.gif) 2px 1px no-repeat;
    font-weight: bold;
}
.disabled
{
    background: #CFCFC3 url(/user/images/booking/checkbox-unchecked.gif) 2px 1px no-repeat;
    cursor: default;
}