/**
@copyright Uday Thombre (uday@udaythombre.com)
@author Uday Thombre (uday@udaythombre.com)
@description Uday Thombre - Cascade Style Sheets - Root
@intelligenceProperty Uday Thombre (uday@udaythombre.com)
 */


*{
    box-sizing: border-box;
}
.row {
	background: #4b545f;
    background: linear-gradient(top, #4f5964 0%, #5f6975 40%);
    background: -moz-linear-gradient(top, #4f5964 0%, #5f6975 40%);
    background: -webkit-linear-gradient(top, #4f5964 0%,#5f6975 40%);
    box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
    padding: 0 1px;
	background: #4b545f;
	color: rgb(254, 255, 255);
	text-align: justify; 
	font-size: 11px;
	border-radius: 5px;
}
.row h1,h2,h3 {
	position: relative;
	background: rgb(213, 213, 213);
	color: red;	
	padding: 10px;	
	font-size: 18px;
	text-align: left;
	font-variant: small-caps;
}

.row h4 {
	position: relative;
	background: rgb(213, 213, 213);
	color: rgb(148, 17, 0);	
	padding: 10px;	
	font-size: 14px;
	text-align: left;
	font-variant: small-caps;
}

.row h5,h6 {
	position: relative;
	background: rgb(213, 213, 213);
	color: rgb(148, 17, 0);	
	padding: 10px;	
	font-size: 12px;
	text-align: left;
	font-variant: small-caps;
}

.row h6 {
	position: relative;
	background: rgb(213, 213, 213);
	color: rgb(148, 17, 0);	
	padding: 10px;	
	font-size: 10px;
	text-align: left;
	font-variant: small-caps;
}

.row h1:after, h2:after, h3:after, h4:after, h5:after, h6:after {
	display: block;
}

.row p {
	position: relative;
	text-align: left;
	font-size: 12px;
}

.row select {
	left: 15px;
	top: 15px;
	position: absolute;
	width: 700px;
	max-width: 700px;
	background: #4b545f;
	color: rgb(254, 255, 255);
	text-align: left; 
	font-size: 12px;
	font-variant: small-caps;
}

.row select option {
	background: #4b545f;
	font-variant: small-caps;
}

.row select option img {
	position: absolute;
	padding : 2px;
	left: 1px;
	top: 1px;
	width: 10px;
	max-width: 20px;
	height: 5px;
	max-height: 10px;
}

.row a {
	background: white;
	position: relative;
	padding: 3px;
	font-variant: small-caps;
	font-size: 11px;
}

.row:after {
    content: "";
    clear: both;
    display: block;
}
.row img {
    max-height: 120px;
    max-width: 1100px;
}
[class*=col-] {
    float: left;
    padding: 15px;
}
[class*=col25-] {
	width: 25%;
	position: relative;
	float: left;
	padding: 15px;
}
[class*=col25-] img {
	left: 0px;
    top: 0px;
    height: 126px;
    width: 126px;
    alternate: Uday Thombre;
}
[class*=col25-]:after {
	display: block;
}
[class*=col33-] {
	width: 33.33%;
	position: relative;
	float: left;
	padding: 15px;
}
[class*=col50-] {
	width: 50%;
	position: relative;
	float: left;
	padding: 15px;
}
[class*=col75-] {
	width: 75%;
	position: relative;
	float: left;
	padding: 15px;
}
[class*=col90-] {
	width: 90%;
	position: relative;
	float: left;
	padding: 15px;
}
[class*=col100-] {
	width: 100%;
	position: relative;
	float: left;
	padding: 15px;
}
.button {
	background: #efefef;
	background: linear-gradient(top, #efefef 0%, #bbbbbb 100%);
	background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%);
	background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%);
	background-repeat : no-repeat;
	background-position: center;
	box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
	padding: 0 1px;
	border-radius: 10px;
	list-style: none;
	position: absolute;
	left: 15px;
	top: 27px;
	display: inline-table;
	font-size: 11px;
	float: left;
	display: block; padding: 10px 20px;
	color: #757575; text-decoration: none;
	font-variant: small-caps; 
}

.tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted black; /*dotted indication for tool tip existence*/
}

.tooltip .tooltiptext {
	visibility: hidden;
	background: #4b545f;
	color: rgb(254, 255, 255);
	text-align: center; 
	padding: 5px 0;
	border-radius: 6px;
	
	/* position tooltip text */
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -60%;
	
	/* fade in tooltip */
	opacity: 0;
	transition: opacity 0.3s;
	
}

.tooltip .tooltiptext:after{
	/* Tooltip Arrow */
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #4b545f transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

html {
    font-family: Lucida Sans, sans-serif;
	width: 1000px;
	max-width: 1000px;
	height: 1000px;
	max-height: 1190px;
}

/*body {
	width: 1100px;
	max-width: 1100px;
	height: 1190px;
	max-height: 1190px;
}*/