/*---------------------------------------------------------------------------
 * BibleFootnotes Core CSS
 *---------------------------------------------------------------------------*/

html, body {
	height: 100%;
} 
 
body {
	margin: 0px;
	padding: 0px;
}

/* remove dotted border from firefox! */
a:active { outline: none; }
a:focus  { -moz-outline-style: none; }

button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  padding: 0px 2px 0px 2px;
  border: 1px dotted transparent;
}


div.BorderedDiv {
	padding: 5px 10px 5px 10px;
	border: 1px solid #666666;
}

div.FormDiv {
	background-color: white;
}

.ErrorMessage {
	font-weight: bold;
	color: red;
}





/* Message Boxes
 *---------------------------------------------------------------------------*/

div.MessageBox {
	margin: 20px 0px 20px 0px;
	padding: 0px;
	border: 1px solid #666666;
	background-color: white;
}

div.MessageBox h1.Title {
	margin: 0px;
	padding: 2px 4px 2px 4px;
	border-bottom: 1px solid #666666;
	background-color: #CCCCCC;

	font-size: 12px;
	text-transform: uppercase;
	line-height: 16px;
}

div.MessageBox p.Message {
	margin: 5px 8px 5px 8px !important;
	padding: 5px 0px 5px 0px !important;
	text-align: justify !important;
}

div.WarningMessageBox h1.Title {
	background-color: #CCCCCC;
	background-image: url('BFImages/WarningIcon.png');
	background-position: 4px center;
	background-repeat: no-repeat;
	text-indent: 24px;
}

div.ErrorMessageBox h1.Title {
	background-color: #FF9999;
	background-image: url('BFImages/ErrorIcon.png');
	background-position: 4px center;
	background-repeat: no-repeat;
	
	text-indent: 24px;
}

div.ErrorMessageBox p.Message {
	font-weight: bold;
}

div.InfoMessageBox h1.Title {
	background-color: #99CCFF;
	background-image: url('BFImages/InfoIcon.png');
	background-position: 4px center;
	background-repeat: no-repeat;
	text-indent: 24px;
}


/* Notice Boxes
 *---------------------------------------------------------------------------*/

div.NoticeBox {
	margin: 0px;
	padding: 2px 5px 2px 36px;
	border: 1px solid #0F4C51;
}

div.NoticeBox p {
	margin: 0px !important;
	padding: 0px !important;
	border: 0px !important;
}

div.ThankYouNoticeBox {
	background-color: #D1DBDF;
	background-image: url('BFImages/CheckIcon.png');
	background-position: 10px center;
	background-repeat: no-repeat;

	font-size: 12px;
	font-weight: bold;
}

div.InfoNoticeBox {
	background-color: #D1DBDF;
	background-image: url('BFImages/InfoIcon.png');
	background-position: 10px center;
	background-repeat: no-repeat;

	font-size: 12px;
	font-weight: bold;
}


/* Close Window Button
 *---------------------------------------------------------------------------*/

input.CloseWindowButton {
	margin: 0px 5px 0px 0px;
	padding: 1px 5px 1px 5px;

	border: 1px solid #000066;
    background-color: #EEEEFF;
	background-position: 4px center;
	background-repeat: no-repeat;
	
	font-family: Arial, sans-serif;
	font-size: 14px;
	font-weight: bold;
	text-align: right;		/* hack for IE */
	text-indent: 20px;
}

input.CloseWindowButton {
	width: 135px;
	background-image: url('BFImages/CheckIcon.png');
}

input.CloseWindowButton:focus,
input.CloseWindowButton:hover {
	background-color: #CCFFCC;
}





