@charset "UTF-8";

/* SpryTabbedPanels.css - version 0.6 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* Horizontal Tabbed Panels
 *
 * The default style for a TabbedPanels widget places all tab buttons
 * (left aligned) above the content panel.
 */

/* This is the selector for the main TabbedPanels container. For our
 * default style, this container does not contribute anything visually,
 * but it is floated left to make sure that any floating or clearing done
 * with any of its child elements are contained completely within the
 * TabbedPanels container, to minimize any impact or undesireable
 * interaction with other floated elements on the page that may be used
 * for layout.
 *
 * If you want to constrain the width of the TabbedPanels widget, set a
 * width on the TabbedPanels container. By default, the TabbedPanels widget
 * expands horizontally to fill up available space.
 *
 * The name of the class ("TabbedPanels") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabbedPanels container.
 */
.TabbedPanels {
	overflow: hidden;
	margin: 0px;
	padding: 0px;
	clear: none;
	width: 996px; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
	float: left;
}

/* This is the selector for the TabGroup. The TabGroup container houses
 * all of the tab buttons for each tabbed panel in the widget. This container
 * does not contribute anything visually to the look of the widget for our
 * default style.
 *
 * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabGroup container.
 */
.TabbedPanelsTabGroup {
	margin: 0px;
	width: 250px;
	float: left;
	background-image: url(../images/leftNavBG.png);
	background-repeat: no-repeat;
	background-position: 18px top;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	height: 256px;
}

/* This is the selector for the TabbedPanelsTab. This container houses
 * the title for the panel. This is also the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 *
 * For our default style, each tab is positioned relatively 1 pixel down from
 * where it wold normally render. This allows each tab to overlap the content
 * panel that renders below it. Each tab is rendered with a 1 pixel bottom
 * border that has a color that matches the top border of the current content
 * panel. This gives the appearance that the tab is being drawn behind the
 * content panel.
 *
 * The name of the class ("TabbedPanelsTab") used in this selector is not
 * necessary to make the widget function. You can use any class name you want
 * to style this tab container.
 */
.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	width: 213px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 8px;
	padding-right: 10px;
	padding-bottom: 8px;
	padding-left: 25px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-family: 'Droid Sans', sans-serif;
	font-size: 14px;
	font-weight: normal;
	height: 23px;
	text-shadow: 1px 1px #FFF;
	color: #999;

	
}
.TabbedPanelsContent h3 span {
	color: #F29331;
}


/* This selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. The class "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 */
.TabbedPanelsTabHover {
	color: #666;
}

/* This selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * The class "TabbedPanelsTabSelected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.
 *
 * As mentioned above, for our default style, tab buttons are positioned
 * 1 pixel down from where it would normally render. When the tab button is
 * selected, we change its bottom border to match the background color of the
 * content panel so that it looks like the tab is part of the content panel.
 */
.TabbedPanelsTabSelected {
	background-image: url(../images/LeftNavArrow.png);
	background-repeat: no-repeat;
	height: 23px;
	width: 213px;
	padding-top: 8px;
	padding-bottom: 8px;
	color: #999;
}

/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.TabbedPanelsTab a {
	color: black;
	text-decoration: none;
}

/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * The name of the class ("TabbedPanelsContentGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the ContentGroup container.
 */
.TabbedPanelsContentGroup {
	float: left;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	line-height: 1.5em;
	padding-left: 15px;
	padding-right: 15px;
	width: 700px;
}

/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.TabbedPanelsContent {
	overflow: hidden;
	padding: 4px;
	height: auto;
}

/* This selector is an example of how to change the appearnce of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.TabbedPanelsContentVisible {
}

/* Vertical Tabbed Panels
 *
 * The following rules override some of the default rules above so that the
 * TabbedPanels widget renders with its tab buttons along the left side of
 * the currently active content panel.
 *
 * With the rules defined below, the only change that will have to be made
 * to switch a horizontal tabbed panels widget to a vertical tabbed panels
 * widget, is to use the "VTabbedPanels" class on the top-level widget
 * container element, instead of "TabbedPanels".
 */

.VTabbedPanels {
	overflow: hidden;
	zoom: 1;
}

/* This selector floats the TabGroup so that the tab buttons it contains
 * render to the left of the active content panel. A border is drawn around
 * the group container to make it look like a list container.
 */
.VTabbedPanels .TabbedPanelsTabGroup {
	float: left;
	width: 10em;
	height: 20em;
	background-color: #EEE;
	position: relative;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
}
.sliderContainer {
	height: 300px;
	width: 996%;
	margin-right: auto;
	margin-left: auto;
}


/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTab {
	float: none;
	margin: 0px;
	border-top: none;
	border-left: none;
	border-right: none;
}
.releaseNew ul {
	font-size: 13px;
	padding-left: 50%;
}
.releaseNew ul li {
	margin-top: 5px;
	margin-bottom: 5px;
}


/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTabSelected {
	background-color: #EEE;
	border-bottom: solid 1px #999;
}

/* This selector floats the content panels for the widget so that they
 * render to the right of the tabbed buttons.
 */
.VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	float: left;
	padding: 0px;
	width: 30em;
	height: 20em;
}

