.section {
	clear: both;
	padding: 0px;
	margin: 0px;
	text-align: center;
}

/*  COLUMN SETUP  */
.col {
	display: inline-block;
	margin: 10px 0%;
	vertical-align: top;
}


.doc-box {
    background-color: #AC033B;
    width: 100px;
    height: 100px;
    color: #fff;
    padding: 5px;
    text-transform: uppercase;
    font-size: 0.7em;
}

.doc-box a{
	color : #fff;
	vertical-align: bottom;    
}
.doc-box a:hover{
	text-decoration: none;
	color : #fff;
}

/*TOOLTIP*/

.tooltip{
    display: inline;
    position: relative;
}


.tooltip:hover:after{
    background: #333;
    background: rgba(0,0,0,.8);
    border-radius: 5px;
    bottom: 26px;
    color: #fff;
    content: attr(title);
    left: 20%;
    padding: 5px 15px;
    position: absolute;
    z-index: 98;
    width: 220px;
}

.tooltip:hover:before{
    border: solid;
    border-color: #333 transparent;
    border-width: 6px 6px 0 6px;
    bottom: 20px;
    content: "";
    left: 50%;
    position: absolute;
    z-index: 99;
}


ul.document-list {
    list-style: none;
    margin: 0;
}

ul.document-list li {
    background: #F4F4F4;
    margin: 10px 0;
    height: 60px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #c8c8c8;
    text-transform: uppercase;
    font-size: 0.9em;
}

.document-container {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.document-container img, .document-container span {
    vertical-align: middle;
}

.document-container span {
/*     font-weight: bold; */
}

.document-container img {
    margin: 1em;
}

.document-container a:hover {
    text-decoration: none;
}