/*-----------------------------------------------
 * @file: microsite.css
 * @description: Microsite page layout CSS.
 *
 * @author: Siri Pathammavong
 * @date: 2008-03-12
 *-----------------------------------------------*/
body
{
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-weight: normal;
	font-size:10pt;
	background-color: #CCCCCC; /* CHANGE BACKGROUND THEME HERE */
	margin: 0px;
	padding: 0px;
	color: #000000;
}
body.dark
{
	color: #FFFFFF;
	background-color: #646665;
}

img
{
	margin: 0px;
	border: none;
	background: transparent;
}

form
{
	margin: 0px;
}

p
{
	margin: 0px 0px 15px 0px;
	padding: 0px;
}

ul /* unordered list style */
{
	text-transform: none;
	text-decoration: none;
	list-style-position: outside;
	list-style-type: square;	/* if the bullet image was not found */
	list-style-image: url(/graphics/media/image/style/black_square_bullet.gif);
	margin: 0px;
	padding-left: 20px;
}
.dark ul
{
	list-style-image: url(/graphics/media/image/style/white_square_bullet.gif);
}

ol /* ordered list style */
{
	font-family: Arial, Helvetica, sans-serif;
	text-transform: none;
	text-decoration: none;
	list-style-position: outside;
	margin: 0px;
	padding-left: 20px;
}

