/*
- I put here global things , that are connected with every page
- I put here things that repeat in the HTML document

REISIN
*/


/* top_part.inc.php */

.toptd
{
	padding:0px;
}

.toptable
{
	border-collapse: collapse;
}

.topbutton
{
	text-decoration: none;
	font-weight: bold;
	color: blue;
	font-size: 15px;
}

.topbutton:hover
{
	text-decoration: underline;
}


/*global*/
body
{
	font-family: arial;
	direction: rtl;
}
/*this one is the style of the main part in every page*/
#main-td/*main <td> in table - spcified in top_part.inc.php but categorized as global*/
{
padding:10px;
}

/*used every where*/
.blue-box
{
	text-align:center;
	border-style:solid;
	border-width:1px;
	padding:10px;
	background-color:#EBF3FC;
	border-color:#61B0FC;
	/*margin:10px;*/
}
.blue-table tr
{
	background-color: #EBF3FC;
}
.blue-table
{

	font-size: 80%;
}
.selected-row
{
	text-decoration: underline;
}
.blue-table .selected-row .checked-box
{
	background-color: Lime;
}
tr.caption-row
{
	background-color: #E0EFFE;
}

/*index.php*/
a.payment-link
{
	color:black;
	text-decoration:underline;
}
a.payment-link:hover
{
	color: #026C25;
}

/*payment form*/
div.form-caption
{
	text-align:right;
}
table.form-table td
{
	padding-right:8px;
	text-align: right;
	padding:3px;
}

div.events-table
{
	overflow: auto;
	padding: 7px;
	width: 80%;
	height: 200; /*border-style: solid;*/
	border-color: #61B0FC;
	border-width: 1px;
	background-color: #EBF3FC;
}
div.events-table table
{
	border-collapse:collapse;
	width:90%;
}
div.events-table td
{
	border-bottom-style:solid;
	border-width:1px;
	border-color:#61B0FC;
	border-top-style:solid;
}
div.events-table tr
{
	cursor: pointer;
}

table.members-table tr
{
	cursor: pointer;
	background-color: #EBF3FC;
}

/*ajax_members.php*/
.scroll-box
{
	overflow: auto;
	height:150px;
}

/*status.php*/
div.history-table
{
	empty-cells: show;
}

div.history-table table
{
	border-collapse:collapse;
	width:100%;
}

div.history-table td
{
	border-style:solid;
	border-width:1px;
	border-color:#61B0FC;
	background-color: #EBF3FC;
}

/* validate.php */
.validate-table
{
	border-collapse: collapse;
	empty-cells: show;
}
.validate-table td
{
	border-style:solid;
	border-color:black;
	border-width:1px;
	padding:5px;
}

