/*@charset "UTF-8";*/
html {
	margin: 0 0 10px 0;
	padding: 0 0 10px 0;
	height:100%;
}

body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background-color: #95BEE6;
	margin: 0;
	padding: 0;
	color: #000;
	background-image: url(http://www.antwerpsupporter.be/v2/images/gbacktop.gif);
	background-repeat: repeat-x;
	background-position:top;
	height:97%;
	padding-bottom:30px;   /* Height of the footer */
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ This fixed width container surrounds all other divs ~~ */
.container {
	width: 960px;
	background-color: #FFFFFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	border: solid 1px #FF0000;
	margin-top: 15px;
	margin-bottom: 15px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	/*overflow: hidden; /* this declaration makes the .container understand where the floated columns within ends and contain them */
	min-height: 100%;
	position: relative;
}

/* ~~ The header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo. ~~ */
.header {
	background-color: #FF0000;
	padding-bottom:0px;
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
/* ~~ Sidebar1 isn't used anymore with the horizontal menu ~~ */
.sidebar1 {
	float: left;
	width: 165px;
	background-color: #EEEEEE;
	padding-bottom: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	padding-left:15px;
	padding-top:15px;
}

.content {
	padding: 10px 0;
	width: 680px;
	float: left;
	padding-bottom: 50px;
}

.sidebar2 {
	float: left;
	width: 280px;
	background-color: #EEEEEE;
	padding: 5px 0;
	margin-top: 28px;
	margin-bottom: 10px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The footer styles ~~ */
.footer {
	padding: 10px 0;
	background-color: #F9F7F6;
	position: absolute;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	border-top-color: #FCC;
	border-top-style: dashed;
	border-top-width: 1px;
	bottom: 0px;
	width: 100%;
	height: 30px;
}

/* ~~ Miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the .container) if the .footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/* ~~ Miscellaneous website definitions ~~ */
.rlink {
	font-size:10px;
	color:black;
	padding:  3px 7px 3px 7px;
}

.items {
	font-size:10px;
	display:inline;
	padding:  3px 7px 4px 7px;
}

a.items:hover {
	color:#000000;
	background-color:#F5D4D8;
}

.nieuwstitel {
	color: #09C;
	font-size: 14px;
	text-align: left;
	padding-left:10px;
	font-family: Verdana, Geneva, sans-serif;
}

.verslag-titel {
	color: #F00;
	font-size: 16px;
	text-align: center;
	font-family: Verdana, Geneva, sans-serif;
	font-style: italic;
	line-height: 40px;
}

.nieuws {
	color: #666;
	font-size: 14px;
	text-align: justify;
	padding-left: 40px;
	padding-right: 30px;
}

.nieuwsartikel-nieuwsbron {
	color: #999;
	font-size: 10px;
	text-align: left;
	padding-left: 45px;
	padding-top: 10px;
}

.small-black-text {
	color: #000000;
	font-size: 10px;
	text-align: left;
	padding: 5px 0 0 20px;
}

.grey-text {
	color: #777777;
	font-size: 13px;
	text-align: justify;
	padding: 5px 0 0 0;
	font-family: Verdana, Geneva, sans-serif;
}

.grey-text-centered {
	color: #777777;
	font-size: 13px;
	text-align: center;
	padding: 5px 0 0 0;
	font-family: Verdana, Geneva, sans-serif;
}

.nieuws-readmore {
	font-size: 10px;
	display: inline;
	padding: 3px 7px 4px 7px;
	margin: 0px 0px 10px 15px;
	padding-left: 10px;
}

a.nieuws-readmore:hover {
	color:#000000;
	background-color:#F5D4D8;
}

.linkitem {
	font-size: 12px;
	display: inline;
	margin: 0px 0px 0px 0px;
	padding: 3px 7px 4px 7px;
}

a.linkitem:hover {
	color:#000000;
	background-color:#F5D4D8;
}

.opstelling {
	font-size: 12px;
	display: inline;
	padding: 3px 3px 3px 3px;
	margin: 0px 0px 0px 0px;
	padding-left: 0px;
}

a.opstelling:hover {
	color:#FFFFFF;
	background-color:#FF0000;
}

.nieuwsarchief {
	font-size: 12px;
	display: inline;
	padding: 3px 7px 4px 7px;
	margin: 0px 0px 10px 0px;
}

a.nieuwsarchief:hover {
	color:#000000;
	background-color:#F5D4D8;
}

.red-header {
	height: 25px;
	line-height: 25px;
	font-family: Verdana, Arial;
	font-size: 10pt;
	font-weight: bold;
	text-align: center;
	background-image: url("css_menu/mainbk.png");
	background-repeat: repeat;
	background-position: 0 0;
	background-color: #FF0000;
	border-radius: 10px;
	border-style: dashed;
	border-color: #666;
	border-width: 1px;
	margin: 18px 10px 18px 18px;
}

.red-header-double {
	height: 50px;
	line-height: 25px;
	font-family: Verdana, Arial;
	font-size: 10pt;
	font-weight: bold;
	text-align: center;
	background-image: url("css_menu/mainbk.png");
	background-repeat: repeat;
	background-position: 0 0;
	background-color: #FF0000;
	border-radius: 10px;
	border-style: dashed;
	border-color: #666;
	border-width: 1px;
	margin: 18px 10px 18px 18px;
}

.grey-header {
	height: 25px;
	line-height: 25px;
	font-family: Verdana, Arial;
	font-size: 10pt;
	font-weight: bold;
	text-align: center;
	background-image: url("css_menu/mainbk.png");
	background-repeat: repeat;
	background-position: 0 0;
	background-color: #666666;
	border-radius: 10px;
	border-style: dashed;
	border-color: #666;
	border-width: 1px;
	margin: 18px 10px 18px 18px;
}

.logo-grey-header {
	line-height: 25px;
	font-family: Verdana, Arial;
	font-size: 10pt;
	font-weight: bold;
	text-align: center;
	background-image: url("css_menu/mainbk.png");
	background-repeat: repeat;
	background-position: 0 0;
	background-color: #666666;
	border-radius: 10px;
	border-style: dashed;
	border-color: #666;
	border-width: 1px;
	margin: 18px 10px 18px 18px;
	padding: 10px 0 10px 0;
}

.myline {
	border-top: 1px dashed #F5D4D8;
	height: 1px;
	padding: 0px 0px 0px 0px;
	margin: 8px 10px 8px 20px;
	overflow: hidden;
}

.fotolink {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	display:inline;
	padding:  3px 7px 4px 7px;
}

a.fotolink:hover {
	color:#000000;
	background-color:#F5D4D8;
}

.last-foto {
	padding: 0 20px 0 40px;
}

.iconlist{
	list-style: none;
	margin: 0 0 0 -15px;
	padding: 0 0 0 -15px;
}

li.voetbal{
	background-image: url(http://www.antwerpsupporter.be/v2/images/icons/nike-ball_red.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	background-size: 30px 30px;
	padding-left: 40px;	
}

li.photo{
	background-image: url(http://www.antwerpsupporter.be/v2/images/icons/photo.png);
	background-repeat: no-repeat;
	background-position: 0px -3px;
	background-size: 30px 30px;
	padding: 0 0 15px 40px;
}

#table1{
	font-family: Verdana, Geneva, sans-serif;
	border-collapse: collapse;
}

#table1 td{
	font-size: 13px;
	border-bottom: 1px dashed #F5D4D8;
	border-top: 1px dashed #F5D4D8;
	padding: 3px 7px 2px 7px;
}

#table1 tr.alt td{
	color: #000000;
	background-color: #E0E0E0;
}

#table1 tr.alt2 td{
	color: #000000;
	background-color: #F0F0F0;
}

#table1 tr.own td{
	color: #FF0000;
}

