table.fileGrid {
    border-collapse: collapse;
    border: 1px solid #aaa;
	/* Mozilla FireFox */
    -moz-user-select: none;
    /* old Safari, old Chrome */
    -khtml-user-select: none;
    /* new Safari, new Chrome */
    -webkit-user-select: none;
    /* IE 9-10 */
    -ms-user-select:none;
    /* all css3 */
    user-select: none;
	/*border-radius: 3px;*/
}
table.fileGrid td {
    border: 0 none;
    border-color: #ddd;
    border-style: solid;
}

table.fileGrid tr.fileGrid_row td {
    height: 30px;
    padding: 5px;
    border-right-width: 1px;
    border-bottom-width: 1px;
	cursor: default;
}

table.fileGrid tr.fileGrid_selected_row td {
	background-color: #00bfe6;
}

table.fileGrid tr.fileGrid_row:hover td {
    background-color: #eee;
}

table.fileGrid tr.fileGrid_selected_row:hover td {
	background-color: #667cb0;
}

table.fileGrid tr.fileGrid_emptyRow td {
    border-right-width: 0 none;
}
table.fileGrid thead.fileGrid_header th {
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    background-color: #eee;
    padding: 5px;
    height: 20px;
}

.fileGrid_contextMenu {
	background-color: #fff;
	border: 1px solid #555;
	box-shadow: 5px 5px 20px rgba(0,0,0,0.5);
}

.fileGrid_contextMenu_menuItem {
	margin: 2px;
	border: 1px solid #fff;
	padding: 4px 14px 4px 14px;
	cursor: pointer;
}

.fileGrid_contextMenu_menuItem:hover {
	background-color: #eee;
	border: 1px solid #667cb0;
	border-radius: 3px;
	padding: 4px 14px 4px 14px;
}

.fileGrid_pager {
	text-align: left;
	padding: 5px;
}

.fileGrid_pager_navPage {
	display: inline-block;
	width: 20px;
	height: 20px;
	text-decoration: none;
	margin-bottom: -5px;
}

.fileGrid_pager .fileGrid_pager_firstPage {
	background: url('/img/pager_firstPage.png') no-repeat;
}

.fileGrid_pager .fileGrid_pager_prevPage {
	background: url('/img/pager_prevPage.png') no-repeat;
}

.fileGrid_pager .fileGrid_pager_nextPage {
	background: url('/img/pager_nextPage.png') no-repeat;
}

.fileGrid_pager .fileGrid_pager_lastPage {
	background: url('/img/pager_prevPage.png') no-repeat;
}
