*{
	padding: 0px;
	margin: 0px;
}

ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

#activeCards{
   
    width: 100%;
    margin: auto;
}

section#activeCards ul#activeCardList{
    width: 100%;
    margin: auto;      
}

.spades{
    background: url("../img/spade_main.png");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: 50%;
}

.clubs{
    background: url("../img/club_main.png");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: 50%;
}

.diamonds{
    background: url("../img/diamond_main.png");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: 50%;
}

.hearts{
    background: url("../img/hearts_main.png");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: 50%;
}

.spadesK, .clubsK{
    background: url("../img/black_king.png");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: 50%; 
}

.spadesQ, .clubsQ{
    background: url("../img/black_queen.png");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: 50%; 
}

.spadesJ, .clubsJ{
    background: url("../img/black_jack.png");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: 50%; 
}

.heartsK, .diamondsK{
    background: url("../img/red_king.png");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: 50%; 
}

.heartsQ, .diamondsQ{
    background: url("../img/red_queen.png");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: 50%; 
}

.heartsJ, .diamondsJ{
    background: url("../img/red_jack.png");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: 50%; 
}

.card{
	width: 100%;
	height: 100%;
    /*border-radius:10px;*/
    background-color:#fff;
    /*padding:10px;*/
    font-family:Sans-Serif;    
    border:1px solid #000;
    /*    
    display:inline-block;*
    float: left; 
    margin: 5px 5px 5px -20px;
    */    
    font-weight: bold;
    position: absolute;
}
/*
.cardBack{
	background: url("../img/ringOfFire.jpg");
    background-size: cover;
    border: 0px;
}*/

.cardBack{
    background: url(../img/ringOfFire.jpg);
    background-size: contain;
    border: 0px;
    /*background-repeat: no-repeat;*/
    background-color: #000;
}

.diamonds, .hearts{
	color: #F00;
}

.clubs, .spades{
	color: #000;
}

#activeCardList li span{
    display: none;
}

#playedCardAreaBg{
    display: none;    
    position: absolute;    
    width: 100%;
    height: 100%;
    background:#000;
    filter: alpha(opacity=75)
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75)
    -moz-opacity: 0.75;
    -webkit-opacity: 0.75;
    opacity:0.75;
}

.displayCard{
    width: 160px;
    height: 200px;
    border-radius:10px;
    background-color:#fff;
    padding:10px;
    border:2px solid #000;
    font-family:Sans-Serif;
/*    display:inline-block;*/
    float: left;
    margin: 10px;
    font-weight: bold;
}

#playedCard{
    display: none;
    margin: auto;
    font-weight: bold;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -100px;
    margin-top: -100px;
}

#cardDisplayMeaning{
    display: none;
    margin: auto;
    font-family:Sans-Serif;    
    width: 200px;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -96px;
    margin-top: -115px;
    color: #fff;
    text-align: center;
}

.playedCardArea{
    width: 100%;
    height: 100%;
}

.faceCard{
/*    background: url('../img/Realistic-fire-animated-transparent-gif.gif');
    background-repeat: no-repeat;
    width: 480px;
    height: 272px;*/
}

#faceCard{
    display: none;
    margin: auto;
    font-family:Sans-Serif;    
    width: 200px;
    height: 100%;
    position: fixed;
    top: 70%;
    left: 50%;
    margin-left: -96px;
    margin-top: -115px;
    color: #fff;
    text-align: center;
}

#faceCard img{
    width: 100%;
    max-width: 100px;
    height: auto;
    filter: alpha(opacity=90)
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=90)
    -moz-opacity: 0.90;
    -webkit-opacity: 0.90;
    opacity: 0.90;

}


                