﻿/*  
 
 RoyalSlider
 
 */
.royalSlider {
    height: 300px; /* gia tri ban dau la 300px;*/
    /* Used to prevent content "jumping" on page load. this property is removed when javascript is loaded and slider is instanciated */
    overflow: hidden;
    position: relative;
    /* set width and height of slider here, in px, % or em*/
    width: 960px;
}

/**
*  Slides area (set background here)
*/

.royalSlider .royalWrapper {
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.royalSlider .royalWrapper {
    /* Bakground behind slides */
    background: #fff;
    background: -moz-linear-gradient(top, #111111 0%, #242424 100%);
    background: -webkit-linear-gradient(top, #111111 0%, #242424 100%);
    background: -o-linear-gradient(top, #111111 0%, #242424 100%);
    background: -ms-linear-gradient(top, #111111 0%, #242424 100%);
    background: linear-gradient(top, #111111 0%, #242424 100%);
}

/* slides holder, grabbing container */

.royalSlider .royalSlidesContainer {
    border: 0 !important;
    left: 0;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    top: 0 !important;
}

/* slide item */

.royalSlider .royalSlide {
    border: 0 !important;
    float: left;
    list-style: none !important;
    margin: 0 !important;
    overflow: hidden;
    padding: 0 !important;
    position: relative;
}

/* 

	Direction Navigation (arrows) 

*/

.royalSlider .arrow {
    background-position: 0 0;
    /*background:url(../img/controlsSprite.png) no-repeat 0 0;*/
	 
    background-repeat: no-repeat;
    cursor: pointer;
    display: block;
    height: 90px;
    margin-top: -45px;
    position: absolute;
    top: 50%;
    /* change arrows size here */
    width: 45px;
    z-index: 25;
}

.royalSlider .arrow:hover { }

.royalSlider .arrow.disabled { }

/* left arrow */

.royalSlider .arrow.left {
    background-position: top left;
    left: 0;
}

/* right arrow */

.royalSlider .arrow.right {
    background-position: top right;
    right: 0;
}

/* Control navigation container (bullets or thumbs) */

.royalSlider .royalControlNavOverflow {
    margin-top: -20px;
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: 25;
}

/* This container is inside ".royalControlNavContainer"  
   and is used for auto horizontal centering */

.royalSlider .royalControlNavCenterer {
    float: left;
    left: -50%;
    position: relative;
}

/* Control navigation container*/

.royalSlider .royalControlNavContainer {
    float: left;
    left: 50%;
    position: relative;
}

/* Scrollable thumbnails containers */

.royalSlider .royalControlNavThumbsContainer {
    left: 0;
    position: relative;
}

.royalSlider .thumbsAndArrowsContainer {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.royalSlider .royalControlNavOverflow.royalThumbs {
    margin-top: 4px;
    overflow: hidden;
    position: relative;
    width: auto;
}

/* 

	Control navigation (bullets, thumbnails)
	
*/

.royalSlider .royalControlNavOverflow a {
    background: #0C0 none no-repeat scroll 0 0;
    cursor: pointer;
    display: block;
    float: left;
    height: 20px;
    position: relative;
    text-indent: -9999px;
    width: 20px;
}

/* Current control navigation item */

.royalSlider .royalControlNavOverflow a.current { background-color: #C00; }

/* Hover state navigation item */

.royalSlider .royalControlNavOverflow a:hover { background-color: #00C; }

/* Thumbnails */

.royalSlider .royalControlNavOverflow a.royalThumb {
    height: 60px;
    /* thumbnails spacing, use margin-right only */
    margin-right: 4px;
    /*background: none no-repeat 0 0;*/
    /*background-color: ;*/
    width: 144px;
}

.royalSlider .royalControlNavOverflow a.royalThumb.current {
    background-position: -3px -3px !important;
    border: 3px solid #C00 !important;
    height: 54px;
    width: 138px;
}

.royalSlider .royalControlNavOverflow a.royalThumb:hover {
    background-position: -3px -3px;
    border: 3px solid #00C;
    height: 54px;
    width: 138px;
}

/* Loading (welcome) screen */

.royalSlider .royalLoadingScreen {
    background: #FFF;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 99;
}

/* Loading screen text ("Loading...") */

.royalSlider .royalLoadingScreen p {
    margin: 0 auto;
    position: absolute;
    text-align: center;
    top: 45%;
    width: 100%;
}

/* single slide image preloader */

.royalSlider .royalPreloader {
    background-image: url(images/preloader.gif);
    height: 24px;
    left: 50%;
    margin-left: -12px;
    margin-top: -12px;
    position: absolute;
    top: 50%;
    width: 24px;
    z-index: 0;
}

.royalSlider .grab-cursor { cursor: move; }

.royalSlider .grab-cursor { cursor: url("images/cursors/grab.png") 8 8, -moz-grab; }

.royalSlider .grab-cursor { *cursor: url(images/cursors/grab.cur); }

.royalSlider .grab-cursor { cursor: move\0/; }

/* ie8 hack */

.royalSlider .grabbing-cursor { cursor: move; }

.royalSlider .grabbing-cursor { cursor: url("images/cursors/grabbing.png") 8 8, -moz-grabbing; }

.royalSlider .grabbing-cursor { *cursor: url(images/cursors/grabbing.cur); }

/* Cursor used if mouse dragging is disabled */

.royalSlider .auto-cursor { cursor: auto; }

.royalSlider .royalHtmlContent {
    left: 0;
    position: absolute;
    top: 0;
}

.royalSlider .non-draggable { cursor: auto; }

.royalSlider .fade-container .royalSlide {
    left: 0;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    z-index: 10;
}

.royalSlider .royalImage {
    border: 0 !important;
    margin: 0;
    max-width: none;
    padding: 0 !important;
}

/* Slider itself */

.royalSlider.home { }

/* 
	Left and right navigation arrows 	
*/

.royalSlider.home .arrow {
    -khtml-opacity: 0.8;
    -moz-border-radius: 4px;
    -moz-opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    -webkit-border-radius: 4px;
    background: rgb(50, 50, 50);
    background: rgba(0, 0, 0, 0.1);
    background-image: url(../img/controls-sprite-1.png);
    border-radius: 4px;
    filter: alpha(opacity=80);
    height: 30px;
    margin-top: -15px;
    opacity: 0.8;
    /* change arrows size here */
    width: 30px;
}

/* Arrow down state */

.royalSlider.home .arrow:active { background-color: rgba(0, 0, 0, 0.6); }

/* Arrow hover state */

.royalSlider.home .arrow:hover {
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
}

/* Arrow disabled state */

.royalSlider.home .arrow.disabled {
    -khtml-opacity: 0.2;
    -moz-opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)" !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    filter: alpha(opacity=20) !important;
    opacity: 0.2;
}

/* left arrow */

.royalSlider.home .arrow.left {
    background-position: top left;
    left: 5px;
}

/* right arrow */

.royalSlider.home .arrow.right {
    background-position: top right;
    right: 5px;
}

/* 
	Bullets and thumbnails navigation	
*/

.royalSlider.home .royalControlNavOverflow a {
    -khtml-opacity: 0.8;
    -moz-opacity: 0.8;
    background: url(../img/controls-sprite-2.png) no-repeat 0 -164px transparent;
    height: 18px;
    opacity: 0.8;
    width: 18px;
}

/* Current bullet */

.royalSlider.home .royalControlNavOverflow a.current { background-position: 0 -182px !important; }

/* Bullet hover state */

.royalSlider.home .royalControlNavOverflow a:hover {
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
}

/* Bullets nav sub-container */

.royalSlider.home .royalControlNavCenterer {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    left: -450px;
    padding: 3px 5px;
}

/* Bullets nav or thumbnails main container */

.royalSlider.home .royalControlNavOverflow { margin-top: 0px; }

/* Slider itself */

.royalSlider.wheel { padding-bottom: 26px; }

/* Slider with thumbs (used to add padding based on thumbnails size)*/

.royalSlider.wheel.with-thumbs { padding-bottom: 55px; }

/* 
	Left and right navigation arrows 	
*/

.royalSlider.wheel .arrow {
	 
    -moz-opacity: 0.8;
    height: 32px;
    margin-top: 65px;
    opacity: 0.8;
    /* change arrows size here */
    width: 100px;
}

/* left arrow */

.royalSlider.wheel .arrow.left {
    background-image: url(images/btn-back.png);
    background-position: top left;
    background-repeat: no-repeat;
    margin-left: 20px;
    width: 100px;
}

/* right arrow */

.royalSlider.wheel .arrow.right {
    background-image: url(images/btn-moreinfo.png);
    background-position: top right;
    background-repeat: no-repeat;
    margin-right: 40px;
    width: 220px;
}

/* Arrow down state */

.royalSlider.wheel .arrow:active { }

/* Arrow hover state */

.royalSlider.wheel .arrow:hover {
    -moz-opacity: 1;
    opacity: 1;
}

/* Arrow disabled state */

.royalSlider.wheel .arrow.disabled {
    -moz-opacity: 0;
    opacity: 0;
}

.royalSlider.wheel .arrow.left.disabled {
    background-image: none;
    background-position: -32px 0px;
}

.royalSlider.wheel .arrow.right.disabled {
    background-image: none;
    background-position: -136px 0px;
}

/* 

	Bullets and thumbnails navigation
	
*/

.royalSlider.wheel .royalControlNavOverflow a {
    -khtml-opacity: 0.8;
    -moz-opacity: 0.8;
    background: url(../img/controls-sprite-2.png) no-repeat 0 -164px transparent;
    height: 18px;
    opacity: 0.8;
    width: 18px;
}

/* Current bullet */

.royalSlider.wheel .royalControlNavOverflow a.current { background-position: 0 -182px !important; }

/* Bullet hover state */

.royalSlider.wheel .royalControlNavOverflow a:hover {
    -khtml-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

/* Bullets nav sub-container */

.royalSlider.wheel .royalControlNavCenterer {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 3px 5px;
}

/* Bullets nav or thumbnails main container */

.royalSlider.wheel .royalControlNavOverflow { margin-top: 0px; }

/*Side */


/* Slider itself */

.royalSlider.side { padding-bottom: 18px; }

/* 
	Left and right navigation arrows 	
*/

.royalSlider.side .arrow {
    -moz-opacity: 0.8;
    background: url(../img/controls-sprite-2.png) no-repeat 0 0;
    height: 32px;
    margin-top: 24px;
    opacity: 0.8;
    /* change arrows size here */
    width: 32px;
}

/* left arrow */

.royalSlider.side .arrow.left {
    background-position: top left;
    left: -32px;
}

/* right arrow */

.royalSlider.side .arrow.right {
    background-position: top right;
    right: -32px;
}

/* Arrow down state */

.royalSlider.side .arrow:active { }

/* Arrow hover state */

.royalSlider.side .arrow:hover {
    -moz-opacity: 1;
    opacity: 1;
}

/* Arrow disabled state */

.royalSlider.side .arrow.disabled {
    -moz-opacity: 1;
    opacity: 1;
}

.royalSlider.side .arrow.left.disabled { background-position: -32px 0px; }

.royalSlider.side .arrow.right.disabled { background-position: -136px 0px; }

/* 

	Bullets and thumbnails navigation
	
*/

.royalSlider.side .royalControlNavOverflow a {
    -khtml-opacity: 0.8;
    -moz-opacity: 0.8;
    background: url(../img/controls-sprite-3.png) no-repeat 0 -164px transparent;
    height: 18px;
    opacity: 0.8;
    width: 18px;
}

/* Current bullet */

.royalSlider.side .royalControlNavOverflow a.current { background-position: 0 -182px !important; }

/* Bullet hover state */

.royalSlider.side .royalControlNavOverflow a:hover {
    -khtml-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

/* Bullets nav sub-container */

.royalSlider.side .royalControlNavCenterer {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    left: -50px;
    padding: 3px 5px;
}

/* Bullets nav or thumbnails main container */

.royalSlider.side .royalControlNavOverflow { margin-top: 0px; }

/* ======================== Sliders ===================== */


#h-banner-rotator, #image-gallery, #content-slider, #side-slider {
    height: 100%;
    width: 100%;
}

#content-slider {
    height: 250px;
    width: 700px;
}

#content-slider .exampleButton {
    cursor: pointer;
    font-size: 14px;
    padding: 5px 12px 8px !important;
}

#content-slider .centeredSlide {
    color: #333;
    font-size: 12px;
    margin: 0 auto;
    width: 700px;
}

#content-slider .centeredSlide .wrap {
    height: 240px;
    margin: 0 0 0 0px;
    padding: 0 width:680px;
    text-align: left;
}

#content-slider .centeredSlide a { font-size: 12px; }

#content-slider .slideTextBlock {
    float: left;
    font-size: 12px;
    width: 320px;
}

#content-slider .slideTextBlock a { font-size: 12px; }

#content-slider .wrap h2 {
    color: #004584;
    font-size: 16px;
    margin: 0;
}

#content-slider .wrap h2 a {
    color: #004584;
    font-size: 16px;
    margin: 0;
    text-decoration: underline
}

#content-slider .wrap h2 a:hover { color: #cc0000; }

#content-slider .wrap p {
    color: #333;
    font-size: 12px;
    line-height: 150%;
    margin: 0 10px 10px 0;
    width: 670px;
}

#content-slider p a { font-size: 12px; }

#content-slider .slideBullet {
    color: #333;
    float: left;
    margin-left: 0px;
    margin-top: 5px;
    width: 350px;
}

