/* ---------Colors---------- */
.yellow 
{
	color: #FFCC00;
}

.red
{
	color: #990000;
}

.error
{
	color: #FF0000;
}

.white
{
	color: #FFFFFF;
}

.black
{
	color: #000000;
}

.green
{
	color: #00FF00;
}
/* ---------Colors---------- */

/* ---------Formats--------- */
.center
{
	text-align: center;
}

.right
{
	text-align: right;
}
/* ---------Formats--------- */

/* ----------Links---------- */
a.small
{
	font-family: arial;
	font-size: 8pt;
}

a.smallbold
{
	font-family: arial;
	font-size: 8pt;
	font-weight: bold;
}

a.reg
{
	font-family: arial;
	font-size: 10pt;
}

a.big
{
	font-family: arial;
	font-size: 12pt;
	font-weight: bold;
}

a.user
{
	font-family: "Monotype Corsiva";
	font-size: 12pt;
}

.counts
{
	font-family: "Monotype Corsiva";
	font-size: 12pt;
	color: #352020;
}

.nonlink
{
	font-family: arial;
	font-size: 8pt;
}
/* ----------Links---------- */

/* ---------Headers--------- */
.titleh
{
	font-family: "Monotype Corsiva";
	font-size: 50pt;
	font-weight: normal;
	font-style: italic;
}

.smallh
{
	font-family: "Monotype Corsiva";
	font-size: 14pt;
	font-weight: normal;
}

.regh
{
	font-family: "Monotype Corsiva";
	font-size: 25pt;
	font-weight: normal;
	text-align: center;
	font-style: italic;
}

.smallth
{
	text-align: center;
	font-family: arial;
	font-size: 9pt;
	font-weight: bold;
	color: #FFFFFF;
}
/* ---------Headers--------- */

/* ----------Text----------- */
.longpara
{
	font-family: arial;
	font-size: 12pt;
	font-weight: normal;
}

.boldpara
{
	font-family: arial;
	font-size: 12pt;
	font-weight: bold;
}

.smallpara
{
	font-family: arial;
	font-size: 10pt;
	font-weight: normal;
}
/* ----------Text----------- */

/* ---------Tables---------- */
table.admin
{
	padding: 4px;
}

td.adminh
{
	padding: 4px;
	font-family: arial;
	text-align: center;
	font-size:8pt;
	background-color: #FFCC00;
}

td.adminr
{
	padding: 4px;
	font-family: arial;
	font-size:8pt;
}

td.smallh
{
	font-weight: bold;
	padding: 4px;
	font-family: arial;
	text-align: center;
	font-size:8pt;
	background-color: #FFCC00;
}

td.smallr
{
	padding: 4px;
	font-family: arial;
	font-size:8pt;
}

td.bigh
{
	font-weight: bold;
	padding: 4px;
	font-family: arial;
	text-align: center;
	font-size:12pt;
	background-color: #FFCC00;
}

td.bigr
{
	padding: 4px;
	font-family: arial;
	font-size:12pt;
}

tr.line
{
	height: 2px;
	background-color: #FFCC00;
}

tr.light
{
	background-color: #880000;
}

tr.dark
{
	background-color: #770000;
}
/* ---------Tables---------- */

/* -----MODAL------- */
#modal{
	background-color:#000000;
	position:fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* Theoretically for IE 8 & 9 (more valid) */
    /* ...but not required as filter works too */
    /* should come BEFORE filter */
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";

    /* This works in IE 8 & 9 too */
    /* ... but also 5, 6, 7 */
    filter: alpha(opacity=75);

    /* Older than Firefox 0.9 */
    -moz-opacity:0.75;

    /* Safari 1.x (pre WebKit!) */
    -khtml-opacity: 0.75;

    /* Modern!
    /* Firefox 0.9+, Safari 2?, Chrome any?
    /* Opera 9+, IE 9+ */
    opacity: 0.75;
}

#content {
	padding:10px;
	background-color: #FFFFFF;
	position:fixed;
	top:42%;
	left:40%;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
	text-align: center;
	width:300px;
}

#content th {
	text-align:center;
	color:#2289F6;
	font: 9px arial;
}

#content td {
	text-align:center;
	color:#222222;
	font: 40px arial;
}


