@import url("base.css");
/* game creators link */
#gamecreatorslink img {
	border:solid black 2px;
}

/* social book mark */
.sbm * {vertical-align:bottom;}


article {
	margin:24px;
	border-bottom:dashed 1px #2759d0;
	font-size:12pt;
	clear:both;
}
article>section::after {
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	content:".";
}


article>section>figure {
	position:static;
	clear:left;
	margin:0 8px;
}
/* big screen */
@media screen and (min-width: 1104px){
article>section>figure {float:right;}
}

/* small screen */
@media screen and (max-width: 1103px){
article>section>figure {text-align:center;}
}


/* speach-balloon */
article>section>h3 {
	float:left;
	margin:20px 20px 20px 42px;
	border-radius:5px;
	box-shadow:0px 1px 1px #4c4c4c;
	padding:4px 8px;
	position:relative;
	border:1px #ddd solid;
}
article>section>p:first-of-type {
	clear:left;
}
/* character(CSS sprite) */
article>section>h3::before {
	position:absolute;
	left:-42px;
	width:32px;
	height:32px;
	content:"";
	background: url("../ICON/sprite.png");
}
article>section>h3.shout::before {background-position:-32px;}
article>section>h3.program::before {background-position:-64px;}
article>section>h3.paint::before {background-position:-96px;}
article>section>h3.game::before {background-position:-128px;}
article>section>h3.book::before {background-position:-160px;}
article>section>h3::after{
	content:"";
	position:absolute;
	top:10px;
	left:-17px;
	width:0;
	height:0;
	border-width:4px 8px;
	border-style:solid;
	border-color:transparent;
	border-right-color:#ddd;
}


/* navigation */
header>nav {
	background:linear-gradient( #fff, #fff, #fff, #fff, #eee );
}
footer>nav {
	background:linear-gradient( #eee, #fff, #fff, #fff, #fff );
}

/* tabbed menu */
nav>ul {
	display:inline-block;
	position:relative;
}

nav>ul>li {
	display:inline-block;
	background-color:#eee;
	margin:0;
	border:1px silver solid;
	padding:8px;
}

header>nav>ul {top:6px;}
footer>nav>ul {top:-6px;}
header>nav>ul>li {border-radius:9px 9px 0px 0px;}
footer>nav>ul>li {border-radius:0px 0px 9px 9px;}

nav>ul>li.currentpage {background-color:#fff;}
header>nav>ul>li.currentpage {border-bottom:2px #fff solid;}
footer>nav>ul>li.currentpage {border-top:2px #fff solid;}

/* cascade menu */
nav menu {
	z-index:255;
	border:1px silver solid;
	border-radius:0 0 9px 9px;
	background-color:#fff;
	box-shadow:0 3px 3px #4c4c4c;
	padding-bottom:5px;
}
nav menu>li {
	margin:0;
	padding:2px;
	list-style:none;
}
nav menu a {
	display:block;
	padding:4px;
}

nav menu a:hover {
	background-color:#b3b3b3;
}

nav menu {
	display:none;
	position:absolute;
}

nav li:hover menu {
	display:block;
}