/* style.css */

/* Background Colour */
@import url("bgc.css");

/* Standard Settings */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF; /* General Text Colour */
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	/*background-color:#666666; Background Colour */
}
a:link, a:visited, a:active {
	color: #999999;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	color: #FFFFFF;
}

/* Class settings */
.red {
	color:#FF0000;
}
.siteTitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 36px;
	color: #FFFFFF;
}

.notetitle {
	color: #000000;
	font-size:14px;
	font-weight:bold;
	text-decoration: none;
}
.notetitle a:link, .notetitle a:visited, .notetitle a:active {
	color: #000000;
	text-decoration: none;
}
.notetitle a:hover {
	text-decoration: underline;
	color:#333333;
}

.noteadmin {
	font-weight:normal;
	text-decoration: none;
}


.main {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}


.links a:link, .links a:visited, .links a:active {
	color: #FFFFFF;
	text-decoration: none;
}
.links a:hover {
	text-decoration: underline;
	color:#999999;
}

/* Footer stuff */
.footer {
	font-size: x-small;
	text-align: center;
	color:#FFFFFF;
}
.footer a:link, .footer a:visited, .footer a:active {
	color: #FFFFFF;
	text-decoration: none;
}
.footer a:hover {
	text-decoration: underline;
	color: #999999;
}

/* Input style */
input,
textarea,
select {
  padding: 2px;
  font: 400 1em verdana, sans-serif;
  color: #444;
  background: #EEE;
  border: 1px solid #444;
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
select:focus,
select:hover {
  color: #000;
  background: #E4F7FA;
  border: 1px solid  #000099;
}

input.button {
  padding: 2px 5px;

  font: 400 1.1em "trebuchet ms", serif;

  color: #555;
  background: #9FF3FF;
  border-width: 1px;
  border-style: solid;
  border-color: #FFF #00DFFF #00DFFF #FFF;
}


/* Tabs Stuff */
.tabs a:link, .tabs a:visited, .tabs a:active {
	color: #000000;
	text-decoration: none;
}
.tabs a:hover {
	text-decoration: underline;
	color:#999999;
}


/* When you are reading a note */
.read {
	color: #000000;
}
.read a:link, .read a:visited, .read a:active {
	font-weight:bold;
	color: #000000;
	text-decoration:underline;
}
.read a:hover {
	text-decoration: underline;
	color:#333333;
}