/*
 ******************************************************************************
 * STYLESHEET: MESSAGE BOX CSS FILE
 * Author: Tim Summers, tsummers@diversifiedcomputer.net
 * Copyright 2005 Diversified Coputer Solutions, Inc. All Rights Reserved.
 *
 * This code is the property of Diversified Computer Solutions, Inc. and may
 * not be duplicated or modified for any reason without express written 
 * permission from Tim Summers.
 *
 * DESCRIPTION:
 * The msgbox.css file is the primary style sheet used to provide the basic
 * look and feel for a variety of messagebox components.
 *
 ******************************************************************************
 * REVISION HISTORY:
 *
 ******************************************************************************
*/

/* TITLE BAR RELATED ELEMENTS
******************************************************************************/
.title_bar_standard {                         /* bold title bar heading text */
	background: #30569d;
	border-bottom: 1px solid #203a68;
	border-top: 5px solid #6a8fd1;
	color: #ffffff;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	margin: 2px;
	padding: 0px;
	text-align: center;
	text-transform: capitalize;
}

.title_bar_success {                         /* bold title bar heading text */
	background: #009900;
	border-bottom: 1px solid #006e01;
	border-top: 5px solid #00bf00;
	color: #ffffff;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	margin: 2px;
	padding: 0px;
	text-align: center;
	text-transform: capitalize;
}

.title_bar_error {                         /* bold title bar heading text */
	background: #ff0000;
	border-bottom: 1px solid #a60000;
	border-top: 5px solid #ff5959;
	color: #ffffff;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	margin: 2px;
	padding: 0px;
	text-align: center;
	text-transform: capitalize;
}

/* MESSAGE BODY RELATED ELEMENTS
******************************************************************************/
.msgbox_container {               /* main container for the msgbox title bar */
	background: #FFFFFF;
	border: 1px solid #959595;
	margin-left: 15px;
	width: 350px;
}

.msgbox_icon {
	float: left;
	height: 75px;
	margin-left: 2px;
	width: 75px;
}

.msgbox_text {
	color: #000000;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	font-size: 12px;
	/* font-style: italic; */
	font-weight: normal;
	/* padding-left: 15px; */
	width: 275px;
}

.msgbox_text_h1 {                 /* bold heading for custom main body text */
	color: #000000;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	/* margin-left: 10px; */
	/* text-transform: Capitalize; */
}

/* MESSAGE BODY (LARGE) RELATED ELEMENTS
******************************************************************************/
.msgbox_large_container {               /* main container for the msgbox title bar */
	background: #FFFFFF;
	border: 1px solid #959595;
	margin-left: 15px;
	width: 425px;
}

.msgbox_icon {
	float: left;
	height: 75px;
	margin-left: 2px;
	width: 50px;
}

.msgbox_large_field{
	color: #000000;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	padding-left: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	width: 175px;
}

.msgbox_large_result{
	color: #000000;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	padding-top: 5px;
	padding-bottom: 5px;
	width: 350px;
}

.msgbox_large_text_h1 {                 /* bold heading for custom main body text */
	color: #000000;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
}

.msgbox_large_bg1 {
	background-color: #FFFFFF;
}

.msgbox_large_bg2 {
	background-color: #EFEFEF;
}

/* BUTTON BAR RELATED ELEMENTS
******************************************************************************/
.button_bar_container {                            /* formatting for buttons */
	background: #ffffff;
	clear: both;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 10px;
	text-align: center;
}

a.button1:link, a.button1:visited {
	background-color: #e9eaee;
	border-top: 1px solid #f5f5f8;
	border-left: 1px solid #f5f5f8;
	border-right: 1px solid #cad1d9;
	border-bottom: 1px solid #cad1d9;
	margin-bottom: 5px;
	margin-left: 3px;
	margin-right: 3px;
	margin-top: 5px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 0px;
	text-transform: Capitalize;
}

a.button1:hover {
	background-color: #ced7ee;
	border-top: 1px solid #f5f5f8;
	border-left: 1px solid #f5f5f8;
	border-right: 1px solid #cad1d9;
	border-bottom: 1px solid #cad1d9;
	margin-bottom: 5px;
	margin-left: 3px;
	margin-right: 3px;
	margin-top: 5px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 0px;
	text-transform: Capitalize;
}