#content-slider .slideBullet a {
    color: #333;
    text-decoration: underline
}

#content-slider .slideBullet a.invisiable { text-decoration: none }

#content-slider .slideBullet a:hover { color: #cc0000; }

#content-slider .slideIma {
    float: left;
    margin-left: 10px;
    margin-top: 10px;
    width: 270px;
}

#content-slider .slideBullet h2 {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 0 0px;
    padding: 0;
}

#content-slider.slideBullet h2 a {
    color: #333333;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 0 0;
    padding: 0;
}

#content-slider .slideBullet h2 a:hover {
    color: #333333;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 0 0;
    padding: 0;
}

#content-slider ul {
    font-size: 12px;
    margin: 10px 0 0 0px;
}

#content-slider li {
    background-image: url(images/arrow_6x10.gif);
    background-position: 0px 3px;
    background-repeat: no-repeat;
    font-size: 12px;
    line-height: 140%;
    list-style-type: none;
    margin: 0;
    padding: 0 0 6px 12px;
}

#content-slider li a { font-size: 12px; }

#content-slider .royalSlide, #content-slider .royalWrapper { background: none; }

#content-slider.royalSlider .royalControlNavOverflow { margin-top: -25px; }

#content-slider.royalSlider .arrow.right { right: 0; }

#content-slider.royalSlider .arrow.left { left: 0; }