#table1 tr.alt-own td{
	color: #FF0000;
	background-color: #CCCCCC;
}

#table2{
	font-family: Verdana, Geneva, sans-serif;
	border-collapse: collapse;
}

#table2 td{
	font-size: 13px;
	padding: 3px 7px 2px 7px;
	border-left: solid #000 1px;
	border-right: solid #000 1px;
}

#table2 tr.alt td{
	color: #000000;
	background-color: #E0E0E0;
}

#table2 tr.alt2 td{
	color: #000000;
	background-color: #F0F0F0;
}

#table2 tr.own td{
	color: #FF0000;
}

#table2 tr.alt-own td{
	color: #FF0000;
	background-color: #CCCCCC;
}

/* Opmaak tekst Matchfiche */
.match-text {
	color: #000000;
	font-size: 14px;
	text-align: justify;
	padding: 10px 0 0 0;
	font-family: Verdana, Geneva, sans-serif;
}


/* Kleuropmaak Tegenstanders */
.a0 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #000000;
	background-color: #CCCCCC;
	border: thin solid #666666;
	text-align: center;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a1 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #FFFFFF;
	background-color: #FF0000;
	border: thin dashed #FF0000;
	text-align: center;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a2 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #FFFF00;
	background-color: #000000;
	border: thin solid #FFFF00;
	text-align: center;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a3 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #FFFFFF;
	background-color: #009933;
	text-align: center;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a4 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #000000;
	background-color: #009933;
	text-align: center;
	border: thin solid #000000;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a5 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #FFFFFF;
	background-color: #9966FF;
	text-align: center;
	border: thin dashed #9966FF;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a6 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #000000;
	background-color: #0033CC;
	text-align: center;
	border: thin solid #000000;
	font-weight: bold;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a7 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #FFFFFF;
	background-color: #0033CC;
	text-align: center;
	border: thin dashed #0033CC;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a8 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #0033CC;
	background-color: #FFFF00;
	text-align: center;
	border: thin solid #0033CC;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a9 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #FFFFFF;
	background-color: #000000;
	text-align: center;
	border: thin dashed #000000;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a10 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #006600;
	background-color: #FF0000;
	text-align: center;
	border: thin solid #006600;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a11 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #0033CC;
	background-color: #FF0000;
	text-align: center;
	border: thin solid #0033CC;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a12 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #FFFFFF;
	background-color: #FF6600;
	text-align: center;
	border: thin dashed #FF6600;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a13 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #FFFF00;
	background-color: #FF0000;
	text-align: center;
	border: thin solid #FFFF00;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a14 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #FFFF00;
	background-color: #FF0000;
	text-align: center;
	border: thin solid #9966FF;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a15 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #0099FF;
	background-color: #009900;
	text-align: center;
	border: thin solid #0099FF;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a16 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #FFFFFF;
	background-color: #000000;
	text-align: center;
	border: thin solid #FF0000;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a17 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #6C1919;
	background-color: #FFFFFF;
	text-align: center;
	border: thin solid #6C1919;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a18 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #000000;
	background-color: #FF0000;
	text-align: center;
	border: thin solid #000000;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a19 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #FF3300;
	background-color: #FF9933;
	text-align: center;
	border: thin solid #FF3300;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a20 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #FFFF00;
	background-color: #006600;
	text-align: center;
	border: thin solid #FF3300;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a21 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #000000;
	background-color: #FF9900;
	text-align: center;
	border: thin solid #000000;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a22 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #3994CE;
	background-color: #941021;
	text-align: center;
	border: thin solid #3994CE;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a23 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #D23333;
	background-color: #7AB3A4;
	text-align: center;
	border: thin solid #000000;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a24 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #EF71C6;
	background-color: #293173;
	text-align: center;
	border: thin solid #EF71C6;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a25 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #FFFF00;
	background-color: #009900;
	text-align: center;
	border: thin none;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a26 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #FFFFFF;
	background-color: #15ADD4;
	text-align: center;
	border: thin none;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a27 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #8C1A74;
	background-color: #FF0033;
	text-align: center;
	border: thin solid #FFFFFF;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a28 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #FF0033;
	background-color: #FFFFFF;
	text-align: center;
	border: thin solid #FF0033;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}
