.Accordion div {
	overflow: hidden;
}
.AccordionPanelContent p {
	font-size: 85%;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCCCCC;
	margin-right: 8px;
	margin-left: 16px;
	margin-bottom: 2px;
	margin-top: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 2px;
	padding-right: 0px;
	line-height: 1.4em;
}
.AccordionPanelContent p a {
	display: block;
	padding-right: 12px;
	color: #000000;
	text-decoration: none;
}
.AccordionPanelContent p a:visited {
	color: #000000;
	text-decoration: none;
}
.AccordionPanelContent p a:hover {
	color: #003399;
	text-decoration: none;
}
#basic-menu .AccordionPanelContent p.active {
	background-color: #E8EEFF;
	background-image: url(../images/menu_active_basic.gif);
	background-repeat: no-repeat;
	background-position: right top;
}
#general-menu .AccordionPanelContent p.active {
	background-color: #F2FEE0;
	background-image: url(../images/menu_active_general.gif);
	background-repeat: no-repeat;
	background-position: right top;
}
#doctor-menu .AccordionPanelContent p.active {
	background-color: #FFF9DF;
	background-image: url(../images/menu_active_doctor.gif);
	background-repeat: no-repeat;
	background-position: right top;
}
#basic-menu .AccordionPanelContent p.active-sub {
	padding-left: 4px;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #7EAEFE;
}
#general-menu .AccordionPanelContent p.active-sub {
	padding-left: 4px;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #CEE697;
}
#doctor-menu .AccordionPanelContent p.active-sub {
	padding-left: 4px;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #F8CD85;
}
#doctor-menu .AccordionPanelContent p.active-sub-key {
	padding-left: 14px;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #F8CD85;
}
#doctor-menu .AccordionPanelContent p.nonactive-sub-key {
	padding-left: 14px;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #DBDCDD;
}
.AccordionPanelContent p.sub {
	line-height: 1.4em;
	padding-left: 6px;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #DBDCDD;
}
.AccordionPanelContent p.sub a {
	display: block;
	padding-right: 12px;
	color: #000000;
	text-decoration: none;
}
.AccordionPanelContent p.sub a:visited {
	color: #000000;
	text-decoration: none;
}
.AccordionPanelContent p.sub a:hover {
	color: #003399;
	text-decoration: none;
}
.AccordionPanelContent p.active-sub {
}
.AccordionPanelContent p.active-sub a {
	display: block;
	padding-right: 14px;
	color: #000000;
	text-decoration: none;
}
.AccordionPanelContent p.active-sub a:visited {
	color: #000000;
	text-decoration: none;
}
.AccordionPanelContent p.active-sub a:hover {
	color: #003399;
	text-decoration: none;
}
.AccordionPanelContent p.key {
	padding-left: 12px;
	background-image:url(../images/menu_key.gif);
	background-repeat: no-repeat;
	background-position: 0px 1px;
}
.AccordionPanelContent p.sub-key {
	padding-left: 6px;
	background-image:url(../images/menu_key.gif);
	background-repeat: no-repeat;
	background-position: 6px 1px;
}
.AccordionPanelContent p.active-key {
	padding-left: 12px;
	background-image:url(../images/menu_activekey.gif);
	background-repeat: no-repeat;
	background-position: 0px 1px;
/*
	font-weight:bold
*/
}
#basic-menu .AccordionPanelContent p.active-key {
	background-color: #E8EEFF;
	padding-left: 12px;
	background-image:url(../images/menu_activekey_basic.gif);
	background-repeat: no-repeat;
	background-position: 0px 1px;
}
#general-menu .AccordionPanelContent p.active-key {
	background-color: #F2FEE0;
	padding-left: 12px;
	background-image:url(../images/menu_activekey_general.gif);
	background-repeat: no-repeat;
	background-position: 0px 1px;
}
#doctor-menu .AccordionPanelContent p.active-key {
	background-color: #FFF9DF;
	padding-left: 12px;
	background-image:url(../images/menu_activekey_doctor.gif);
	background-repeat: no-repeat;
	background-position: 0px 1px;
}
.Accordion {
	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;
}

/* 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 {
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}
.AccordionPanelTab p {
	padding-top: 3px;
	padding-bottom: 3px;
	line-height: 1.5em;
}

/* 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-bottom: 8px;
	background-image: url(../images/submenu_bg.gif);
	background-repeat: repeat-y;
}
.AccordionPanelContent .AccordionPanelContent {
	margin-bottom: 0px;
}


/* 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 {
}

/* 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 {
}
.AccordionPanelOpen .AccordionPanelTabHover {
}

/* 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 {
}


/*
#menu01-1 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu01-1-1 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu01-1-2 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu01-1-3 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu01-1-4 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu01-2 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu01-3 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu01-3-1 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu01-3-2 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu01-3-3 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 3px 0px;
	padding-left: 22px;
}
#menu01-4 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu01-4-1 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu01-4-2 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu01-5 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu01-6 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu02-1 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu02-2 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu02-2-1 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu02-2-2 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu02-2-3 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu02-2-4 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu02-2-5 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu02-3 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu02-4 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu02-5 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-1 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-2 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-2-1 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-2-2 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-2-3 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-2-4 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-3 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-3-1 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-3-2 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-3-3 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-3-4 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-3-5 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-4 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-4-1 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-4-2 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-4-3 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-4-4 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-4-5 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-5 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-6 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu03-7 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu91-1 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu91-2 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu91-3 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu91-3-1 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu91-3-2 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu91-3-3 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu91-4 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}
#menu91-5 {
	background-image: url(../images/icon_new.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 22px;
}

*/
