@charset "utf-8";
/* CSS Document */

/* -------------------------------------------------------------- 
   * Resets default browser CSS.
-------------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

body { 
  line-height: 1.2; 
}

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images. */
a img { border: none; }

/* -------------------------------------------------------------- 
   * Sets up some sensible default typography.
-------------------------------------------------------------- */

/*
COLOR TABLE:

Dark Text: 				#333
Alight Deep Orange: 	#d86816
Alight Orange: 			#e98a24
Alight Light Orange: 	#fcb418
Alight Green: 			#89953c
Alight Blue: 			#09a0b3
Alight Deep Red: 		#b30909

Light BG: 				#fffbdf

*/

.alight-deep-orange{color:#d86816;}
.alight-orange{color:#e98a24;}
.alight-light-orange{color:#fcb418;}
.alight-green{color:#89953c;}
.alight-blue{color:#09a0b3;}
.alight-red{color:#b30909;}

/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
body { 
  font-size: 75%;
  color: #333; 
  background: #fffbdf url(../../images/body_bg_top.png) repeat-x top;
  font-family: "Myriad Pro", "Myriad Web", "Myriad", Geneva, Lucida Sans, Lucida Grande, Lucida Sans Unicode, Verdana, sans-serif;
}


/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #d86816; }

h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }

h1 img, h2 img, h3 img, 
h4 img, h5 img, h6 img {
  margin: 0;
}


/* Text elements
-------------------------------------------------------------- */

p           { margin: 0 0 1.5em; }
p img.left  { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

a:focus, 
a:hover     { color: #555; }
a           { color: #333; text-decoration: underline; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em,dfn      { font-style: italic; }
dfn         { font-weight: bold; }
sup, sub    { line-height: 0; }

abbr, 
acronym     { border-bottom: 1px dotted #666; }
address     { margin: 0 0 1.5em; font-style: italic; }
del         { color:#666; }

pre 				{ margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }


/* Lists
-------------------------------------------------------------- */

li ul, 
li ol       { margin:0 1.5em; }
ul, ol      { margin: 0 1.5em 1.5em 1.5em; }

ul          { list-style-type: disc; }
ol          { list-style-type: decimal; }

dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}

.large-bullet-list {
	font-size:1.2em;
	line-height:1.5;
}

/* Tables
-------------------------------------------------------------- */

table       { margin-bottom: 1.4em; width:100%; }
th          { font-weight: bold; }
thead th 		{ background: #c3d9ff; }
th,td,caption { padding: 4px 10px 4px 5px; }
tr.even td  { background: #e5ecf9; }
tfoot       { font-style: italic; }
caption     { background: #eee; }


/* Misc classes
-------------------------------------------------------------- */

.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.hide       { display: none; }

.quiet      { color: #666; }
.loud       { color: #333; }
.highlight  { background:#ff0; }
.added      { background:#060; color: #fff; }
.removed    { background:#900; color: #fff; }

.first      { margin-left:0; padding-left:0; }
.last       { margin-right:0; padding-right:0; }
.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }

/* -------------------------------------------------------------- 
   * General Containers and Layout.
-------------------------------------------------------------- */
/* A container should group all your columns. */
.container {
  width: 1021px;
  margin: 0 auto;
}

.floatleft{
	float:left;
}
.floatright{
	float:right;
}

/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */
.clearfix:after, .container:after {
  content: "\0020"; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden;
  overflow:hidden; 
}
.clearfix, .container {display: block;}

/* Regular clearing
   apply to column that should drop below previous ones. */

.clear { clear:both; }

/* Misc classes and elements
-------------------------------------------------------------- */

/* In case you need to add a gutter above/below an element */
.prepend-top { 
  margin-top:1.5em; 
}
.append-bottom { 
  margin-bottom:1.5em; 
}

/* Use a .box to create a padded box inside a column.  */ 
.box { 
  padding: 1.5em; 
  margin-bottom: 1.5em; 
  background: #fffbdf; 
}

/* Use this to create a horizontal ruler across a column. */
hr {
  background: #ddd; 
  color: #ddd;
  clear: both; 
  float: none; 
  width: 100%; 
  height: .1em;
  margin: 0 0 1.45em;
  border: none; 
}
hr.space {
  background: #fff;
  color: #fff;
}

/* -------------------------------------------------------------- 
   forms
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   * For inline forms, use .inline (even when using columns) 
-------------------------------------------------------------- */

label       { font-weight: bold; }
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }


/* Form fields
-------------------------------------------------------------- */

input[type=text], input[type=password],
input.text, input.title, 
textarea, select { 
  background-color:#fff; 
  border:1px solid #bbb; 
  font-family:inherit;
}

.mobwrite {
	border:none;
	width:945px;
	height:1000px;
	font-size:1.5em;
}
.mobwrite:hover {
	border:1px solid #e98a24;
}
mobwrite:focus {
	border:1px solid #e98a24;
}

input[type=text]:focus, input[type=password]:focus, 
input.text:focus, input.title:focus, 
textarea:focus, select:focus { 
  border-color:#666; 
}

input[type=text], input[type=password],
input.text, input.title,
textarea, select {
  margin:0.5em 0;
}

input.text, 
input.title   { width: 300px; padding:5px; }
input.title   { font-size:1.5em; }
textarea      {
	width: 400px;
	height: 75px;
	padding:5px;
}

input[type=checkbox], input[type=radio], 
input.checkbox, input.radio { 
  position:relative; top:.25em; 
}

form.inline { line-height:3; }
form.inline p { margin-bottom:0; }


/* Success, notice and error boxes
-------------------------------------------------------------- */

.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }

.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }

/* -------------------------------------------------------------- 
	Alight Learning specific CSS
-------------------------------------------------------------- */

#leftshadow {
	background: transparent url(../../images/body_bg_shadowleft.png) no-repeat left top;
	position: absolute;
	top: 0;
	left: 0;
	width:220px;
	height:783px;
}

#rightshadow {
	background: transparent url(../../images/body_bg_shadowright.png) no-repeat right top;
	position: absolute;
	top: 5px;
	right: -14px;
	width:220px;
	height:783px;
}

#header {
	position:relative;
	height:143px;
}
#logo {
	background: transparent url(../../images/Alight_Learning_Logo.png) no-repeat left top;
	position:absolute; /* Absolute position relative to the header div */
	width:690px;
	height:345px;
	left:-185px;
	top:-83px;
}

.top-panelarea {
	background: transparent url(../../images/panel_top.png) no-repeat top left;
	height:35px;
	position:relative;
	z-index:1001;
}
.center-panelarea-bg {
	background: transparent url(../../images/panel_center.png) repeat-y left;
	padding: 0px 14px 0px 8px;
	position:relative;
	z-index:1002;
}
.center-panelarea {
	position:relative;
	z-index:1003;
	top:-20px;
}
.bottom-panelarea {
	background: transparent url(../../images/panel_bottom.png) no-repeat top left;
	height:26px;
}

#homepage {
    padding-left: 20px;
    padding-right: 12px;
}

#homepage #pageselector {
	height:22px;
    padding-top: 8px;
    font-size: 20px;
    text-align: center;
}

#homepage #pageselector a {
    color: #09a0b3;
    text-decoration: none;
    padding-left: 6px;
    padding-right: 6px;
}

#homepage #pageselector a.currentpage {
    font-size: 23px;
    font-style: bold;
    color: #565656;
}

#homepage #pageselector a:hover {
    color: #b30909;
    text-decoration: underline;
}

#homepage #tagline {
	height:100px;
}
#homepage #slogan {
	padding:18px;
	float:left;
	width:245px;
}
#homepage #slogan h1{ font-size:30px; }
#homepage #separator {
	background: transparent url(../../images/tagline_divider.png) no-repeat top left;
	width:3px;
	height:80px;
	float:left;
}
#homepage #description {
	float:left;
	padding:18px;
	font-size:23px;
	width:625px;
    height: 80px;
}

