
.contentOuter
{
	width: 99%;
	margin: 0 auto;
	padding: 1em;
	text-align: center;
	background-color: #fff;
	position: relative;
}

/* Container of the main content area. */
#orderWrapper {
	width: 100%;
	margin: 0 auto;
	padding: 1em;
	text-align: center;
	float: left;
}
#orderWrapper2 {
	width: 100%;
	margin: 0 auto;
	padding: 1em;
	text-align: left;
    font-size: 0.85em;
}
#sideHolder {
	width:15%;
	float: right;
}

/* For the top caption of each page. */
#APSMeeting {
	padding-top:1.0em; 
	padding-bottom:0.5em;
	font-size: 1.5em;
	text-align: center;
}

#tblMeeting {
	margin: 1em auto;
	border-collapse: separate;
	width: 100%;
}
.tblStatus {
	margin: 1em auto;
	background-color: #fff;
	border-collapse: separate;
	border: thin solid #ddd;
	width: 100%;
}

table.tblStatus caption  {
	font-size: 1.2em;
	font-weight: bold;
	text-align: left;
	padding-top: 1em;
}

/* Defined header row color */
table.tblStatus thead {
	background-color: #666;
	text-align: center;
	color: #fff;
}


/* For status page */
#welcomeMsg {
	font-size:1.2em;
	font-weight: bold;
	padding-top: 1em;
	text-align: center;
}

#infoMsg {
	margin-top: 1em;
	text-align: left
}

/* End of status page */

/*** STYLE THE BUTTONS ***/
.button {
	cursor:pointer; /*forces the cursor to change to a hand when the button is hovered*/
	background:#35b128; /*the colour of the button*/
	border:1px solid #33842a; /*required or the default border for the browser will appear*/
	/*give the button curved corners, alter the size as required*/
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;
	/*style the text*/
	color:#f3f3f3;
	font-size:1em;
	font-weight: normal;
	text-decoration: none;
	padding:.3em .5em; /*add some padding to the inside of the button*/
	margin: 0 .2em;
}
/***NOW STYLE THE BUTTON'S HOVER AND FOCUS STATES***/
.button:hover, .button:focus {
	background-color :#399630; /*make the background a little darker*/
	/*reduce the drop shadow size to give a pushed button effect*/
	-webkit-box-shadow: 0 0 1px rgba(0,0,0, .75);
	-moz-box-shadow: 0 0 1px rgba(0,0,0, .75);
	box-shadow: 0 0 1px rgba(0,0,0, .75);
}
a.button:link, a.button:visited, a.button:hover, a.button:active {
	color:#f3f3f3;
	text-decoration: none;
}

input[type="text"].error, input[type="password"].error, textarea.error, select.error { 
 	border: 1px solid #b94a48!important; 
	background-color: #fee!important; 
	margin-left:0;
}
input[type="text"].error:focus, input[type="password"].error:focus, textarea.error, select.error:focus { 
 	border: 1px solid red!important; 
}

input[type="text"], input[type="password"], select, textarea { 
	background-color: #FFC; 
}
input[type="text"]:focus, input[type="password"]:focus, select:focus, textarea:focus { 
	background-color: #FF9; 
}

/* Error message. */
.errMsg {
	color: red;
	font-size:14px;
	clear: both;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}
.error {
	color: red;
	margin-left: 0.5em;
}

/* Reqired */
.required {
	font-size: 1em;
	font-weight: normal;
	color: red;
}

.hide { display: none; }

td.even 
{	
	background-color: #f5f5f5; 
	padding: 0.5em;
	font-size: 1em;
}
td.odd 
{ 
	background-color: #e0e0e0; 
	padding: 0.5em;
	font-size: 1em;
}

/* -------------------- class for float clearing ------------------------ */
.clearLeft{ /*used for clearing left floated elements*/
	clear:left;
}
.clearRight{ /*used for clearing right floated elements*/
	clear:right;
}
.clearfloat { /* used for clearing and containing internal floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.rightAlign    {
	text-align: right;
}
