@import url(https://fonts.googleapis.com/css?family=Roboto:400,300italic,300,500,400italic,500italic,700);

body {margin:0px; font-family: 'Roboto', sans-serif; font-size:13px; line-height:18px; /*background:url(../images/body-texture-bg.jpg);*/ background-color: #F35D10; padding:0px;}
#wrapper { width:1010px; margin:0px auto; padding:5px; background:white; -webkit-box-shadow: 0px 2px 5px 0px rgba(212,212,212,1);
-moz-box-shadow: 0px 2px 5px 0px rgba(212,212,212,1);
box-shadow: 0px 2px 5px 0px rgba(212,212,212,1);}
p{ text-align:justify;}
h1{font-size:24px;}
h2{ font-size:18px;}

input {border:#CCCCCC 1px solid; border-radius:4px; }
textarea {border:#CCCCCC 1px solid; border-radius:4px; }
select {border:#CCCCCC 1px solid; border-radius:4px; }

.shine {
	position: relative;
	display: inline-block;
}

.shineme {
	width:100%;
	height: 100%;
    -webkit-animation-name: shineAnimation;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(.12,.89,.98,.47);
    position: absolute;
    top: 0;
}

@-webkit-keyframes shineAnimation{
    from {
        background-repeat:no-repeat;
        background-image:-webkit-linear-gradient(
            top left,
            rgba(255, 255, 255, 0.0) 0%,
            rgba(255, 255, 255, 0.4) 42%,
            rgba(255, 255, 255, 0.6) 47%,
            rgba(255, 255, 255, 1.0) 49%,
            rgba(255, 255, 255, 1.0) 50%,
            rgba(255, 255, 255, 1.0) 51%,
            rgba(255, 255, 255, 0.6) 54%,
            rgba(255, 255, 255, 0.4) 58%,
            rgba(255, 255, 255, 0.0) 100%
        );
        background-position:-250px -250px;
        background-size: 380px 380px
    }
    to {
        background-repeat:no-repeat;
        background-position:250px 250px;
    }
}

.drop_menu {
	background:#F35D10;
	padding:0;
	margin:0;
	list-style-type:none;
	min-height:35px; height:auto;
}
.drop_menu li { float:left; border-right:#FF0000 2px solid; }
.drop_menu li a {
	padding:7px 49px;
	display:block;
	color:#fff;
	font-weight:bold;
	text-decoration:none;
	font-family: 'Roboto', sans-serif;
}

/* Submenu */
.drop_menu ul {
	position:absolute;
	left:-9999px;
	top:-9999px;
	list-style-type:none;
}
.drop_menu li:hover { position:relative; background:#DF0B0B; }
.drop_menu li:hover ul {
	left:0px;
	top:30px;
	background:#DF0B0B;
	padding:0px;
	z-index:9999;
}

.drop_menu li:hover ul li a {
	padding:5px;
	display:block;
	width:230px;
	text-indent:15px;
	background-color:#DF0B0B;
}
.drop_menu li:hover ul li a:hover { background:#F35D10; }

.hd {font-family: 'Roboto', sans-serif; font-size:14px; font-weight:bold; text-decoration:none; padding-left:5px; color:#fff;}
.leftnav-links {font-family: 'Roboto', sans-serif; font-size:14px; color:#000; text-decoration:none;}
.leftnav-links p{font-family: 'Roboto', sans-serif; font-size:14px; color:#000; text-decoration:none; padding:4px 0px; border-bottom:dashed #CCCCCC 1px; margin-top:-10px;}
.leftnav-links p a{font-family: 'Roboto', sans-serif; font-size:14px; color:#000; text-decoration:none; padding:4px 0px; }
.leftnav-links p a:hover{font-family: 'Roboto', sans-serif; font-size:14px; color:#F35D10; text-decoration:none; padding:4px 0px;}

.orange { color:#F35D10;}
.number { font-size:18px; text-decoration:blink;}



.footer {font-size:13px; text-decoration:none; padding:5px; color:#FFFFFF;}
.footer a{font-size:13px; text-decoration:none; padding:5px; color:#FFFFFF;}
.footer a:hover{font-size:13px; text-decoration:underline; padding:5px; color:#FFFFF; border-radius:5px;}


/* Scroller Box */
#scroller_container1, #scroller_container2, #scroller_container3, #scroller_container4 {
 width: 600px;
 height: 60px;
 overflow: hidden;
}

/* CSS Hack Safari */
#dummy {;# }

#scroller_container1, #scroller_container2, #scroller_container3, #scroller_container4 {
 overflow: auto;
}
/* Scoller Box */


.blink_text { font-size:18px;
-webkit-animation-name: blinker;
-webkit-animation-duration: 1s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;

-moz-animation-name: blinker;
-moz-animation-duration: 1s;
-moz-animation-timing-function: linear;
-moz-animation-iteration-count: infinite;

 animation-name: blinker;
 animation-duration: 1s;
 animation-timing-function: linear;
 animation-iteration-count: infinite;

 color: #F35D10;
}

@-moz-keyframes blinker {  
 0% { opacity: 1.0; }
 50% { opacity: 0.0; }
 100% { opacity: 1.0; }
 }

@-webkit-keyframes blinker {  
 0% { opacity: 1.0; }
 50% { opacity: 0.0; }
 100% { opacity: 1.0; }
 }

@keyframes blinker {  
 0% { opacity: 1.0; }
 50% { opacity: 0.0; }
 100% { opacity: 1.0; }
 }