/*General.css*/
* {
    padding:0;
    margin:0;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    font-family:Time New Roman
    }
    
    .wrapper {
    width:990px!important;
    margin:0 auto;
    position:relative
    }
    
    body {
    background:#ededed url(../../images/bg.jpg) center top no-repeat;
    }
    
    .clear {
    clear:both
    }
    
    .pull-left {
    float:left
    }
    
    .pull-right {
    float:right
    }

    /*reset.css*/

    /* css rest */
    
    html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin:0;
    padding:0;
    border:0;
    font-size:100%;
    font:inherit;
    vertical-align:baseline
    }
    
    article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display:block
    }
    
    body {
    line-height:1
    }
    
    ol,ul {
    list-style:none
    }
    
    blockquote,q {
    quotes:none
    }
    
    blockquote:before,blockquote:after,q:before,q:after {
    content:'';
    content:none
    }
    
    table {
    border-collapse:collapse;
    border-spacing:0
    }

    /*end reset*/

    /*Content.css*/
    
    .content #header {
    border:1px solid #fff;
    border-radius:5px 5px 0 0;
    color:#fff;
    font-size:20px;
    padding:10px;
    margin-top:10px;
    background:none repeat scroll 0 0 rgba(0,0,0,0.4);
    border-bottom:1px #999 solid
    }
    
    .content #body {
    border:1px solid #fff;
    border-radius:0 0 5px 5px;
    color:#fff;
    border-top:none;
    padding:10px;
    min-height:150px;
    margin-bottom:10px;
    background:none repeat scroll 0 0 rgba(0,0,0,0.4)
    }

    /*uibase.css*/
    
    @font-face {
    font-family:RobotoSlab;
    src:url(../font/RobotoSlab-Regular.ttf)
    }
    
    @font-face {
    font-family:Play;
    src:url(../font/Play-Regular.ttf)
    }
    
    @font-face {
    font-family:Kievit;
    src:url(../font/Kievit-Italic.ttf)
    }
    
    @font-face {
    font-family:PlayBold;
    src:url(../font/Play-Bold.ttf)
    }

    h1 {
    font-size:24px
    }
    
    h2 {
    font-size:22px
    }
    
    h3 {
    font-size:18px
    }
    
    h4 {
    font-size:16px
    }
    
    h5 {
    font-size:12px
    }
    
    h6 {
    font-size:10px
    }

    /* Header */
    .header {
    height:auto
    }
    /* Header */

    /* Logo */
    .logo {
    float: left;
    margin-top: 0px;
    position: relative;
    z-index: 999;
    }
    /* Logo */

    /* Form */
    form.my-form {
    float: right;
    width: 580px;
    margin-top: 10px;
    }
    
    form.my-form input[name="txtUsername"],form.my-form input[name="txtPassword"] {
    float: left;
    width:148px;
    height:25px;
    background:url(../../images/textbox.png) center no-repeat;
    border:none;
    font-family:Arial,Helvetica,sans-serif;
    font-size:11px;
    color:#fff;
    outline:none;
    padding:2px 0 0 20px;
    margin: 0 2px;
    }
    
    form.my-form input:focus {
    outline:none
    }
    
    form.my-form input::-webkit-input-placeholder {
    color:#fff
    }
    
    .btnLogin,.btnDaftar {
    float:left;
    width:133px;
    height:25px;
    background:url(../../images/button.png) center no-repeat;
    border:none;
    font-family: PlayBold;
    font-size: 18px;
    font-style: italic;
    color: #fff;
    text-decoration: none;
    text-align:center;
    display:block;
    margin: 0 0 0 3px;
    padding-top: 3px;
    letter-spacing: 1px;
    }
    
    .btnDaftar:hover,.btnLogin:hover {
    -webkit-mask-image:linear-gradient(-75deg,rgba(0,0,0,.6) 30%,#000 50%,rgba(0,0,0,.6) 70%);
    -webkit-mask-size:200%;
    animation:shine 1s infinite
    }
    @-webkit-keyframes shine {
    from {
    -webkit-mask-position:150%
    }
    
    to {
    -webkit-mask-position:-50%
    }    
    }
    /* Form */

    /* Running Text */
    .marquee-div {
    float:right;
    width:58%;
    margin: 30px 0 0 0;
    }
    
    .marquee-div .info {
    float:left;
    color: #000;
    font-family: Play;
    font-size: 13px;
    font-weight: bold;
    margin:0 0 0 0;
    text-transform: uppercase;
    }
    
    .marquee-div #runningText {
    width:93%;
    float:left;
    font-family: Play;
    font-size: 13px;
    color:#000;
    margin:2px 0 0 0;
    }
    /* Running Text */

    /* Menu */
    .menu {
    float: right;
    margin-top: 20px;
    }
    .menu li {
    float: left;
    text-align:center;
    }
    .menu li a {
    font-family:Play;
    font-size:13px;
    color:#b0b0b0;
    text-align:center;
    text-decoration:none;
    margin-left: 37px;
    text-transform: uppercase;
    }
    .menu li:first-child a{
    margin-left: 0;
    }
    .menu li:hover a {
    font-weight: bold;
    color: #000;
    }

    /* Menu */

    /* Content */
    .content {
    height:auto
    }
    /* Content */

    /* Left Content */
    .left-content{
    float: left;
    width: auto;
    height: auto;
    }
    /* Left Content */
    
    /* Slide Show */
    .slideshow {
    float: left;
    width:672px;
    height:320px;
    }
    /* Slide Show */

    /* Contact */
    .contact{
    float: left;
    margin-top: 15px;
    }
    .contact li{
    float: left;
    width: 120px;
    }
    .contact li:first-child{
    width: 97px;
    }
    .contact li:last-child{
    width: 97px;
    }
    .contact li img{
    width: 38px;
    display: block;
    margin: 0 auto;
    vertical-align: middle;
    }
    .contact li div{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 11px;
    text-align: center;
    margin-top: 15px;
    }
    /* Contact */

    /* Fivelast */
    
    .transaction-table {
    float: right;
    width:314px;
    height:auto;
    }

    #five-last {
    width:314px;
    height:195px;
    background:url(../../images/fivelast.png) center no-repeat;
    position:relative;
    }

    #five-last:last-child{
    margin-top: 15px;
    }
    
    #five-last .deposit, #five-last .withdraw{
    display: block;
    margin: 0 auto;
    margin-top: 13px;
    }
    #five-last .deposit{
    width: 155px; 
    }
    #five-last .withdraw{
    width: 176px;    
    }

    #five-last:last-child #little-table{
    left: 10px;
    }
    
    #little-table {
    width:97%;
    height:auto;
    position:absolute;
    left:0px;
    top:60px;
    text-align: center;
    }
    
    #little-table tbody tr td {
    height:28px;
    color:#9d9d9d;
    font-family:arial;
    font-size:12px
    }

    #little-table tbody tr td:last-child{
    color: #fff;
    }
    /* Fivelast */

    /* Jackpot */
    .jackpot {
    float: left;
    width:990px;
    height:159px;
    background:url(../../images/jackpot.png) center no-repeat;
    margin-top: 15px;
    }
    
    .poker-number,.domino-number {
    font-family:PlayBold;
    font-size:42px;
    color:#fff;
    letter-spacing:4px;
    text-align: center;
    margin-top: 100px;
    background:linear-gradient(#fff 40%,#ffffff,#eae8ea 50%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    }
    
    .poker-number {
    float: left;
    margin-left: 20px;
    }
    
    .domino-number {
    float: right;
    margin-right: 10px;
    }
    /* Jackpot */

    /* Bank */
    .bank{
    float: left;
    margin-top: 20px;
    }
    .bank li{
    float: left;
    margin-left: 38px;
    }
    .bank li:first-child{
    margin-left: 0;
    }
    .bank li img{
    vertical-align: middle;
    }
    /* Bank */
    
    /* Content Text */
    .content-text {
    float:left;
    /*width: 990px;
    height: 159px;
    background:url(../../images/content.png) center no-repeat;  */
    margin:20px 0 0;
    text-align:center
    }
    
    .content-text h1 {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size:15px;
    font-weight:bold;
    /*color: #fff; */
    font-style: italic;
    margin-top:35px;
    text-transform:uppercase;
    }
    
    .content-text p {
    font-family:Arial,Helvetica,sans-serif;
    font-size:12px;
    color:#9d9d9d;
    line-height:23px;
    margin-top:20px;
    padding:0 40px;
    }
    /* Content Text */

    /* Footer */
    .footer {
    height:auto
    }
    /* Footer */

    /* Footer Logo */
    .footer-logo{
    float: left;
    margin: 0 0 0 20px;
    }
    /* Footer Logo */

    .right-footer{
    float: right;
    margin-top: 20px;
    }

    /* Footer Menu */
    .footer-menu {
    float: right;
    margin-top: 20px;
    }
    .footer-menu li {
    float: left;
    text-align:center;
    }
    .footer-menu li a {
    font-family:Play;
    font-size:12px;
    color:#000;
    text-align:center;
    text-decoration:none;
    margin-left: 10px;
    border-right: 1px solid #000;
    padding-right: 10px;
    text-shadow: 1px 1px 2px #000;
    }
    .footer-menu li:first-child a{
    margin-left: 0;
    }
    .footer-menu li:last-child a{
    border-right: none;
    }
    .footer-menu li:hover a {
    color: #9d9d9d;
    text-shadow: 1px 1px 2px #9d9d9d;
    }
    /* Footer Menu */

    /* Copyright */
    .copyright{
    float: right;
    font-family: Play;
    font-size: 12px;
    color: #000;  
    width: 100%;
    text-align: center;
    margin: 20px 0 20px 0;
    text-shadow: 1px 1px 2px #000;
    }
    /* Copyright */