.a29 {
	font-family: Verdana, Arial;
	font-size: 24px;
	color: #FF9900;
	background-color: #C03;
	text-align: center;
	border: thin solid #FF9900;
	background-image: url("css_menu/mainbk.png");
	border-radius: 10px;
}

/* Scorebord Matchfiche */
div.score {
	width: 680px;
	height: 100px;
	background: url(http://www.antwerpsupporter.be/v2/images/backgrounds/match-score-bg.gif) no-repeat center top;
	position: relative;
	margin: 10px 0 19px;
}

div.score div.team {
	width:380px;
	position:absolute;
	top:8px;
	left:350px;
}
div.teamhome{
	width: 280px;
	position: absolute;
	top: 8px;
	left: 0px;
	text-align: center;	
}
div.teamhome div.teamLogo {
	left: 85px;
}

div#right-column div.score {
	height:53px;
	margin-bottom:34px;
}
div#right-column div.score div.team {
	width:230px;
	left:370px;
}
div#right-column div.score div.team h3 {
	font-size:14px;
}
div.score div.teamLogo {
	position:absolute;
	top:60px;
	right:140px;
}
div.score div.home div.teamLogo {
	left: 20px;
}
div.score div.home, div#right-column div.score div.home {
	left:80px;
}
div.score h3 {
	color: #FFF;
	font-size: 18px;
	font-family: 'Verdana, Arial', sans-serif;
	line-height: 36px;
	text-transform: uppercase;
	font-weight: normal;
	margin: 0;
	text-align: center;
}
div.score div.home h3 {
	text-align:left;
}
div.score div.result {
	width:138px;
	height:63px;
	position:absolute;
	top:-6px;
	left:50%;
	margin:0 0 0 -69px;
	background:url(http://www.antwerpsupporter.be/v2/images/backgrounds/score-result-bg.gif) repeat-x;
	color:#FFF; text-align:center; line-height:63px; font-size:36px; font-family:'Verdana, Arial', sans-serif; text-shadow:0 1px 0 #000;
	border:1px solid #000; border-radius:2px;
}

span.a {
  display: inline; 
}

div.score div.result p.matchTime {
	line-height: 25px;
	width: 260px;
	position: absolute;
	left: -80px;
	top:70px;
}
div.score div.result p.matchTime span {
	display:inline-block;
	height:25px;
	background-color:#1e1e1e;
	border:1px solid #1e1e1e; border-radius:3px;
	font-size:16px;
	line-height:25px;
	padding:0 8px;
	-moz-box-shadow:inset 0 0 1px #fff;
	-webkit-box-shadow:inset 0 0 1px #fff;
	box-shadow:inset 0 0 1px #fff;
}
div.score div.result p.matchTime2 {
	line-height: 25px;
	width: 260px;
	position: absolute;
	left: -80px;
	top: 105px;
}
div.score div.result p.matchTime2 span {
	display:inline-block;
	height:25px;
	background-color:#1e1e1e;
	border:1px solid #1e1e1e; border-radius:3px;
	font-size:16px;
	line-height:25px;
	padding:0 8px;
	-moz-box-shadow:inset 0 0 1px #fff;
	-webkit-box-shadow:inset 0 0 1px #fff;
	box-shadow:inset 0 0 1px #fff;
}
div.score div.result p.matchTime3 {
	line-height: 25px;
	width: 280px;
	position: absolute;
	left: -90px;
	top: 139px;
}
div.score div.result p.matchTime3 span {
	display:inline-block;
	height:25px;
	background-color:#1e1e1e;
	border:1px solid #1e1e1e; border-radius:3px;
	font-size:16px;
	line-height:25px;
	padding:0 8px;
	-moz-box-shadow:inset 0 0 1px #fff;
	-webkit-box-shadow:inset 0 0 1px #fff;
	box-shadow:inset 0 0 1px #fff;
}

.clear{
	clear:both;
	font-size:0;
	line-height:0;
}

/* Pagina Kernspelers */

.pic-elftal {
	height: 341px;
	width: 570px;
	overflow: hidden;
	border: 10px solid white;
	-webkit-box-shadow: 5px 5px 5px #999;
	box-shadow: 5px 5px 5px #999;
	padding: 0 0 0 0;
}

.pic-port {
	height: 150px;
	width: 100px;
	overflow: hidden;
	border: 10px solid white;
	-webkit-box-shadow: 5px 5px 5px #111;
	box-shadow: 5px 5px 5px #111;
	float: left;
	padding: 0 0 0 0;
}
.pic-port:hover {
  cursor: pointer;
}

.morph {
  -webkit-transition: all 0.2s ease;
     -moz-transition: all 0.2s ease;
       -o-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
          transition: all 0.2s ease;
}
.morph:hover {
  border-radius: 50px;
  -webkit-transform: rotate(-10deg);
     -moz-transform: rotate(-10deg);
       -o-transform: rotate(-10deg);
      -ms-transform: rotate(-10deg);
          transform: rotate(-10deg);
}

a.portrettext {
    position: relative;
    width: 55px;
    text-decoration: none !important;
    text-align: center;
}
a.portrettext:after {
	content: attr(title-data);
	position: absolute;
	left: 0;
	bottom: 3px;
	padding: 0.5em 10px;
	width: 80px;
	background: rgba(0,0,0,0.6);
	text-decoration: none !important;
	color: #fff;
	opacity: 0;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}
a.portrettext:hover:after, a.portrettext:focus:after {
    opacity: 1.0;
	text-align:center;
}

/****************************************************************************/
/*********************************** SPELER *********************************/
/****************************************************************************/

#body .content .speler {
	border:#b5b5b5 solid 1px;
	padding:3px 3px 0 3px;
	background:#e8e8e8;
	position:relative;
	margin:0 0 14px 0;
	width:622px;
}

