@charset "UTF-8";

/* SpryAccordion.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main Accordion container. For our default style,
 * we draw borders on the left, right, and bottom. The top border of the Accordion
 * will be rendered by the first AccordionPanelTab which never moves.
 *
 * If you want to constrain the width of the Accordion widget, set a width on
 * the Accordion container. By default, our accordion expands horizontally to fill
 * up available space.
 *
 * The name of the class ("Accordion") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * Accordion container.
 */
.Accordion {
	margin: 0px;
	padding: 0px;
	border-left: solid oopx #CCC;
	border-right: solid opx #999;
	border-top: solid opx #999;
	width:233px;
	height:100%;
	border:none;
	border-bottom: solid opx #CCC;
}
.Accordionaboutfaqs {
	margin: 0px;
	padding: 0px;
	border-left: solid oopx #CCC;
	border-right: solid opx #999;
	border-top: solid opx #999;
	width:709px;
	border:none;
	border-bottom: solid opx #CCC;
}

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin: 0px;
	padding: 0px;
	border:none;
	height:100%;
	overflow:hidden;
}
.AccordionPanelone {
	margin: 0px;
	padding: 0px;
	border:none;
	height:200px;
	overflow:hidden;
}

.about-faq-bg{
	margin: 0px;
	padding: 0px;
	width:709px;
	background:url(../images/graybg.png) repeat;
	height: 40px;
	border-bottom:solid 1px #e8e9e9;
}
/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.
 *
 * The name of the class ("AccordionPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel tab container.
 */
.AccordionPanelTab {
	height:26px;
	font-family:'HelveticaNeueRegular';
	font-size:14px;
	color:#333333;
	font-weight:normal;
	background:#99cc00;
	margin: 0px 0px 0px 0px;
	padding: 12px 2px 2px 30px;
	cursor: pointer;
	border-right:solid 1px #ddf696;
	border-left:solid 1px #ddf696;
	border-top:solid 1px #ddf696;
	background-image:url(../images/plusimg.png);
	background-repeat:no-repeat;
	background-position:10px 15px;
	outline:none;
}
.AccordionPanelTababoutfaqspage {
	height:26px;
	font-family:'HelveticaNeueRegular';
	font-size:15px;
	color:#333333;
	font-weight:normal;
	margin: 0px 0px 0px 0px;
	padding: 12px 2px 2px 15px;
	cursor: pointer;
	border-right:solid 1px #e8e9e9;
	border-left:solid 1px #e8e9e9;
	border-top:solid 1px #e8e9e9;
	background-image:url(../images/caree-plusimg.png);
	background-repeat:no-repeat;
	background-position:680px 13px;
	outline:none;
}
.AccordionPanelOpen .AccordionPanelTababoutfaqspage {
	background-image:url(../images/caree-minusimg.png);
	background-repeat:no-repeat;
	background-position:680px 18px;
	color:#333333;
}
/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
	.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	background:#f0f7d9;
	width:233px;
	}

.AccordionPanelContentabout {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	background:#fff ;
	border-left:solid 1px #e8e9e9;
	border-right:solid 1px #e8e9e9;
	width:707px;
	}

.AccordionPanelContentteacher {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	background:#fff8dd;
	width:233px;
	height:100%;
}

.AccordionPanelContentnew {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	float:left;
	height:100px;
	background:#f0f7d9;
}
.AccordionPanelContentttp {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	background:#fff8dd;
	width:233px;
	height:210px;
	float:left;
}
.AccordionPanelContentsergreen {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	background:#f0f7d9;
	width:233px;
	height:210px;
	float:left;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen .AccordionPanelTab {
	background-image:url(../images/minusimg.png);
	background-repeat:no-repeat;
	background-position:10px 20px;
	color:#FFFFFF;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AccordionPanelTabHover {
	color:#fff;
	
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color:#fff;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */
.AccordionFocused .AccordionPanelTab {

}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #99cc00;
}



.AccordionPanelTababout {
	height:26px;
	font-family:'HelveticaNeueRegular';
	font-size:15px;
	color:#333333;
	font-weight:normal;
	background:#fac90f;
	margin: 0px 0px 0px 0px;
	padding: 12px 2px 2px 30px;
	cursor: pointer;
	border-right:solid 1px #ddf696;
	border-left:solid 1px #ddf696;
	border-top:solid 1px #ddf696;
	background-image:url(../images/aboutus-arrow.png);
	background-repeat:no-repeat;
	background-position:10px 15px;
	outline:none;
}

.AccordionPanelOpen .AccordionPanelTababout {
	background-image:url(../images/aboutus-arrow.png);
	background-repeat:no-repeat;
	background-position:10px 0px;
	color:#FFFFFF;
}
#nlc-faqs a{ text-decoration:none; width:233px; float:left; color:#333333;}
#nlc-faqs a:hover{ text-decoration:none; width:233px; float:left; color:#fff;}
#nlc-faqs a.active{ text-decoration:none; width:233px; float:left; color:#fff;}


.AccordionPanelTabservices {
	height:26px;
	font-family:'HelveticaNeueRegular';
	font-size:15px;
	color:#000;
	font-weight:normal;
	background:#fac90f;
	margin: 0px 0px 0px 0px;
	padding: 12px 2px 2px 30px;
	cursor: pointer;
	border-right:solid 1px #ddf696;
	border-left:solid 1px #ddf696;
	border-top:solid 1px #ddf696;
	background-image:url(../images/plusimg.png);
	background-repeat:no-repeat;
	background-position:10px 15px;
	outline:none;
}

.AccordionPanelOpen .AccordionPanelTabservices {
	background-image:url(../images/minusimg.png);
	background-repeat:no-repeat;
	background-position:10px 20px;
	color:#FFFFFF;
}
.AccordionPanelContentservices {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	background:#fff8dd;
}




.AccordionPanelTababoutfaqs {
	height:28px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight:normal;
	margin: 0px 0px 0px 0px;
	padding: 12px 2px 2px 12px;
	cursor: pointer;
	color:#000000;
	border-right:solid 1px #ddf696;
	border-left:solid 1px #ddf696;
	border-top:solid 1px #ddf696;
	background-image:url(../images/plusinner.png);
	background-repeat:no-repeat;
	background-position:670px 15px;
	outline:none;
}
.AccordionPanelContentaboutfaqs {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 10px;
	background:#fff;
	float:left;
	border-left:solid 1px #ddf696;
	border-right:solid 1px #ddf696;
	border-top :solid 1px #ddf696;
	font: normal 12px Arial, Helvetica, sans-serif;	
}

.AccordionPanelOpen .AccordionPanelTababoutfaqs {
	background-image:url(../images/minuinner.png);
	background-repeat:no-repeat;
	background-position:670px 20px;
}
#about-faqs{
	margin: 0px;
	padding: 0px;
	background:url(../images/faqs-bg.png) repeat-x;
	height:40px;
}

.AccordionPanelTab a
{
color:#FFFFFF;
text-decoration:none;
}