#h-banner-rotator {
    height: 280px; /* gia tri ban dau la 280px; tuc la 300px - 20px*/
    margin: 0 auto;
    width: 100%;
}

#h-banner-rotator .royalCaptionItem {
    font-family: Segoe UI, Lucida Grande, Arial, sans-serif;
    font-size: 32px;
    font-weight: bold;
    line-height: 38px;
}

#h-banner-rotator .sgMidText { font-size: 1.3em; }

#h-banner-rotator .sgSmallText { font-size: 0.8em; }

#h-banner-rotator .tintButton {
    -moz-transition: background-color .2s ease-out;
    -o-transition: background-color .2s ease-out;
    -webkit-transition: background-color .2s ease-out;
    background: no-repeat 0 0;
    background-color: #33383e;
    color: #EAEAEA;
    cursor: pointer;
    padding: 5px 12px;
    text-decoration: none;
    transition: background-color .2s ease-out;
}

#h-banner-rotator .tintButton:hover {
    background-color: #EAEAEA;
    color: #33383e;
}

#h-banner-rotator .royalCaption {
    left: 0;
    position: absolute;
    top: 0;
}

#content-slider .royalWrapper {
    /*-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.30);
	-moz-box-shadow:0 1px 3px rgba(0,0,0,0.30);
	box-shadow:0 1px 3px rgba(0,0,0,0.30);*/
    background: #fff;
    border-left: 0px solid #FFF;
    border-right: 0px solid #FFF;
    border-top: 0px solid #FFF;
}

