html, button, input, select, textarea {
	color: #222;
}
body {
	font-size: 1em;
	line-height: 1.4;
	background-image: url(../img/bg.png);
//	background-image: url(../img/romance_back.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-color: #464646;
	font-family: "Rounded Mplus 1c";
}

@media screen and (max-width: 480px) {
	body {
		background-repeat: repeat-y;
		background-attachment: fixed;
		background-size: contain;
	}
	.container{
		margin-left:27px;
	}
}

.loadingWrap {
 width: 100%;
 height: 100%;
 background: #fff;
 position: relative;
 top: 0;
 left: 0;
 z-index: 9999;
}

.loadingWrap img {
 position: absolute;
 top: 50%;
 left: 50%;
 margin: -69px 0 0 -69px;
 width: auto;
}

@media screen and (max-width: 480px) {
	.loadingWrap img {
		 position: absolute;
		 top: 0;
		 left: 0;
		 right: 0;
		 bottom: 0;
		 width: 10%;
		 margin: auto;
	}
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
 background: #f2c2c9;
 color: #a4003a;
 text-shadow: none;
}
::selection {
	background: #16a085;
	color: #a4003a;
	text-shadow: none;
}
/*
 * A better looking default horizontal rule
 */

hr {
	display: block;
	height: 1px;
	border: 0;
	margin: 2.5em 0;
	padding: 0;
	background-image: -webkit-linear-gradient(left, #fff, #ccc, #fff);
	background-image: -moz-linear-gradient(left, #fff, #ccc, #fff);
	background-image: -ms-linear-gradient(left, #fff, #ccc, #fff);
	background-image: -o-linear-gradient(left, #fff, #ccc, #fff);
	width: 50%;
	left: 25%;
	position: relative;
	border: none;
}

@media screen and (max-width: 480px) {
	hr {
		margin: 1em 0;	
	}
}

img {
	vertical-align: middle;
}
/*
 * Allow only vertical resizing of textareas.
 */

textarea {
	resize: vertical;
}
/* ==========================================================================
   General styles
   ========================================================================== */

html, body {
	height: 100%;
}
body {
//	font-family: "Lato";
	font-weight: 300;
	font-size: 16px;
	color: #555;
	-webkit-font-smoothing: antialiased;
	-webkit-overflow-scrolling: touch;
}
.col-md-4 {
	padding-bottom: 20px;
}
.row {
	margin-right: 0px;
	margin-left: -15px;
}
.modal-header {
	background: #ffbf00;
}
.modal-header h4 {
	color: white;
	font-weight: 700;
	letter-spacing: 1px;
}
.modal-footer {
	background: #2b2b2b;
}
.navbar-default {
	border-color: transparent;
	background-color: #ffffff;
}
.navbar-inverse .navbar-brand {
	font-weight: 500;
	font-size: 20px;
}
.navbar-brand {
	font-weight: bold;
	font-size: 20px;
}
.navbar-toggle {
	border-color: transparent;
	border: 0px solid transparent;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
	background-color: #cccccc;
	color: white;
}

a img {
	background: white;
}
.odd a img {
	background: #f5f5f5;
}
/* Titles */
h1, h2, h3, h4, h5, h6 {
	font-family: "Raleway";
	font-weight: 200;
	color: #333;
}
h2 {
	font-size: 36px;
	color: #777;
}
h3 {
	font-size: 26px;
}
/* Paragraph & Typographic */
p {
	line-height: 28px;
	margin-bottom: 20px;
}
p.large {
	font-size: 20px;
	margin-bottom: 50px;
}
.centered {
	text-align: center;
}
strong {
	font-weight: 700;
}
em {
	font-weight: 300;
}
pre {
	background: #ebebeb;
	border: none;
	font-family: "Monaco";
	font-size: 16px;
	color: #666;
	padding: 20px;
	line-height: 28px;
}
small {
	font-size: 12px;
}
blockquote, blockquote p {
	line-height: 28px;
	color: #999;
	font-weight: 300;
	font-style: italic;
}
blockquote {
	position: relative;
	margin: 0 0 40px -30px;
	padding-left: 30px;
	border-left: 5px solid #3498db;
}
blockquote cite {
	position: absolute;
	bottom: -25px;
	right: 0;
	font-size: 12px;
	font-style: italic;
	color: #333;
	font-weight: 300;
}
blockquote cite:before {
	content: "-- "
}
/* Images */
.overflow-image {
	margin-top: -65px;
}
/* Links */
a {
	color: #4abcc5;
	word-wrap: break-word;
	-webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
	-moz-transition: color 0.1s ease-in, background 0.1s ease-in;
	-ms-transition: color 0.1s ease-in, background 0.1s ease-in;
	-o-transition: color 0.1s ease-in, background 0.1s ease-in;
	transition: color 0.1s ease-in, background 0.1s ease-in;
}
a:hover, a:focus {
	color: #c0392b;
	text-decoration: none;
	outline: 0;
}
a:before, a:after {
	-webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
	-moz-transition: color 0.1s ease-in, background 0.1s ease-in;
	-ms-transition: color 0.1s ease-in, background 0.1s ease-in;
	-o-transition: color 0.1s ease-in, background 0.1s ease-in;
	transition: color 0.1s ease-in, background 0.1s ease-in;
}
/* ==========================================================================
   Wrap Sections
   ========================================================================== */

#top {
	margin-top: -50px;
	padding-top: 120px;
	text-align: center;
	min-height: 100%;
	width: 100%;
	background-color:rgba(0,0,0,0.6);
}

#top h3 {
	color: #ffffff;
	text-align: center;
	letter-spacing: 2px;
	line-height: 1.3em;
}

#top h4 {
	color: #ffffff;
}
#top h5 {
	color: #ffffff;
}
#top p {
	color: #fff;
	font-weight: 300;
	text-align: center;
	letter-spacing: 1px;
	font-size: 1em;
}

