@charset "UTF-8";



/* SpryAccordion.css - version 0.4 - Spry Pre-Release 1.6 */



/* 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 			{ overflow: hidden; height: 450px; }
.AccordionSports 	{ overflow: hidden; height: 552px;}
.AccordionBusiness 	{ overflow: hidden; height: 448px;}
.AccordionMytown 	{ overflow: hidden; height: 430px;}
#container 		{ width: 253px; overflow:hidden; }

#underlap 		{ position: relative; overflow:hidden; }

/* 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; outline:none;}

/* 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.

 *

 * NOTE:

 * This rule uses -moz-user-select and -khtml-user-select properties to prevent the

 * user from selecting the text in the AccordionPanelTab. These are proprietary browser

 * properties that only work in Mozilla based browsers (like FireFox) and KHTML based

 * browsers (like Safari), so they will not pass W3C validation. If you want your documents to

 * validate, and don't care if the user can select the text within an AccordionPanelTab,

 * you can safely remove those properties without affecting the functionality of the widget.

 */

.AccordionPanelTab { height: 27px; background:url(/images/acrdn-barL-off.gif) no-repeat; cursor:pointer; -moz-user-select: none;
-khtml-user-select: none; }
.AccordionPanelTab h1 { font-size:12px; color:#FFFFFF; padding: 6px 0 0 24px; float:left;}
.acrdnRt { height:27px; width:251px; background:url(/images/acrdn-barR-off.gif) right no-repeat; float:right;}

.AccordionPanelTab,.AccordionPanelTabHover, .AccordionFocused {width: 252px; outline:none;}

/* 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 { height: 313px; padding: 0; margin: 0; background:url(/images/acrdn-openBackLonger.gif) no-repeat; 
overflow: hidden; position:relative; }

.AccordionPanelContentSports { height: 388px; padding: 0; margin: 0; background:url(/images/acrdn-openBackLonger.gif) no-repeat; 
overflow: hidden; position:relative; }

.AccordionPanelContentBusiness { height: 311px; padding: 0; margin: 0; background:url(/images/acrdn-openBackLonger.gif) no-repeat; 
overflow: hidden; position:relative; }

.AccordionPanelContentMytown { height: 410px; padding: 0; margin: 0; background:url(/images/acrdn-openBackLonger.gif) no-repeat; 
overflow: hidden; position:relative; }

.AccordionPanelContent9 { height: 210px; padding: 0; margin: 0; background:url(/images/acrdn-openBackLong.gif) no-repeat; 
overflow: hidden; position:relative; }

.AccordionPanelContent8 { height: 237px; padding: 0; margin: 0; background:url(/images/acrdn-openBackLong.gif) no-repeat; 
overflow: hidden; position:relative; }

.AccordionPanelContent7{ height: 267px; padding: 0; margin: 0; background:url(/images/acrdn-openBack5.gif) no-repeat; 
overflow: hidden; position:relative;  }

.AccordionPanelContent6 { height: 295px; padding: 0; margin: 0; background:url(/images/acrdn-openBack5.gif) no-repeat; 
overflow: hidden; position:relative;  }

.AccordionPanelContent5 { height: 315px; padding: 0; margin: 0; background:url(/images/acrdn-openBack5.gif) no-repeat; 
overflow: hidden; position:relative;  }



.contentBox p, .contentBoxOn p  { padding:4px 0 4px 10px; background: url(/images/ico-carrot-Grey1.gif) 3px 9px no-repeat;}

.contentBox    { width:235px; background:url(/images/ico-dot-grey1.gif) bottom repeat-x; margin:0 0 0 11px; padding:0;}

.contentBoxOn    { width:235px; background: #FEDD31 url(/images/ico-dot-grey1.gif) bottom repeat-x; margin:0 0 0 7px; padding:0 2px 0 4px;}

.contentBox p a:link, .contentBoxOn p a:link    { color:#3f3f3f; text-decoration:none;}
.contentBox p a:visited, .contentBoxOn p a:visited { color:#3f3f3f; text-decoration:none;}
.contentBox p a:hover, .contentBoxOn p a:hover   { color:#002881; text-decoration:underline; cursor:pointer;}
.contentBox p a:active, .contentBoxOn p a:active  { color:#002881; text-decoration:underline; cursor:pointer;}


/* 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-color: #EEEEEE;

}*/


/* 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.

 */
.AccordCursor	{ cursor:pointer; }
.AccordionPanelTabHover { height: 27px; background:url(/images/acrdn-barL-on.gif) no-repeat; }

.AccordionPanelOpen .AccordionPanelTabHover { background:url(/images/acrdn-barL-off.gif) no-repeat; }

/* 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 { height: 27px; background:url(/images/acrdn-barL-off.gif) no-repeat; }

/* 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 { }

.dynamicscrollcontainer
{
	position:relative;
	 width:240px; 
	 height:147px; 
	 overflow:hidden;
}
.dynamicscrollcontainer9
{
	position:relative;
	 width:240px; 
	 height:175px; 
	 overflow:hidden;
}
.dynamicscrollcontainer8
{
	position:relative;
	 width:240px; 
	 height:199px; 
	 overflow:hidden;
}
.dynamicscrollcontainer7
{
	position:relative;
	 width:240px; 
	 height:235px; 
	 overflow:hidden;
}

.dynamicscrollcontainer6
{
	position:relative;
	 width:240px; 
	 height:265px; 
	 overflow:hidden;
}
.dynamicscrollcontainer5
{
	position:relative;
	 width:240px; 
	 height:280px; 
	 overflow:hidden;
}


/*---------added on --------30-10-08-------------*/
.contentBoxPlus p { padding:4px 0 4px 16px; }

.contentBoxPlus    { width:232px; background:url(/images/ico-dot-grey1.gif) bottom repeat-x; margin:0 0 0 10px; padding:0;}
	
.contentBoxPlus p a:link    { color:#3f3f3f; text-decoration:none;}
.contentBoxPlus p a:visited { color:#3f3f3f; text-decoration:none;}
.contentBoxPlus p a:hover   { color:#002881; text-decoration:underline; cursor:pointer;}
.contentBoxPlus p a:active  { color:#002881; text-decoration:underline; cursor:pointer;}

.dotStyle				{ padding:3px 0 0 0; clear:both; background:url(/images/ico-dot-grey1.gif) repeat-x; margin-left:5px; }
.accordionSubContent 	{ padding:4px 0 0 15px; background: url(/images/ico-carrot-Grey1.gif) 7px 9px no-repeat; }
.showBtn		{ float:left; padding-top:7px; }
.hideBtn		{ display:none; float:left; padding-top:7px; }
.hdnContent		{ display:none; margin-left:10px;} 

.contentBoxPlus1 p 		{ padding:4px 0 4px 16px; }
.contentBoxPlus1		{ background:#D1D1D1 url(/images/ico-dot-grey1.gif) bottom repeat-x;margin:0 0 0 10px; position:relative; width:232px;}
.contentBoxPlus1 p a:link    { color:#3f3f3f; text-decoration:none;}
.contentBoxPlus1 p a:visited { color:#3f3f3f; text-decoration:none;}
.contentBoxPlus1 p a:hover   { color:#002881; text-decoration:underline; cursor:pointer;}
.contentBoxPlus1 p a:active  { color:#002881; text-decoration:underline; cursor:pointer;}

.scrollerContainer			{ position:relative; width:245px; height:293px; overflow:hidden; }
.scrollerContainerSports 	{ position:relative; width:245px; height:368px; overflow:hidden; }
.scrollerContainerBusiness 	{ position:relative; width:245px; height:291px; overflow:hidden; }
.scrollerContainerMytown 	{ position:relative; width:245px; height:380px; overflow:hidden; }

/*-----------ends here------30-10-08----------*/