#side-slider .royalWrapper {
    /*-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.30);
	-moz-box-shadow:0 1px 3px rgba(0,0,0,0.30);
	box-shadow:0 1px 3px rgba(0,0,0,0.30);*/
    background: #fff;
    border-left: 0px solid #FFF;
    border-right: 0px solid #FFF;
    border-top: 0px solid #FFF;
}

#side-slider {
    background-color: #fff;
    height: 80px;
    margin: auto;
    width: 190px;
}

#side-slider .centeredSlide {
    background-color: #fff;
    height: 82px;
    margin: 0 auto;
    padding: 5px;
    width: 181px;
}

#side-slider .centeredSlide p {
    color: #333;
    font-size: 12px;
    line-height: 150%;
    margin-bottom: 10px;
}

#side-slider .centeredSlide p a {
    color: #333;
    font-size: 12px;
    text-decoration: none
}

#side-slider .centeredSlide p a:hover {
    color: #cc0000;
    text-decoration: none
}

#side-slider.royalSlider .royalControlNavOverflow { margin-top: 0px; }

#side-slider.royalSlider .arrow.right { right: 0; }

#side-slider.royalSlider .arrow.left { left: 0; }





 

/* ==|== media queries ======================================================
   PLACEHOLDER Media Queries for Responsive Design.
   These override the primary ('mobile first') styles
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 480px) {
    /* Style adjustments for viewports 480px and over go here */
}

@media only screen and (min-width: 768px) {
    /* Style adjustments for viewports 768px and over go here */
}