/*   SELECTORS   */
/*  Shift Enter inside TD will apply TD properties 
WARNING :: Enter Key will apply <p> tag properties for text 
PADDING + Text-Indent will create margin in TR / TD */


.pad1 {
	padding: 10px 30px 10px 10px;
}



/*  CSS COMBINE TEST   */
.newtd{

	background-color: #66CCFF;
	border-style: solid;
	border-width: 1px;
	border-color: #003399;
	border-radius: 6px 6px 6px 6px;
}
.blue{
	background-color:#0099FF;
}


/*  SPACE   */

.trpx1 {
	line-height: 5px;
}
.trpx2 {
	line-height: 10px;
}
.trpx3 {
	line-height: 15px;
}
.trpx15 {
	line-height: 15px;
}
.brdr {
	border: solid 1px #000;
}


/*  Images   */
.picIns1 {
	position: relative;
	float:left;
	padding-right: 10px;
}
.picIns2{
	position: relative;
	float:right;
	padding-left: 10px;
}

/*  BoxShadow   */
.text{
	background-color: #FFFFFF;
	border: solid 1px #000000;
	box-shadow: 2px 3px 8px #565757;
	border-radius:5px 5px;
	padding: 10px;
}

/*  Text Shadow   */
.Shadow {
	font-size: 32px;
	text-shadow: 5px 5px 10px #000, -1px -1px 2px #a2bd5f ;
}
.Glow {
	font-size: 32px;
	text-shadow: 0px 0px 20px #000, -1px -1px 2px #ff0000;
}
.BluGlow {
	font-size: 36px;
	text-shadow: 0px 2px 5px #000, -1px 1px 2px #000000;
}