#top p img{
	box-shadow: -5px -5px 20px #3da8ae;
	width:60px;
}

#top .jacket {
	margin-top: 50px;
	margin-bottom: 10px;
	width:300px;
	text-shadow: 0px 20px 7px #3da8ae;
	box-shadow: -5px -5px 20px #3da8ae;
}

#top .feature {
	margin-bottom: 10px;
	width:60%;
	text-shadow: 0px 20px 7px #3da8ae;
	box-shadow: -5px -5px 20px #3da8ae;
}

#top .infomation {
	margin-bottom: 10px;
	letter-spacing: 2px;
	font-size: 14px;
	text-align: left;
	color:#FFFFFF;
}

#top .floatpc{
  float:right;
}

#top .mv{
	width:60vw;
	height:30vw;
}
#top .mv_half{
	margin-top: 50px;
	margin-bottom: 10px;
	width:30vw;
	height:18vw;
}

#top .dir {
	display:block;
	color: #fff;
	font-size: 12px;
	font-weight: 200;
	text-align: center;
	letter-spacing: 1px;
	margin-top: -10px;
}

@media screen and (max-width: 480px) {
	#top {
		background-color:rgba(0,0,0,0.8);
	}
	#top .jacket { margin-top: 30px; }
	#top .feature {
		width:100%;
	}
	#top .mv{
		width:80vw;
		height:40vw;
		margin-top: 30px;
	}
	#top .mv_half{
		width:80vw;
		height:40vw;
		margin-top: 30px;
	}
	#top .dir {
	display:block;
		color: #fff;
		font-size: 10px;
		font-weight: 200;
		text-align: center;
		letter-spacing: 1px;
		margin-top: -10px;
	}

}


#top .btn {
	font-weight: 500;
	font-size: 20px;
	margin: 20px 0;
	background-color: #ffbf00;
	color: #fff;
	text-shadow: 0 0 4px #bf9004;
	box-shadow: -5px -5px 20px #3da8ae;
	border: 0;
}
#top .btn:hover, #top .btn:focus {
	background-color: #e9af03;
	outline: 0px;
}

#recent {
	padding: 60px 0;
	text-align: center;