/* Styles for Printing */
@media print {
.TabbedPanels {
	overflow: visible !important;
}
.TabbedPanelsContentGroup {
	display: block !important;
	overflow: visible !important;
	height: auto !important;
}

.TabbedPanelsContent {
	overflow: visible !important;
	display: block !important;
	clear:both !important;
}
.TabbedPanelsTab {
	 overflow: visible !important;
	 display: block !important;
	 clear:both !important;
}
}
* {
	margin: 0px;
	padding: 0px;
	font-family: 'Droid Sans', sans-serif;
	list-style-type: none;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
body {
	background-image: url(../images/contentBg.png);
	background-repeat: repeat-x;
	background-position: left top;
	background-color: #F0F1F1;
	float: left;
	width: 100%;
}
.headerContainer {
	width: 996px;
	margin-right: auto;
	margin-left: auto;
	height: 110px;
}
#header {
	margin-right: auto;
	margin-left: auto;
	background-image: url(../images/headerBG.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-color: #d2d3d7;
	float: left;
	width: 100%;
}
#homeHeader {
	margin-right: auto;
	margin-left: auto;
	background-image: url(../images/headerBG.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #d2d3d7;
	height: 450px;
}
#uspSlider {
	height: 130px;
	padding-top: 5px;
	padding-bottom: 5px;
	text-shadow: 1px 1px #FFF;
	float: left;
	width: 100%;
	clear: both;
	background-color: #EAEAEA;
	margin-top: 3px;

}
.uspContainer {
	width: 996px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}
.uspContainer .uspContent {
	font-size: 16px;
	line-height: 1.5em;
	text-align: center;
	color: #000;
}
.uspContainer .uspLeft {
	width: 900px;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
}
.uspContainer .uspLeft .uspContent p {
	display: inline;
}
.uspContainer .uspLeft .uspContent .bullet {
	color: #666;
	padding-left: 5px;
	margin-left: 10px;
}
.uspContainer .uspLeft h3 span {
	color: #F29330;
}
#footer .footerContainer .quickNav h5 a {
	color: #CCC;
	text-decoration: none;
}
.contentArea .boxHome .boxinner strong {
	float: right;
}

.uspContainer .uspLeft h3 {
	text-align: center;
	font-size: 30px;
	color: #868B8E;
}
.sliderContainer .uspTop {
	font-size: 50px;
	font-weight: bold;
	margin-top: 60px;
	float: left;
	color: #666;
	margin-left: 25px;
	text-shadow: 1px 1px #FFF;
}
.sliderContainer .uspTop strong {
	display: block;
	font-weight: normal;
	font-size: 25px;
	color: #666666;
}
.contentArea .abouBlog .newsBox {
	float: left;
	width: 250px;
	padding: 20px;
	text-align: left;
}
.contentArea .abouBlog .aboutUs {
	float: left;
	width: 400px;
	padding: 20px;
}

#homeHeader .sliderContainer {
	width: 996px;
	margin-right: auto;
	margin-left: auto;

	display: block;
	height: 300px;
}

