/*!
 * TableExport.js v3.3.9 (https://www.travismclarke.com)
 * Copyright 2016 Travis Clarke
 * Licensed under the MIT license
 */

/*-----------------------------------/
/* CAPTION POSITIONS
/*----------------------------------*/

.top {
    caption-side: top;
}

.bottom {
    caption-side: bottom;
}

/*-----------------------------------/
/* BUTTON CUSTOM CLASSES
/*----------------------------------*/

.button-default, .button-default:hover, .button-default:focus, .button-default:active {
    text-decoration: none;
}

.button-default {
    font: bold;
    cursor: pointer;
    padding: 5px;
    margin: 5px;
	background:#4a67ad;
	color:#fff;
	width:30%;
	text-decoration:none;
	padding:10px 10px;
	text-align:center;
	font-size:90%;
}

.button-default.xlsx:before, .button-default.xls:before, .button-default.csv:before, .button-default.txt:before {
    content: none;
}

.xlsx, .xls, .csv, .txt {
    margin: 4px 0;
}

.xlsx:before, .xls:before, .csv:before, .txt:before {
    margin-right: 10px;
    padding: 11px 15px 12px;
}

.xlsx{
    content: "";
    background: darkgreen url(xlsx.png) no-repeat 15px;
}

.xls{
    content: "";
    background: green url(xls.png) no-repeat 15px;
}

.csv{
    content: "";
    background: blue url(csv.png) no-repeat 15px;
}

.txt{
    content: "";
    background: purple url(txt.png) no-repeat 15px;
}