﻿@media screen
{
	.bordersSide 
	{
		border-left-style:solid;
		border-left-width:1px;
		border-left-color:#999;

		border-right-style:solid;
		border-right-width:2px;
		border-right-color:#666;
	}

	.bordersTop
	{
		border-top-style:solid;
		border-top-width:1px;
		border-top-color:#999;
	}

	.bordersBottom
	{
		border-bottom-style:solid;
		border-bottom-width:2px;
		border-bottom-color:#666;
	}

	.bordersSunken
	{
		border:solid;

		border-top-width:1px;
		border-top-color:#999;

		border-left-width:1px;
		border-left-color:#999;

		border-right-width:2px;
		border-right-color:#FFF;

		border-bottom-width:2px;
		border-bottom-color:#FFF;	
	}

	.bordersBlue
	{
		border:solid;

		border-top-width:1px;
		border-top-color:#339;

		border-left-width:1px;
		border-left-color:#339;

		border-right-width:2px;
		border-right-color:#006;

		border-bottom-width:2px;
		border-bottom-color:#006;	
	}

	.bordersGrey
	{
		border-left: solid 1px #999;
		border-right: solid 3px #666;
		border-top: solid 1px #999;
		border-bottom: solid 3px #666;
	}
}