@charset "utf-8";
/* CSS Document */

<style type="text/css">
/* this is a CSS answer to fix the hover/focus '~' and hover/focus '+' problem in safari and chrome */
/* tabindex="1" in the link code to fix the 'focus persist' problem in safari and chrome */
html {-webkit-animation: safariSelectorFix infinite 1s;}
@-webkit-keyframes safariSelectorFix {
0% {zoom:1;} 
100% {zoom:1;}
}

/* for Internet Explorer to force a menu refresh after :active + ul */

#showMe p.showMe a,
html {behavior:url(cssplay19/trigger.htc)}

p.showMe {
	font:normal 12px/20px arial, sans-serif;
	color:#666;
	width:300px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: 0px;
	background-color: #FFF;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
}
p.showMe a.more, p.showMe a.less {color:#c00; font-weight:bold; text-decoration:none; outline:0;}
p.showMe a.more + a.less {display:none;}
p.showMe span {display:none;}

p.showMe a.more:active {*display:none;}
p.showMe a.more:active ~ span {*display:inline;}
p.showMe a.more:active + a.less {*display:inline;}
p.showMe a.less:active {*display:none;}

p.showMe a.more:focus {display:none;}
p.showMe a.more:focus ~ span {display:inline;}
p.showMe a.more:focus + a.less {display:inline;}
p.showMe a.less:focus {display:none;}

p.showMe span:hover {display:inline;}
</style>
