/************************************************************\
CSS For Dialog
\************************************************************/
.tt_dlgContainer {
    font-size: 12;
	height: 100px;
    position: fixed;
    border: 1px solid #9DBBD0;
    background-color: #fff;
}

.tt_dlgHeader {
    color:#fff;
	height: 20px;
    font-size:12;
    font-weight:bold;
    text-align: center;
    cursor: move;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    background-color:#9DBBD0;
}

.tt_dlgBody {
    text-align: center;
    padding: 10px 10px 10px 10px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    background-color: #fff;
}

.tt_dlgLoading {
    height: 50px;
    width: 50px;
    background-repeat: no-repeat;
	background-image: url(../img/spinner.gif);
	background-color: #fff ;
}

.tt_dlgFooter {
    height: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    background-color: #fff;
}

.tt_dlgButton  {
    height: 20px;
	width: 70px;
	padding: 2px;
	color: #333;
	cursor: pointer;
    font: 11px Tahoma;
    text-decoration: none;
    border: none;
    background-repeat: no-repeat;
	background-image:url(../img/dialog/button_normal.png);
}

.defaultButton {
	background-image:url(../img/dialog/button_over.png);
}

.tt_dlgButton:hover { 
	background-image:url(../img/dialog/button_over.png);
}

.tt_dlgButton:active { 
	background-image:url(../img/dialog/button_over.png);
}
.tt_dlgRow {
    height : 20px;
    margin-bottom: 10px;
}

.tt_dlgAreaRow {
    height: 50px;
    margin-bottom: 10px;
}

.tt_dlgLeft, .tt_dlgRight {
    float: left;
    text-align: left;
}

.tt_dlgLeft {
    width: 26%;
}

.tt_dlgRight {
    width: 74%;
}

.tt_dlgRight input, select, textarea {
    width: 90%;
}

.tt_dlgRight input[type="file"],
.tt_dlgRight input[type="radio"],
.tt_dlgRight input[type="checkbox"],
.tt_dlgRight input[type="submit"],
.tt_dlgRight input[type="button"] {
    width: auto;
}

#suggest {
	position: absolute;
	background: #FFF;
	border: 1px solid #3978B4;
	display: none;
}
