table
{
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 15px;
	border-bottom: 1px solid #ddd;
}
	thead
	{
		font-size: 90%;
		color: #666;
		border-bottom: 1px solid #ddd;
	}
	tbody
	{
		font-size: 95%;
	}
		tbody tr
		{
			border-top: 1px solid #fff;
			transition: background 0.3s, color 0.3s, border 0.3s;	
		}
		tbody tr:nth-child(1)
		{
			border-top: 0;
			transition: background 0.3s, color 0.3s, border 0.3s;	
		}
		tbody tr:nth-child(even)
		{
			background: #f4f4f4;	
		}
		.details tbody tr:nth-child(even)
		{
			background: #f8f8f8;	
		}
		table:not(.details) tbody tr:hover
		{
			color: #222;
			border-top: 1px solid #ccc;
			border-bottom: 1px solid #ccc;
		}
			th, td
			{
				text-align: left;
				padding: 10px 20px;
			}
            .details td
            {
                font-size: 110%;
				width: 50%;
                color: #666;
            }
                .details td strong
                {
                    font-size: 85%;
                    opacity: 0.66;
                    display: block;
                }
			table .short
			{
				text-align: center;
			}
			table .long
			{
				font-size: 90%;
			}
			tbody td:nth-last-child()
			{
				padding: 0;
			}
				td span
				{
					display: block;
					font-size: 80%;
					opacity: 0.75;
				}
				td a i
				{
					background: #aabc95;
					padding: 0;
					padding-top: 8px;
					width: 30px;
					height: 30px;
					color: #fff;
					text-align: center;
					border-radius: 50%;
					transition: background 0.3s;
				}
				td a:hover i
				{
					background: #849373;
				}

.container a
{
	float: right;
}

.pagination
{
	padding: 0;
	list-style: none;
	
}
	.pagination li
	{
		float: left;
		width: 20%;
		text-align: center;
	}
	.pagination li span
	{
		font-size: 90%;
		display: inline-block;
		padding-top: 5px;
	}
		.pagination li a
		{
			color: #ccc;
			display: inline-block;
			width: 35px;
			height: 35px;
			padding-top: 4px;
			border-radius: 50%;
			font-size: 140%;
			transition: color 0.3s, background 0.3s;
		}
		.pagination li a:hover
		{
			color: #999;
			background: #eee;
		}