#homepage #screenshot_icon {
    width: 420px;
    float: left;
}
#homepage #screenshot_icon img {
    border: 2px solid;
    border-color: #575757;
}

#homepage #screenshot_icon img:hover {
    border-color: #9F9F9F;
}

#homepage #bullet_text {
    padding-top: 15px;
    font-size: 1.2em;
    width: 510px;
    float: left;
}


#homepage #signup-about.posteducon {
    font-size: 1.5em;
}

#homepage #signup-about.posteducon h3 {
    font-size: 16pt;
}

/*
SlidingPanels
#homepage #productabout-border {
	background:#89953c url(../images/productabout_borderbars.png) repeat-x top left;
	height:308px;
	padding:5px 0px 6px 0px;
}

SlidingPanelsContentGroup
#homepage #productabout-wrapper {
	height:309px;
	width:951px;
	float:left;
	overflow:hidden;
	color:#f7f7f7;
}

SlidingPanelsContent
#homepage .productabout {
	height:309px;
	width:951px;
}
#homepage .productabout h1 {
	font-size:30px;
}
#homepage .productabout p {
	font-size:18px;
}
#homepage .productabout .caption{
	font-size:14px;
}
*/

#homepage #SlidingPanelTop {
	height:5px;
	background:#89953c url(../../images/productabout_borderbars.png) repeat-x top left;
}
#homepage #SlidingPanelBottom {
	height:5px;
	background:#89953c url(../../images/productabout_borderbars.png) repeat-x bottom left;
}

#homepage .SlidingPanels {
	background:#89953c;
	height:309px;
    /* This is a hack for fixing WebKit browsers, along with the height in the div in the HTML */
    /* Without it, the center panel is forced off the left of the page for some unknown reason */
    position:absolute;
}

