.titvideo {
color: #ff0000;
font-size: 18pt;
text-align: center;
}

.noprint
{display: none;}
.btn_blue{ 
font-family: Arial, Helvetica, sans-serif; 
font-size: 18px; 
font-weight: bold; 
text-decoration: none;
color: #FFFFFF; 
cursor: pointer;
padding: 3px 15px 3px 15px;
background: #0066CC; 
border: 2px solid #000000;
-moz-border-radius: 15px; 
-webkit-border-radius: 15px; 
border-radius: 15px 
}
.btn_bluexcel{ 
font-family: Arial, Helvetica, sans-serif; 
font-size: 18px; 
font-weight: bold; 
text-decoration: none;
color: #FFFFFF; 
cursor: pointer;
padding: 3px 15px 3px 15px;
background: #48b5f2; 
border: 2px solid #000000;
-moz-border-radius: 15px; 
-webkit-border-radius: 15px; 
border-radius: 15px 
}
.btn_green{ 
font-family: Arial, Helvetica, sans-serif; 
font-size: 18px; 
font-weight: bold; 
text-decoration: none;
color: #ff0000; 
cursor: pointer;
padding: 3px 15px 3px 15px;
background: #00FF66; 
border: 2px solid #000000;
-moz-border-radius: 15px; 
-webkit-border-radius: 15px; 
border-radius: 15px 
}
.btn_red{ 
font-family: Arial, Helvetica, sans-serif; 
font-size: 18px; 
font-weight: bold; 
text-decoration: none;
color: #000000; 
cursor: pointer;
padding: 3px 15px 3px 15px;
background: #FF3333; 
border: 2px solid #000000;
-moz-border-radius: 15px; 
-webkit-border-radius: 15px; 
border-radius: 15px 
}
.btn_yellow{ 
font-family: Arial, Helvetica, sans-serif; 
font-size: 18px; 
font-weight: bold; 
text-decoration: none;
color: #000000; 
cursor: pointer;
padding: 3px 15px 3px 15px;
background: #FFFF00 !important;
border: 2px solid #000000;
-moz-border-radius: 15px; 
-webkit-border-radius: 15px; 
border-radius: 15px 
}

.button{
	font:20px Calibri, Arial, sans-serif;
	/* A semi-transparent text shadow */
	text-shadow:1px 1px 0 rgba(255,255,255,0.4);
	/* Overriding the default underline styling of the links */
	text-decoration:none !important;
	white-space:nowrap;
	display:inline-block;
	vertical-align:baseline;
	position:relative;
	cursor:pointer;
	padding:10px 20px;
	background-repeat:no-repeat;

	/* The following two rules are fallbacks, in case
	   the browser does not support multiple backgrounds. */
	background-position:bottom left;
	background-image:url('button_bg.png');
	
	/* Multiple backgrounds version. The background images
	   are defined individually in color classes */
	background-position:bottom left, top right, 0 0, 0 0;
	background-clip:border-box;
	
	/* Applying a default border raidus of 8px */
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:8px;
	
	/* A 1px highlight inside of the button */
	-moz-box-shadow:0 0 1px #fff inset;
	-webkit-box-shadow:0 0 1px #fff inset;
	box-shadow:0 0 1px #fff inset;
	
	/* Animating the background positions with CSS3 */
	/* Currently works only in Safari/Chrome */
	-webkit-transition:background-position 1s;
	-moz-transition:background-position 1s;
	transition:background-position 1s;
}

.button:hover{
	/* The first rule is a fallback, in case the browser
	   does not support multiple backgrounds
	*/
	background-position:top left;
	background-position:top left, bottom right, 0 0, 0 0;
}

.button:active{
	/* Moving the button 1px to the bottom when clicked */
	bottom:-1px;
}

/* The three buttons sizes */
.button.big		{ font-size:30px;}
.button.medium	{ font-size:18px;}
.button.small	{ font-size:12px; background-color:red; color:white; padding: 1px 1px;}

/* A more rounded button */
.button.rounded{
	-moz-border-radius:4em;
	-webkit-border-radius:4em;
	border-radius:4em;
}