/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Nov 30, 2016, 5:22:23 PM
    Author     : Administrator
*/

/* 2nd Container - Part of the librray */
.container2
{
    position:relative;
    
    /*margin: 10px;*/
    margin-top:0;

    /*width: 125px;*/
    width:100%;
    width:inherit;

    height: 125px;
  	perspective: 1200px;
  	/*border: 4px solid #a2b058;*/
    /*background: green;*/
    margin-left:0vh;
    
    
    height:100%;
    width:100%;
    
    
    
    
}

/* Faces Front / Back */
.container_face
{
    position: absolute;
    
    display: block;
    
    width:100%;
    height:100%;
    
}

.transformed 
{
    -webkit-transform: rotate3d(0, 1, 0, 60deg); /* Chrome, Safari, Opera */
    transform: rotate3d(0, 1, 0, 60deg); /* Standard syntax */
}

/* Info Lines */
.containerLine
{
    position: relative;
    width:100%;
    height:3vh;
/*
    border-color: red;
    border-width: 0px;
    border-style: solid;    
*/
}

/* Info Label / Val */
.containerLineLabelVal
{
    position: relative;
    display: inline-block;
    width:30%/*default - change with style if needed*/
}

