/*
	ncvp_live_misc.css
*/

/* Sitemap */

div#nlm_sitemap ul > li {
	margin-left: 50px;
}

div#nlm_sitemap a {
	color: #00f;
}

/* Text styles */

/* Useful for highlighting debugging statements */
.ncvp-dbg {
	background-color: #f00;
	color: #fff;
	font-style: oblique;
	font-size: 80%;
}

/* Not red, 'cos I can't see that */
.ncvp-rbric {
	background-color: #faa;
	border-radius: 15px;
	padding: 10px 20px;
	font-family: "Comic Sans MS", "Comic Neue", sans-serif;
	font-size: 150%;
	line-height: 150%;
	width: 60%;
	margin: auto;
	float: center;
}

/* First needed in some CAS rubrics */
div.ncvp-rbric ul { 
	list-style-position: inside; 
	margin: 0;
}

/* Developers rubric */
.devr {
	background-color: #ff0;
	color: #00f;
	font-style: normal;
	font-size: 100%;
	border-radius: 5px;
	font-family: "Comic Sans MS", "Comic Sans, cursive";
}

/* Blinking */

.ncvp-blnk {
/*	animation: ncvp-blnk-rule 1s infinite alternate;*/
	animation: ncvp-blnk-rule-2 1s step-end infinite;
}

/* Rather too subtle for CAS members */
@keyframes ncvp-blnk-rule {
	from {background-color:#000; color:#fff} 
	to {background-color:#fff; color:#000}
}

/* Should be visible */
@keyframes ncvp-blnk-rule-2 {
	0% {background-color:#000; color:#fff; border-radius: 5px; padding: 0 5px} 
	50% {background-color:#fff; color:#000}
}