#body .content .speler h4 {
	background:url("css_menu/mainbk.png") repeat-x;
	padding:3px 0 0 16px;
	margin:0 0 9px 0;
	font-size:14px;
	color:#ff0000;
	height:23px;
}

#body .content .speler .spelerfoto {
	margin:5px 0 0 14px;
	float:left;	
	max-width: 160px;
}

#body .content .speler .spelerinfo {
	border:#bebebe solid 1px;
	padding:8px 0 0 15px;
	background:#f2f2f2;
	margin:0 0 8px 5px;
	height:240px;
	width:403px;
	float:left;
}

#body .content .speler .spelerinfo th {
	text-align:left;
	width:108px;
	color:#444;
}

#body .content .speler .spelerinfo td {
	font-weight:bold;
	color:#8d8787;
}

.tableheader {
background-color: #95BEE6;
color:white;
font-weight:bold;
}
.tablerow {
background-color: #A7D6F1;
color:white;
}
.message {
color: #FF0000;
font-weight: bold;
text-align: center;
width: 100%;
}


/****************************************************************************/
/******************* Opmaak invoerformulieren beheerszone *******************/
/****************************************************************************/
#admintable {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  border-collapse: collapse;
}

#admintable td, #admintable th {
  border: 1px solid #ddd;
  padding: 8px;
}