//	min-height: 100%;
	width: 100%;
	background-color:rgba(0,0,0,0.6);
}

#recent h3 {
	color: #CCCCCC;
	text-align: center;
	letter-spacing: 2px;
	line-height: 1.3em;
}

#recent li {
	text-align: left;
	margin: 5px 0px 5px 20px ;
	color: #EEEEEE;
	list-style:none;
}

@media screen and (max-width: 480px) {
	#recent li {
		margin: 10px 0px;
		font-size: 1.1em;
	}
}

#about {
	background: #fff;
	padding: 60px 0;
	background-color:rgba(255,255,255,0.92);
}
#about img {
	margin-top: 65px;
}
#about p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 20px;
}

#disco {
	background: #f5f5f5;
	padding: 60px 0;
	text-align: center;
	background-color:rgba(225,225,225,0.9);
}
#disco .fa {
	color: #ffbf00;
}
#disco p {
	text-align: center;
}

.rclink {
	box-shadow: -5px -5px 20px #3da8ae;
	max-width:60px;
	max-height:30px;
}

#disco .jacket {
	width: 90%;
}

#disco .btn {
//	font-weight: 500;
	font-size: 14px;
	margin: 10px 0;
	background-color: #ffbf00;
	color: #fff;
	text-shadow: 0 0 4px #bf9004;
	box-shadow: -5px -5px 20px #3da8ae;
	border: 0;
}

#video {
	background: #fff;
	padding: 60px 0;
	text-align: center;
	background-color:rgba(225,225,225,0.6);
}
#video h2 {
	color: #222222;
}
#video .fa {
	color: #ffbf00;
}
#video p {
	text-align: center;
}

#video .btn {
	font-weight: 500;
	font-size: 20px;
	margin: 20px 0;
	background-color: #ffbf00;
	color: #fff;
	text-shadow: 0 0 4px #bf9004;
	box-shadow: -5px -5px 20px #3da8ae;
	border: 0;
}

#video .btn:hover, #top .btn:focus {
	background-color: #e9af03;
	outline: 0px;
}

@media screen and (max-width: 480px) {
	#video iframe {
		margin:10px 0px;
	}
}

#gallery {
	background: #f5f5f5;
	padding: 60px 0;
	text-align: center;
	background-color:rgba(225,225,225,0.9);
}
#gallery .fa {
	color: #ffbf00;
}
#gallery p {
	text-align: center;
	font-size: 0.9em;
}

#gallery .btn {
	font-weight: 500;
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 20px;
	background-color: #5882FA;
	color: #fff;
	border: 0;
}
#gallery .btn:hover {
	background-color: #2E64FE;
	outline: 0px;
}


#live {
	background: #fff;
	padding: 60px 0;
	background-color:rgba(255,255,255,0.93);
}

#live H3 {
	font-size: 20px;
	font-weight:bold;
}

#live H4 {
	padding-top: 10px;
}
	
#live p {
	line-height: 1.5em;
	margin-bottom: 10px;
}

#live .btn {
	font-weight: 500;
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 20px;
	background-color: #ffbf00;
	color: #fff;
	border: 0;
}
#live .btn:hover {
	background-color: #e9af03;
	outline: 0px;
}

.gallery_container {
	width:70%;
	margin:auto;
}

@media screen and (max-width: 480px) {
	.gallery_container {
		width:100%;
		margin:auto;
	}
}

#ticket {
	background: #f5f5f5;
	padding: 60px 0;
	text-align: center;
}
#ticket .form {
	padding: 30px 0;
}
#ticket .fa {
	color: #ffbf00;
	margin-bottom: 10px;
}
#ticket .btn {
	font-weight: 500;
	font-size: 18px;
	margin-top: 50px;
	background-color: #ffbf00;
	color: #fff;
	border: 0;
}
#ticket .btn:hover, #contact .btn:focus {
	background-color: #e9af03;
	outline: 0px;
}

