/* Stylesheet for SecureMyBooking */

* {
	margin:0;
	padding:0;
}

body {
	/*background-color:#CCCCFF;*/
	background-color:#FFFFFF;
	font-family:Tahoma, "Lucida Grande", sans-serif;
	font-size:11px;
	color:#333333;
	counter-reset: chapter;
}

#wrapper {
	width:770px;
	margin:10px auto;
	background-color:#FFFFFF;
}
#header {
	margin:5px 10px;
	width:750px;
}
#header img {
	float:left;
}
#header a {
	float:right;
	vertical-align:baseline;
	margin-right:0;
}

/* Main content controls */
#tcContainer {
	border:1px solid #333333;
	margin:0 auto;
	width:680px;
	clear:both;
}
#tcBody {
	padding:5px 10px;
}
#tcBody h1 {
	font-size:12px;
	color:#999999;
	border-bottom:1px solid #999999;
	text-transform:uppercase;
}
#tcBody h2 {
	font-size:14px;
	font-weight:bold;
}
#tcBody p {
	margin:0;
	padding:0 0 10px 0;
}
#tcBody ul, #tcBody ol {
	margin:0 20px;
}
#tcBody li {
	padding:0 0 5px 0;
}

#tcBody dl dt {
	font-weight:bold;
	text-transform:uppercase;
}
#tcBody dl dl dt {
	width:20px;
	float:left;
	font-weight:normal;
	text-transform:none;
	margin:0 0 0 10px;
	padding:0 0 0 0;
}
#tcBody dl dl dd {
	text-transform:none;
	font-weight:normal;
	/*float:left;*/
	padding:0 10px 5px 10px;
	margin:0 0 0 50px;
}
/#tcBody .sublist {
	*/background-color:#FC9;*/
	clear:both;
}
#tcBody dl dl .sublist dt {
	padding:0px;
	margin:0 0 0 30px;
}
#tcBody dl dl .sublist dd {
	padding:0 10px 5px 10px;
	margin:0 0 0 50px;
}
#tcBody .indentTab {
	margin:0 0 1px 30px;
	padding:0;
}
/*#tcBody dl dl dt.sublist {
	padding-left: 20px;
	margin-right:40px;
}*/
/*#tcBody dl dl ol {
	list-style-type:lower-alpha;
	padding-bottom:5px;
	margin-left:45px;
}*/
#tcBody dl dl ol li {
	list-style-type:lower-alpha;
	padding-bottom:5px;
	margin-left:45px;
}
#tcBody dl p {
	text-transform:none;
	font-weight:normal;
}

/* Footer controls */
#footer {
	margin:5px 10px;
	width:750px;
}
#footer a {
	clear:both;
	float:right;
	vertical-align:baseline;
	margin-right:0;
}
#footer img {
}
#footer img.left {
	float:left;
	margin:22px 22px 30px 35px;
}
#footer img.right {
	float:right;
	margin:22px 35px 30px 22px;
}
#footer p {
	text-align:center;
	padding-bottom:10px;
}
#footer p .leader {
	font-weight:bold;
	text-decoration:underline;
}
#footer p .agentName {
	text-transform:uppercase;
}
/* End of Footer controls */

#tcBody #testLists ol {
	counter-reset: item
}
#tcBody #testLists li {
	display: block
}
#tcBody #testLists  li:before {
	content: counter(item) ". ";
	counter-increment: item
}

#tcBody h3:before {
    counter-increment: chapter;  /* Add 1 to chapter */
	content: counter(chapter) ". ";
    /*counter-increment: chapter;  /* Add 1 to chapter */
    /*counter-reset: section;      /* Set section to 0 */
	font-size:12px;
}
#tcBody ol {
    list-style-type: none;
	counter-reset: section;      /* Set section to 0 */
}
#tcBody ol li:before {
    /*content: counter(chapter) "." counter(section) " ";*/
    counter-increment: section;
	content: counter(chapter) "." counter(section) " ";
}
#tcBody ul{
    list-style-type: none;
	counter-reset: subsection;      /* Set section to 0 */
}
#tcBody ul li:before {
    /*content: counter(chapter) "." counter(section) " ";*/
    counter-increment: subsection;
	content: counter(chapter) "." counter(section) "." counter(subsection) " ";
}
.clearAll {
	clear:both;
}