#homepage .SlidingPanelsContentGroup {
	height:309px;
	width:951px;
	float:left;
	color:#f7f7f7;
}

#homepage .SlidingPanelsContent {
	height:309px;
	width:951px;
}
#homepage .SlidingPanelsContent h1 {
	font-size:30px;
}
#homepage .SlidingPanelsContent p {
	font-size:18px;
}
#homepage .SlidingPanelsContent .caption{
	font-size:14px;
}

#homepage #splash {
	background:url(../../images/productabout_1_splash.jpg);
	background-repeat:no-repeat;
}
#homepage #splash p {
	font-size:22px;
	margin:38px 0px;
}
#homepage #splash-text-left{
	float:left;
	padding:0px 0px 30px 175px;
	width:185px;
}
#homepage #splash-text-right {
	text-align:right;
	float:right;
	padding:0px 190px 30px 0px;
	width:280px;
}

#homepage #activity { background:url(../../images/productabout_2_activity.jpg); background-repeat:no-repeat;}

#homepage #activity-text-top{
	float: right;
	width: 550px;
	padding: 10px 20px 0px 0px;
}

#homepage #activity-text-bottom{
	float:right;
	width: 420px;
	padding: 50px 120px 10px 0px;
}
#homepage #resources { background:url(../../images/productabout_3_resources.jpg); background-repeat:no-repeat;}
#homepage #resources-text{
	float:right;
	width: 420px;
	padding: 10px 20px 0 0;
}
#homepage #recommendation { background:url(../../images/productabout_4_recommendation.jpg); background-repeat:no-repeat;}
#homepage #recommendation-text-top{
	float: right;
	width: 400px;
	padding: 10px 0px 0px 0px;
}

#homepage #recommendation-text-bottom{
	float:right;
	width: 400px;
	padding: 30px 0 0 200px;
}

#homepage #personalization { background:url(../../images/productabout_5_personalization.jpg); background-repeat:no-repeat;}
#homepage #personalization-text-top{
	float: right;
	width: 450px;
	padding: 10px 0px 0px 0px;
}

#homepage #personalization-text-bottom{
	float:right;
	width: 400px;
	padding: 60px 20px 0px 230px;
}
#homepage #browse { background:url(../../images/productabout_6_browse.jpg); background-repeat:no-repeat;}
#homepage #browse-text-top{
	float: right;
	width: 550px;
	padding: 10px 0px 0px 0px;
}

#homepage #browse-text-bottom{
	float:right;
	width: 530px;
	padding: 40px 10px 0px 0px;
}
#homepage #security { background:url(../../images/productabout_7_safeandsecure.jpg); background-repeat:no-repeat;}
#homepage #security-text{
	float: right;
	width: 450px;
	padding: 10px 10px 0px 0px;
}

#homepage #productabout-navigator {
	background:url(../../images/productabout_sidenavigation_bg.jpg) no-repeat top left;
	height:303px;
	width:42px;
	float:right;
	padding:3px;
}

#homepage #uparrow {
	background:transparent url(../../images/productabout_uparrow.png) no-repeat top left;
	width:40px;
	height:30px;
	margin:4px 2px;
}
#homepage #uparrow:hover { background:transparent url(../../images/productabout_uparrow_hover.png) no-repeat top left;}

#homepage .pageicon {
	background:transparent url(../../images/productabout_pageicon.png) no-repeat top left;
	width:40px;
	height:30px;
	margin:4px 0px;
}
#homepage .pageicon:hover {	
	background:transparent url(../../images/productabout_pageicon_hover.png) no-repeat top left;
	position:relative;
	left:-1px;
}
.pageicon-hover {	
	background:transparent url(../../images/productabout_pageicon_hover.png) no-repeat top left;
	position:relative;
	left:-1px;
	width:40px;
	height:30px;
	margin:4px 0px;
}

#homepage #downarrow {
	background:transparent url(../../images/productabout_downarrow.png) no-repeat top left;
	width:40px;
	height:30px;
	margin:4px 2px;
}
#homepage #downarrow:hover { background:transparent url(../../images/productabout_downarrow_hover.png) no-repeat top left;}

#homepage #signuptwitter {
	padding: 10px;
}
#homepage #signup {
	width:489px;
	float:left;
}
#homepage #twitter {
	width:489px;
	float:left;
}

#footer #mininav {
	font-size:18px;
	height:30px;
	text-align:center;
	padding:10tpx 0px;
}
#footer #social {
	width:805px;
	height:50px;
	margin:0 auto;
}
#footer .socialicon {
	padding:0px 25px;
}
#footer #copyright {
	text-align:center;
	color:#999;
	font-size:12px;
	width:320px;
	padding:5px 0px;
	margin:0 auto;
}
