/*common*/


/*HTML*/

body {
    background: #000;

}

p {
    font-size: 1.15em;
    line-height: 1.8em;
    color: #fff;
    font-weight: normal;
}
a{
	color:#f00;
	text-decoration: none;
}

a:link{
    color:#4DA7DE;
    text-decoration: none;
}  
a:visited{
    color:#f00;
    text-decoration: none;
} 
a:hover{
	color:#f00;
	text-decoration: none;
}
a:active{
    color:#4DA7DE;
    text-decoration: none;
}

.clear{
	clear: both;
}
/** Fonts Style **/

.title01 {
    font-size: 2em;
}

.subtitle01 {
    font-size: 3em;
    line-height: 1.6em;
}

.h3 {
    color: #ffffff;
    font-size: 1.3em;
    line-height: 1.75em;
    font-weight: normal;
}

.paddingTop1 {
    padding-top: 1%;
}

.paddingTop2 {
    padding-top: 2%;
}

.paddingTop3 {
    padding-top: 3%;
}

.paddingTop5 {
    padding-top: 5%;
}

.paddingTop10 {
    padding-top: 10%;
}

.paddingTop15 {
    padding-top: 15%;
}

.paddingTop20 {
    padding-top: 20%;
}

.marginTop8{
	margin-top: 6%;
}
/*color*/

.white {
    color: #FFF;
}

.red {
    color: #ff0000;
}

.black {
    color: #000;
}
.green{
	color:#42b000;
}

.numTitle {
    font-size: 1.5em;
    line-height: 1.5em;
    color: #fff;
}

.eventTitle {
    font-size: 1.75em;
    line-height: 1.75em;
    color: #f00;
}


/***Media Query***/


/*==========  Mobile First Method  ==========*/


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) {}


/* Extra Small Devices, Phones */

@media only screen and (min-width: 480px) {}


/* Small Devices, Tablets */

@media only screen and (min-width: 768px) {}


/* Medium Devices, Desktops */

@media only screen and (min-width: 992px) {}


/* Large Devices, Wide Screens */

@media only screen and (min-width: 1200px) {}


/*==========  Non-Mobile First Method  ==========*/


/* Large Devices, Wide Screens */

@media only screen and (max-width: 1200px) {}


/* Medium Devices, Desktops */

@media only screen and (max-width: 992px) {}


/* Small Devices, Tablets */

@media only screen and (max-width: 768px) {
    .subtitle01 {
        font-size: 2em;
        line-height: 1.6em;
    }
}


/* Extra Small Devices, Phones */

@media only screen and (max-width: 480px) {}


/* Custom, iPhone Retina */

@media only screen and (max-width: 320px) {}