#greywrap {
	background: #f5f5f5;
	margin-top: 0px;
	padding: 50px 0;
	border-bottom: 1px solid #eee;
	text-align: center;
}
#greywrap .btn {
	font-family: "Raleway";
	font-weight: 300;
	font-size: 20px;
	margin: 0 25px;
	background-color: #fff;
	border-color: #e2e2e2;
	color: #888;
	border-bottom: 0;
	letter-spacing: 1px;
}
#greywrap .btn:hover, #greywrap .btn:focus {
	margin: 0 25px;
	background-color: #fff;
	border-color: #a5cdd5;
	border-bottom: 0;
	outline: 0px;
	color: #a5cdd5;
}
#greywrap h2 {
	font-size: 30px;
}
#greywrap .callout {
	margin-bottom: 20px;
}
#greywrap p {
	font-size: 30px;
}
#greywrap .fa {
	font-size: 18px;
	margin-right: 4px;
}

#footerwrap {
	background: #2b2b2b;
	padding: 25px 0 15px 0;
	border-bottom: 1px solid #ddd;
	text-align: center;
}
#footerwrap span.copyright {
	line-height: 40px;
	color: #888;
	font-weight: 400;
}
#footerwrap span.copyright a {
	color: #888;
	border-bottom: 1px dotted;
}
#footerwrap span.copyright a:hover {
	color: #ffbf00;
	text-decoration: none;
}
#footerwrap h4 {
	color: white;
}
ul.social-buttons {
	margin: 0;
}
ul.social-buttons li a {
	font-size: 24px;
	outline: 0;
	color: #999;
}
ul.social-buttons li a:hover, ul.social-buttons li a:focus, ul.social-buttons li a:active {
	color: #ffbf00;
}
/* ==========================================================================
   Box Sections
   ========================================================================== */

.white h1 {
	color: #999;
}
.white p {
	padding-top: 25px;
}

/* ==========================================================================
   Image Mask
   ========================================================================== */

.grid figure {
	margin: 0;
	position: relative;
	border: 1px solid #eee;
}
.grid figure img {
	width: 100%;
	display: block;
	position: relative;
}
.grid figcaption {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	color: #fff;
	background-color: #ffbf00;
}
.grid figcaption h5 {
	margin: 0;
	padding-top: 0px;
	padding-left: 20px;
	padding-bottom: 5px;
	color: #fff;
	font-weight: 700;
	text-align: left;
	letter-spacing: 1px;
}
.grid figcaption a {
	text-align: left;
	padding: 5px 10px;
	margin-left: 20px;
	display: inline-block;
	background: #2f2f2f;
	color: #fff;
	font-size: 13px;
}
/* Caption Style */
.mask figure {
	overflow: hidden;
}
.mask figure img {
	-webkit-transition: -webkit-transform 0.4s;
	-moz-transition: -moz-transform 0.4s;
	transition: transform 0.4s;
}
.no-touch .mask figure:hover img, .mask figure.cs-hover img {
	-webkit-transform: translateY(-30px);
	-moz-transform: translateY(-30px);
	-ms-transform: translateY(-30px);
	transform: translateY(-30px);
}
.mask figcaption {
	height: 50px;
	width: 100%;
	top: auto;
	bottom: 0;
	opacity: 0;
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
	-moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
	transition: transform 0.4s, opacity 0.1s 0.3s;
}
.no-touch .mask figure:hover figcaption, .mask figure.cs-hover figcaption {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
	-moz-transition: -moz-transform 0.4s, opacity 0.1s;
	transition: transform 0.4s, opacity 0.1s;
}
.mask figcaption a {
	position: absolute;
	top: 10px;
	bottom: 10px;
	right: 30px;
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */


@media screen and (max-width:1050px), screen and (max-device-width:1050px) {
body .header {
	background-attachment: scroll;
}
}

/*ipad portrait*/
@media only screen and (min-device-width:768px) and (max-device-width : 1024px) and (orientation : portrait) {
.header {
	background-attachment: scroll;
}
}

@media screen and (max-width:769px) {
#top h1 {
	font-size: 80px;
}
#top p {
	font-size: 1em;
	line-height: 1.2em;
}
}

.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
    max-height: 500px;
}