#admintable tr:nth-child(even){background-color: #f2f2f2;}

#admintable tr:hover {background-color: #ddd;}

#admintable th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #A7D6F1;
  color: white;
}

#admintable {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  border-collapse: collapse;
}

#admintable2 {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  border-collapse: collapse;
}

#admintable2 td, #admintable th {
  border: 1px solid #ddd;
  padding: 8px;
}

/*#admintable2 tr:nth-child(even){background-color: #f2f2f2;}*/

/*#admintable2 tr:hover {background-color: #ddd;}*/

#admintable2 th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #A7D6F1;
  color: white;
}

input[type=text] {
  width: 97%;
  padding: 6px 15px;
  margin: 6px 0;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

textarea {
  width: 97%;
  height: 150px;
  padding: 10px 15px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  resize: none;
  font-size: 16px;
  font-family: "Verdana", Times, serif;
}

#verslagtekst {
  width: 97%;
  height: 500px;
  padding: 10px 15px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  resize: vertical;
  font-size: 16px;
  font-family: "Verdana", Times, serif;
}

/*
#news-add {
  width: 97%;
  height: 250px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  resize: none;
}
*/

select {
  padding: 2px;
  border-radius: 5px;
  border: 2px solid #888888;
  background-color: #cccccc;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.18);
  font-size: 14px;
  /*height: 25px;*/
}

input[type="password"]
{
  width: 90%;
  padding: 8px 20px;
  margin: 6px 0;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

#user-login {
  width: 50%;
  background-image: url(../images/icon-username.png); 
  background-repeat:  no-repeat; 
  background-position: 3px 5px;
  text-align: center;
  padding: 8px 20px;
  margin: 6px 0;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

#user-pw {
  width: 50%;
  background-image: url(../images/icon-password.png); 
  background-repeat:  no-repeat; 
  background-position: 3px 5px;
  text-align: center;
  padding: 8px 20px;
  margin: 6px 0;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}
/*
#titel-input input[type="text"] {
  width: 100%;
  padding: 8px 10px;
  margin: auto;
  box-sizing: border-box;
  border: 2px solid #ccc;
  /*border-radius: 4px;*/
  font-size: 14px;
}
*/
#lengte {
  width: 20%;
  padding: 8px 20px;
  margin: auto;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

#gewicht {
  width: 20%;
  padding: 8px 20px;
  margin: auto;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

fieldset {
  float: left;
  width: 96%;
  border:2px solid #ccc;
  -moz-border-radius:8px;
  -webkit-border-radius:8px;	
  border-radius:8px;	
}
  
fieldset legend {
  font-size: 16px;
}

.titel-input fieldset {
  float: left;
  /*width: 46%;*/
  border:2px solid #ccc;
  -moz-border-radius:8px;
  -webkit-border-radius:8px;	
  border-radius:8px;	
}

/* Opmaak sliders*/

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 24px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: red;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: green;
  /*background-color: #2196F3;*/
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
