/*
	ANNE LEAVY - BEAUTICIAN
	
	admin.css
	Matthew O'Flynn
	
	22 July 2008
 */


#admin-login {
	padding: 5px 10px 5px 10px;
}

#admin-login table {
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
}

#admin-login .first-field {
	text-align: right;
	width: 45%;
}

#admin-menu {
	width: 726px;
	
	border: 1px solid #F00;
	min-height: 28px;
}

#admin-menu ul {
	width: 723px;
	list-style-type: none;
	margin: 0px;
	padding: 3px 0px 3px 0px;
	margin: 1px 0px 0px 0px;
}

#admin-menu li {
	display: inline;
}

#admin-menu a {
	text-decoration: none;

	font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
	font-weight: bold;
	padding: 2px 2px 2px 2px;
	margin-left: 3px;
	border: 1px solid #F99;
	float: left;
	
	background: #FDD;
	color: #F66;
}

#admin-menu a:hover {
	background: #FFF;
	color: #F00;
}

/* ADMIN DATABASE PAGE */
#admin-content {
	float: right;
	
	width: 730px;
	padding: 5px 10px 5px 10px;
	
	/* IE6 Fast min-height Hack
		Problem: 	IE Doesn't recognise min-height - so the left-border is rendered to whatever height the content ends up to be.
		Solution: 	Uses the fact that IE6 doesn't use !important in order to use height as the "min-height equivalent"
	 */
	height: auto !important;
	height: 150px;
	min-height: 150px;
	/* End Hack */
	
	color: #4C44FF;
	
	font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}

/* ADMIN TABLE (DATABASE DISPLAY) */
#admin-table {
	text-align: left;
	border: 1px solid #F88;
	width: 730px;
}

#admin-table th {
	background-color: #F88;
	color: #FFF;
	font-weight: bold;
}

#admin-table a {
	color: #6E66FF;
}

/* ADMIN FORM */
#admin-form {
	color: #6E66FF;
	padding: 5px 10px 5px 10px;
}

#admin-form b {
	color: #CC0047;
}

#admin-form table {
	width: 730px;
}

#admin-form .text-input {
	width: 400px;
}

#admin-form .submit {
	clear: both;
	margin: 10px 10px 10px 0px;
	padding: 2px 5px;
}

#admin-form textarea {
	width: 715px;
}

.notice {
	border: 1px solid #008;
	width: 650px;
	background: #FFF;
	text-align: center;
	padding: 10px 0px 10px 0px;
	margin: 5px 30px 5px 30px;
	float: left;
}