.uspContainer .uspRight {
	float: left;
	font-size: 13px;
	line-height: 2em;
	margin-left: 150px;
	margin-top: 15px;
}
.uspContainer .uspRight ul li {
	background-image: url(../images/bullet.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 30px;
	color: #666;
}




.TabbedPanelsContent h3 {
	text-shadow: 1px 1px #FFF;
	color: #666;
	padding-bottom: 10px;
	padding-top: 10px;
}
.TabbedPanelsContentVisible h4 {
	color: #F29230;
	font-weight: normal;
	text-transform: capitalize;
}



.TabbedPanelsContent p {
	font-size: 13px;
	margin-bottom: 15px;
	color: #666;
	text-shadow: 1px 1px #FFF;

}
.rightPanal {
	float: right;
	width: 240px;
	padding-top: 15px;
	margin-left: 20px;
}

.footerContainer .quickNav {
	float: left;
	line-height: 1.4em;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.footerContainer .quickNav h5 {
	color: #CCC;
	font-size: 13px;
}
.footerContainer .quickNav ul li a {
	font-size: 12px;
	text-decoration: none;
	color: #999;
}
.footerContainer .quickNav ul li a:hover {
	font-size: 12px;
	text-decoration: none;
	color: #CCC;
}
.footerContainer .socialShare {
	clear: both;
	float: left;
	margin-left: 20px;
	width: 500px;
}
.footerContainer .copyRights {
	clear: both;
	font-size: 12px;
	text-align: center;
}
.footerContainer .copyRights p a {
	color: #999;
	text-decoration: underline;
}
.footerContainer .copyRights p {
	padding-top: 15px;
	color: #666;
	text-align: center;
}
.footerContainer .socialShare ul li {
	float: left;
	padding-right: 5px;
	padding-left: 5px;
	display: inline;
}


.headerContainer h1 {
	float: left;
	padding-top: 45px;
	padding-bottom: 15px;
}
.headerContainer .primaryNav {
	padding-top: 25px;
	text-shadow: 1px 1px #ededed;
	float: right;

}


.rightPanal .testimonial p {
	font-size: 13px;
	color: #666;
	text-shadow: 1px 1px #FFF;
	text-align: left;
	line-height: 1.8em;
}
.contentArea {
	width: 996px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 5px;
	clear: both;
}

.rightPanal .testimonial div {
	font-size: 13px;
	text-align: right;
}
.rightPanal .testimonial div span {
	font-size: 12px;
	display: block;
	color: #999;
	text-align: right;
}

.rightPanal .testimonial p strong {
	color: #F90;
	font-family: Georgia, "Times New Roman", Times, serif;
}

.rightPanal .testimonial {
	background-image: url(../images/box-bg.png);
	background-repeat: repeat-x;
	background-position: left center;
	padding: 20px;
	font-style: italic;
	border-radius:10px;
	text-shadow: 1px 1px #FFF;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CCC;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #CCC;
	line-height: 1.3em;
}
p a {
	color: #39F;
	text-decoration: none;
}
.contentArea .breadcrumb li {
	float: left;
	padding-right: 5px;
	font-size: 12px;
	color: #999;
}
.contentArea .breadcrumb {
	list-style-type: none;
	padding-bottom: 15px;
	padding-left: 25px;
	text-shadow: 1px 1px #FFF;
}
.contentArea .breadcrumb li a {
	float: left;
	display: block;
	color: #999;
	text-decoration: none;
	font-size: 10px;
	text-transform: uppercase;
	padding-top: 2px;
	padding-bottom: 2px;
}
.contentArea .breadcrumb li a:hover {
	float: left;
	display: block;
	color: #666;
	text-decoration: none;
}

.breadArrow {
	background-image: url(../images/orange-arrow.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 10px;
}
.breadcrumb li strong {
	text-transform: uppercase;
	font-weight: normal;
	font-size: 10px;
}
.headerContainer .genaralNav  {
	float: right;
	padding: 3px 5px;
	border-radius:0 0 10px 10px;
	background-color: #F19331;
}
.headerContainer .genaralNav li {
	float: left;
	padding-right: 5px;
	padding-left: 5px;
	font-size: 11px;
	font-weight: bold;
	text-transform: uppercase;
}
.headerContainer .genaralNav li a {
	text-decoration: none;
	color: #FFF;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 3px;
	display: block;
	float: left;
	font-weight: normal;
	font-size: 10px;
}
#footer {
	background-color: #333;
	height: 300px;
	clear: both;
	width: 100%;
	float: left;
	padding-top: 25px;
}

#footer .footerContainer {
	width: 996px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 20px;
}
.contentArea .boxHome  {
	float: left;
	width: 100%;
	text-shadow: 1px 1px #FFF;
	margin-top: 20px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCC;
}
.contentArea .boxHome .boxinner {
	float: left;
	width: 225px;
	padding: 10px;
	border-right-width: 1px;
	border-right-style: dashed;
	border-right-color: #CCC;
}
.contentArea .boxHome .boxinner p {
	font-size: 13px;
	line-height: 1.6em;
	text-align: left;
}
.contentArea .boxHome .boxinner h4 {
	float: left;
	width: 100%;
	font-size: 14px;
	color: #666;
	text-align: left;
}
.contentArea .boxHome .boxinner h4 span {
	float: left;
	margin-top: -8px;
	padding-right: 5px;
}
.contentArea .abouBlog .aboutUs p {
	font-size: 13px;
	line-height: 1.6em;
	margin-bottom: 10px;
}
.contentArea .abouBlog {
	text-shadow: 1px 1px #FFF;
	float: left;
	width: 100%;
}
.contentArea .abouBlog .newsBox ul {
	font-size: 13px;
	line-height: 1.6em;
}
.contentArea .abouBlog .newsBox ul li {
	margin-bottom: 5px;
	text-align: left;
}
.contentArea .abouBlog h3     {
	color: #666;
	font-size: 24px;
	font-weight: bold;
}
.contentArea .abouBlog .rightPanal .testimonial h4 {
	color: #666;
}
.contentArea .abouBlog .aboutUs div {
	float: right;
}
.contentArea .abouBlog h3 span  {
	color: #F29330;
}
.AccordionPanelOpen .AccordionPanelContent ul li {
	font-size: 13px;
	color: #666;
	margin-bottom: 5px;
	background-image: url(../images/orange-arrow.png);
	background-repeat: no-repeat;
	background-position: left 5px;
	padding-left: 10px;
}
.AccordionPanelOpen .AccordionPanelContent ul {
	margin-left: 25px;
	line-height: 1.2em;
}
.TabbedPanelsTab strong img {
	float: left;
	padding-right: 5px;
}
.TabbedPanelsContentVisible .features {
	float: left;
	padding: 2%;
	width: 100%;
	background-image: url(../images/contentBg.png);
	border: 1px solid #FFF;
}
.TabbedPanelsContentVisible p img {
	float: left;
	padding-right: 15px;
	padding-bottom: 2px;
}
.contentArea .app-cont p {
	font-size: 13px;
	color: #666;
	line-height: 1.4em;
	margin-bottom: 10px;
}
.contentArea .app-cont {
	padding-left: 20px;
}
.contentArea .app-cont h4 {
	color: #F90;
}

.app-cont ul li  {
	font-size: 13px;
	color: #666;
}
.app-cont ul  {
	margin-left: 25px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.TabbedPanelsContentVisible ul li {
	font-size: 13px;
	color: #666;
	margin-bottom: 10px;
	background-image: url(../images/orange-arrow.png);
	background-repeat: no-repeat;
	background-position: left 8px;
	padding-left: 10px;
}
.divceStragy li a {
	color: #3399CC;
}
.TabbedPanelsContentVisible .tech-partner {
	list-style-type: none;
	background-image: none;
}

.direcors p img {
	padding-top: 10px;
}
.TabbedPanelsContentVisible .direcors {
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #F19230;
	padding-bottom: 15px;
	padding-top: 15px;
}
.direcors h4 a {
	color: #333;
	text-decoration: none;
}
.TabbedPanelsContentVisible .tech-partner li {
	display: inline;
	background-image: none;
}
.TabbedPanelsContentVisible .contact li strong {
	float: left;
	width: 200px;
	font-weight: normal;
}
.TabbedPanelsContentVisible .contact li em {
	float: left;
	font-style: normal;
	width: 300px;
	text-align: left;
}
.contact li em input, textarea {
	width: 200px;
	border: 1px solid #CCC;
	padding: 3px;
}
.TabbedPanelsContentVisible .contact li {
	background-image: none;
	clear: both;
	float: left;
}
.TabbedPanelsContentVisible .contact {
	clear: both;
}
.TabbedPanelsContentVisible h4 {
}
.contact li em .buttons {
	width: 75px;
	background-image: url(../images/content-topbg.png);
	border: 1px solid #999;
	padding-right: 15px;
	padding-left: 15px;
	font-weight: bold;
	background-repeat: repeat-x;
	border-radius:10px;
}
.contentArea .abouBlog .newsBox ul li a {
	float: right;
	padding-top: 15px;
}
.contentContainer {
	background-image: url(../images/contentBg.png);
	background-repeat: repeat-x;
	clear: both;
}
.TabbedPanelsContentVisible form .content tr {
	font-size: 13px;
	font-weight: bold;
	padding-right: 15px;
}
.TabbedPanelsContentVisible form .content {

}

.TabbedPanelsContentVisible table tr td {
	font-size: 13px;
	padding: 5px;
}
.bgcolor {
	background-color: #E9E9E9;
}
.cityHead {
	background-color:#999999;
	font-weight: bold;
	color:#FFFFFF;
}
.subhead {
	background-color:#EBEBEB;
	font-weight: bold;
	color: #666;
}
