@charset "UTF-8";

.CollapsiblePanel {
    margin: 0px;
    padding: 0px;
    border-left: solid 1px #CCC;
    border-right: solid 1px #999;
    border-top: solid 1px #999;
    border-bottom: solid 1px #CCC;
    font-family: メイリオ;
    border-color: #FFFFFF;
}
.CollapsiblePanelTab {
    font: small sans-serif;
    border-bottom: solid 1px #CCC;
    margin: 0px;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    font-family: メイリオ;
    background-image: url('../img/003-002.gif');
    color: #006666;
    border-bottom-color: #FFFFFF;
}
.CollapsiblePanelContent {
    margin: 0px;
    padding: 0px;
    font-family: メイリオ;
    color: #808080;
}

/* An anchor tag can be used inside of a CollapsiblePanelTab so that the
 * keyboard focus ring appears *inside* the tab instead of around the tab.
 * This is an example of how to make the text within the anchor tag look
 * like non-anchor (normal) text.
 */
.CollapsiblePanelTab a {
    color: black;
    text-decoration: none;
    font-family: メイリオ;
    background-image: url('../img/003-003.gif');
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "CollapsiblePanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the CollapsiblePanel.
 */
.CollapsiblePanelOpen .CollapsiblePanelTab {
    font-family: メイリオ;
    background-image: url('../img/003-003.gif');
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "CollapsiblePanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
    font-family: メイリオ;
    background-image: url('../img/003-003.gif');
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * CollapsiblePanel has focus. The "CollapsiblePanelFocused" class is programatically added and removed
 * whenever the CollapsiblePanel gains or loses keyboard focus.
 */
.CollapsiblePanelFocused .CollapsiblePanelTab {
    font-family: メイリオ;
    background-image: url('../img/003-003.gif');
    color: #FFFFFF;
}