a { color: #00539A; }
a:visited
{
	color: #003399;
	text-decoration: underline;
}
a:hover
{
	color: #3399FF;
	text-decoration: underline;
}
.dark a { color: #3399FF; }
.dark a:visited
{
	color: #3399FF;
	text-decoration: underline;
}
.dark a:hover
{
	color: #7FBFFF;
	text-decoration: underline;
}

h1
{
	font-size: 23pt;
	font-weight: normal;
	color: #00539A;
	margin: 15px 0px;
}
h4
{
	font-size: 15pt;
	font-weight: bold;
	margin-bottom: 0px;
	color: rgb(255, 198, 46);
}
h3
{
	font-size: 10pt; /* same than normal text */
	font-weight: bold;
	margin-bottom: 0px;
	margin-top: 15px;
}
body.dark h1
{
	color: #FFC62E;/* yellow */
}

/**
 * inner section
 */
#inner
{
	background-color: #FFFFFF;
	width: 900px;
	margin: auto;
}

/**
 * wrapper section
 */
#wrapper
{
	width: 100%;
	height: 290px;
	background-color: #FFFFFF;
	text-align: left;
	padding-bottom: 30px;
}
html>body #wrapper           /* all other browsers */
{
	height: auto;
	min-height: 290px;
}

/**
 * content
 */
#content
{
	height: auto;
	width: 780px;
	padding: 0px 0px 0px 60px;
}
#mainContent
{
	float: left;
	margin-right: 0px;
	width: 560px;
	height: auto;
}
#rightContent
{
	float: left;
	clear: right;
	width: 185px;
	height: auto;
	margin: 0px;
	padding: 0px;
	padding-top: 15px;
}

/**
 * footer section
 */
#footer
{
	width: 870px;
	color: white;
	background-color: #39567E; /* do not modify this background color, add (#[event_name] #footer) element, for example see (#nab #footer)  */
	text-align: right;
	padding-right: 15px;
	height: 20px;
	font-size: 10px;
 	padding: 7px 30px 0px 0px;
 	margin: 0px;
}
#nab #footer
{
	background-color: #061E39;
}
#footer a, #footer a:visited
{
	color: #FFFFFF;
	text-decoration: none;
}
#footer a:hover
{
	text-decoration: underline;
}

/**
 * menu section
 */
#menu *
{
	list-style: none;
	margin: 0px;
	padding: 0px;
}
#menu
{
	width: 185px;
}
#menu ul
{
	list-style-type: none;
	list-style-image: none;
}
#menu li a
{
	height: 32px;
	voice-family: "\"}\"";
	voice-family: inherit;
	height: 24px;
	text-decoration: none;
}
#menu li a:link, #menu li a:visited
{
	color: #000000;
	display: block;
	background: url(/graphics/media/image/style/microsite/menu.jpg);
	background-repeat:no-repeat;
	padding: 8px 0 0 10px;
}
#menu li a:hover
{
	color: #626262;
	background: url(/graphics/media/image/style/microsite/menu.jpg) 0 -32px;
	background-repeat:no-repeat;
	padding: 8px 0 0 10px;
}
#menu li a:active
{
	color: #CCCCCC;
	background: url(/graphics/media/image/style/microsite/menu.jpg) 0 -64px;
	background-repeat:no-repeat;
	padding: 8px 0 0 10px;
}
/* dark menu style */
.dark #menu li a:link, .dark #menu li a:visited
{
	background: url(/graphics/media/image/style/microsite/grey_menu_background.gif);
}
.dark #menu li a:hover
{
	background: url(/graphics/media/image/style/microsite/grey_menu_background.gif) 0 -32px;
}
.dark #menu li a:active
{
	background: url(/graphics/media/image/style/microsite/grey_menu_background.gif) 0 -64px;
}
/* light blue menu style */
#menu.lightBlueMenu li a:link, #menu.lightBlueMenu li a:visited
{
	background: url(/graphics/media/image/style/microsite/lightBlue_menu_background.gif);
}
#menu.lightBlueMenu li a:hover
{
	background: url(/graphics/media/image/style/microsite/lightBlue_menu_background.gif) 0 -32px;
}
#menu.lightBlueMenu li a:active
{
	background: url(/graphics/media/image/style/microsite/lightBlue_menu_background.gif) 0 -64px;
}

.theHiddenAnswer
{
  display: none;
  padding-left: 10px;
  padding-bottom: 10px;
}

/*
 * SIMPLE GRID and GREY HEADERS GRID (no background color grid)
 */
table.simple_grid,
table.greyHeaders_grid
{
	border-collapse: collapse;
}
table.simple_grid th,
table.greyHeaders_grid th
{
	font-weight: bold;
	text-align: left;
	border: 1px solid #666666;
	padding: 5px;
	background-color: transparent;
	vertical-align: top;
}
table.greyHeaders_grid th
{
	background-color: #D9D9D9; /* grey headers */
}
table.simple_grid td,
table.greyHeaders_grid td
{
	text-align: left;
	border: 1px solid #666666;
	padding: 5px;
	background-color: transparent;
}

/*
 * THUMBNAIL VIEWER STYLE
 */
#thumbBox								/* Outermost DIV for thumbnail viewer */
{
	position: absolute;
	left: 0;
	top: 0;
	width: auto;
	padding: 18px;
	padding-top: 10px;
	background: white;
	border: #666666 solid 4px;
	visibility: hidden;
	z-index: 10;
}
#thumbBox .header_bar		/* Header DIV of thumbbox that contains "close" link */
{
	font: bold 12px arial, sans-serif;
	line-height: 1.1em;
	color: #CCCCCC;
	padding: 5px 0;
	text-align: right;
}
#thumbBox #thumbImage		/* DIV within thumbbox that holds the enlarged image */
{
	background-color: #FFFFFF;
}
#thumbLoading						/* DIV for showing "loading" status while thumbbox is being generated */
{
	position: absolute;
	visibility: hidden;
	border: 1px solid #666666;
	background-color: #FFFFFF;
	padding: 5px;
	z-index: 5;
}
#thumbBox a
{
	color: #666666;
	text-decoration: none;
}


/**
 * font styles
 */
.smallFont
{
	font-size: 8pt;
	font-weight: normal;
	margin: 0px 0px;
}
.error
{
	color: red;
	font-weight: bold;
}
.yellowFont
{
	color: #FFC62E;
}
/* End style (font style should be the last css declaration) */
