	html, body
	{
		height: 100%;
	}
	
	body
	{
	    margin: 0px;
	    padding: 0px;
	    /* background: #2056ac; */
	    font-family: 'Questrial', sans-serif;
	    font-size: 12pt;
	    color: rgba(0,0,0,.6);
	}	
	
	h1, h2, h3
	{
		margin: 0;
		padding: 0;
		color: #404040;
	}
	
	p, ol, ul
	{
		margin-top: 0;
	}
	
	ol, ul
	{
		padding: 0;
		list-style: none;
	}
	
	p
	{
		line-height: 180%;
	}
	
	strong
	{
	}
	
	a
	{
		color: #2056ac;
	}
	
	a:hover
	{
		text-decoration: none;
	}
	

	.container
	{
		margin: 0px auto;
		width: 1200px;
	}
	

/*********************************************************************************/
/* Form Style                                                                    */
/*********************************************************************************/

		form
		{
		}
		
			form label
			{
				display: block;
				text-align: left;
				margin-bottom: 0.5em;
			}
			
			form .submit
			{
				margin-top: 2em;
				line-height: 1.5em;
				font-size: 1.3em;
			}
		
			form input.text,
			form select,
			form textarea
			{
				position: relative;
				-webkit-appearance: none;
				display: block;
				border: 0;
				background: #fff;
				background: rgba(255,255,255,0.75);
				width: 100%;
				border-radius: 0.50em;
				margin: 1em 0em;
				padding: 1.50em 1em;
				box-shadow: inset 0 0.1em 0.1em 0 rgba(0,0,0,0.05);
				border: solid 1px rgba(0,0,0,0.15);
				-moz-transition: all 0.35s ease-in-out;
				-webkit-transition: all 0.35s ease-in-out;
				-o-transition: all 0.35s ease-in-out;
				-ms-transition: all 0.35s ease-in-out;
				transition: all 0.35s ease-in-out;
				font-size: 1em;
				outline: none;
			}

				form input.text:hover,
				form select:hover,
				form textarea:hover
				{
				}

				form input.text:focus,
				form select:focus,
				form textarea:focus
				{
					box-shadow: 0 0 2px 1px #E0E0E0;
					background: #fff;
				}
				
				form textarea
				{
					min-height: 12em;
				}

				form .formerize-placeholder
				{
					color: #555 !important;
				}

				form ::-webkit-input-placeholder
				{
					color: #555 !important;
				}

				form :-moz-placeholder
				{
					color: #555 !important;
				}

				form ::-moz-placeholder
				{
					color: #555 !important;
				}

				form :-ms-input-placeholder
				{
					color: #555 !important;
				}

				form ::-moz-focus-inner
				{
					border: 0;
				}


/*********************************************************************************/
/* Image Style                                                                   */
/*********************************************************************************/

	.image
	{
		display: inline-block;
		border: 1px solid rgba(0,0,0,.1);
	}
	
	.image img
	{
		display: block;
		width: 100%;
	}
	
	.image-full
	{
		display: block;
		width: 100%;
		margin: 0 0 3em 0;
	}
	
	.image-left
	{
		float: left;
		margin: 0 2em 2em 0;
	}
	
	.image-centered
	{
		display: block;
		margin: 0 0 2em 0;
	}
	
	.image-centered img
	{
		margin: 0 auto;
		width: auto;
	}

/*********************************************************************************/
/* List Styles                                                                   */
/*********************************************************************************/

	ul.style1
	{
	}


/*********************************************************************************/
/* Social Icon Styles                                                            */
/*********************************************************************************/

	ul.contact
	{
		margin: 0;
		padding: 2em 0em 0em 0em;
		list-style: none;
	}
	
	ul.contact li
	{
		display: inline-block;
		padding: 0em 0.10em;
		font-size: 1em;
	}
	
	ul.contact li span
	{
		display: none;
		margin: 0;
		padding: 0;
	}
	
	ul.contact li a
	{
		color: #FFF;
	}
	
	ul.contact li a:before
	{
		display: inline-block;
		background: linear-gradient(135deg, #4C93B9 0%, #2056ac 100%); /* Blue gradient */
		width: 40px;
		height: 40px;
		line-height: 40px;
		text-align: center;
		color: rgba(255,255,255,1);
		border-radius: 50%; /* Ensure perfect roundness */
		box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* Subtle shadow for depth */
		transition: all 0.3s ease; /* Smooth transitions */
	}
	
	ul.contact li a:hover:before
	{
		background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%); /* Gold gradient on hover */
		box-shadow: 0 6px 15px rgba(0,0,0,0.3); /* More pronounced shadow on hover */
		transform: translateY(-2px); /* Slight lift effect */
	}
	

/*********************************************************************************/
/* Button Style                                                                  */
/*********************************************************************************/

	.button
	{
		display: inline-block;
		margin-top: 2em;
		padding: 0.8em 2em;
		background: linear-gradient(135deg, #64ABD1 0%, #4A90E2 100%);
		line-height: 1.8em;
		letter-spacing: 1px;
		text-decoration: none;
		font-size: 1em;
		color: #FFF;
		border-radius: 8px;
		box-shadow: 0 4px 15px rgba(100, 171, 209, 0.3);
		transition: all 0.3s ease;
		position: relative;
		overflow: hidden;
	}
	
	.button:hover
	{
		background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
		box-shadow: 0 6px 20px rgba(100, 171, 209, 0.4);
		transform: translateY(-2px);
	}
	
	.button:active
	{
		transform: translateY(0);
		box-shadow: 0 2px 10px rgba(100, 171, 209, 0.3);
	}
	
	.button:before
	{
		display: inline-block;
		background: linear-gradient(135deg, #8DCB89 0%, #5CB85C 100%);
		margin-right: 1em;
		width: 40px;
		height: 40px;
		line-height: 40px;
		border-radius: 50%;
		text-align: center;
		color: #FFF;
		box-shadow: 0 2px 8px rgba(141, 203, 137, 0.3);
		transition: all 0.3s ease;
		content: "→";
		font-weight: bold;
		font-size: 1.2em;
	}
	
	.button:hover:before
	{
		background: linear-gradient(135deg, #5CB85C 0%, #4CAE4C 100%);
		box-shadow: 0 4px 12px rgba(141, 203, 137, 0.4);
		transform: scale(1.1);
	}
	
	.button-small
	{
		padding: 0.6em 1.5em;
		font-size: 0.9em;
		margin-top: 1.5em;
	}
	
	.button-small:before
	{
		width: 30px;
		height: 30px;
		line-height: 30px;
		margin-right: 0.8em;
		content: "→";
		font-weight: bold;
		font-size: 1em;
	}
		
/*********************************************************************************/
/* Heading Titles                                                                */
/*********************************************************************************/

	.title
	{
		margin-bottom: 3em;
	}
	
	.title h2
	{
		font-size: 2.8em;
	}
	
	.title .byline
	{
		font-size: 1.1em;
		color: #6F6F6F;
	}

/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/

	#header-wrapper
	{
		overflow: hidden;
		background:
			linear-gradient(180deg, rgba(6,32,62,0.95) 0%, rgba(18,61,100,0.95) 100%),
			repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 10px);
		color: #ffffff;
	}

	#header
	{
		text-align: center;
	}

/*********************************************************************************/
/* Logo                                                                          */
/*********************************************************************************/

	#logo
	{
		padding: 2em 0em 1em 0em;
	}
	
	#logo h1
	{
		display: block;
		margin-bottom: 0.20em;
		padding: 0.20em 0.9em;
		font-size: 3.5em;
		color: #FFD700; /* Gold */
	}
	
	#logo a
	{
		text-decoration: none;
		color: #FFF;
	}
	
	#logo span
	{
		text-transform: uppercase;
		font-size: 2.90em;
		color: rgba(255,255,255,1);
	}

	#logo span a
	{
		color: rgba(255,255,255,0.8);
	}

    #red-uni-logo {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1000;
    }

	
	

/*********************************************************************************/
/* Menu                                                                          */
/*********************************************************************************/

	#menu
	{
		height: 60px;
	}
	
	#menu ul
	{
		display: inline-block;
		padding: 0em 2em;
		text-align: center;
	}
	
	#menu li
	{
		display: inline-block;
	}
	
	#menu li a, #menu li span
	{
		display: inline-block;
		padding: 0em 1.5em;
		text-decoration: none;
		font-size: 0.90em;
		font-weight: 600;
		text-transform: uppercase;
		line-height: 60px;
		outline: 0;
		color: #FFD700; /* Gold text */
		transition: all 0.3s ease;
		position: relative;
	}
	
	#menu li a::after
	{
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 0;
		height: 3px;
		background: #FFD700; /* Gold underline */
		transition: all 0.3s ease;
		transform: translateX(-50%);
	}
	
	#menu li:hover a, #menu li.active a, #menu li.active span
	{
		color: #FFF; /* White text on hover/active */
		background: #D4AF37; /* Darker gold background */
		border-radius: 5px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	}
	
	#menu li:hover a::after, #menu li.active a::after
	{
		width: 100%;
	}
	
	#menu .current_page_item a
	{
	}
	

/*********************************************************************************/
/* Language Switcher                                                            */
/*********************************************************************************/

	#language-switcher
	{
		text-align: center;
		padding: 1em 0;
		background: rgba(255, 255, 255, 0.1);
	}
	
	#language-switcher a
	{
		display: inline-block;
		margin: 0 0.5em;
		padding: 0.5em;
		border: 2px solid #FFD700;
		border-radius: 8px;
		background: rgba(255, 255, 255, 0.8);
		transition: all 0.3s ease;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	}
	
	#language-switcher a:hover
	{
		background: #FFD700;
		border-color: #D4AF37;
		transform: scale(1.05);
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	}
	
	#language-switcher img
	{
		width: 50px;
		height: 40px;
		transition: all 0.3s ease;
	}
	
	#language-switcher a:hover img
	{
		transform: scale(1.1);
	}

/*********************************************************************************/
/* Banner                                                                        */
/*********************************************************************************/

	#banner
	{
		padding-top: 5em;
	}

    #banner img {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        object-fit: cover;
        object-position: center;
    }

/*********************************************************************************/
/* Wrapper                                                                       */
/*********************************************************************************/


	.wrapper
	{
		overflow: hidden;
		padding: 0em 0em 5em 0em;
		background: #FFFACD; /* Light gold */
	}

	#wrapper1
	{
		background: #FFF;
	}

	#wrapper2
	{
		overflow: hidden;
		background: #F3F3F3;
		padding: 5em 0em;
		text-align: center;
	}

	#wrapper3
	{
	}
	
	#wrapper4
	{
	}

/*********************************************************************************/
/* Welcome                                                                       */
/*********************************************************************************/

	#welcome
	{
		overflow: hidden;
		width: 1000px;
		padding: 6em 100px 0em 100px;
		text-align: center;
	}
	
	#welcome .content
	{
		padding: 0em 8em;
	}
	
	#welcome .title h2
	{
	}
	
	#welcome a,
	#welcome strong
	{
	}

/*********************************************************************************/
/* Page                                                                          */
/*********************************************************************************/

	#page-wrapper
	{
		overflow: hidden;
		background: #2F1E28;
		padding: 3em 0em 6em 0em;
		text-align: center;
	}

	#page
	{
	}

/*********************************************************************************/
/* Content                                                                       */
/*********************************************************************************/

	#content
	{
		float: left;
		width: 700px;
		padding-right: 100px;
		border-right: 1px solid rgba(0,0,0,.1);
	}

/*********************************************************************************/
/* Sidebar                                                                       */
/*********************************************************************************/

	#sidebar
	{
		float: right;
		width: 350px;
	}

/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/

	#footer
	{
		overflow: hidden;
		padding: 2em 0em;
		background:
			linear-gradient(180deg, rgba(6,32,62,0.95) 0%, rgba(18,61,100,0.95) 100%),
			repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 10px);
		text-align: center;
		box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
	}
	
	#footer .container
	{
		display: flex;
		justify-content: space-around;
		align-items: center;
		flex-wrap: wrap;
		max-width: 1200px;
		margin: 0 auto;
	}
		
	#footer .fbox1
	{
		flex: 1;
		min-width: 250px;
		padding: 2em;
		margin: 1em;
		background: rgba(255, 255, 255, 0.92);
		border-radius: 10px;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
		transition: transform 0.3s ease, box-shadow 0.3s ease;
		text-align: center;
		color: rgba(0,0,0,0.75);
	}
	
	#footer .fbox1:hover
	{
		transform: translateY(-5px);
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	}
	
	#footer .icon
	{
		display: block;
		margin-bottom: 1em;
		font-size: 3em;
		color: #FFD700; /* Gold */
		transition: color 0.3s ease;
	}
	
	#footer .fbox1:hover .icon
	{
		color: #D4AF37; /* Darker gold on hover */
	}

	
	#footer .title span
	{
		color: rgba(255,255,255,0.85);
	}

/*********************************************************************************/
/* Copyright                                                                     */
/*********************************************************************************/
	#copyright
	{
		overflow: hidden;
		padding: 0.75em 0em;
		text-align: center;
		background: linear-gradient(180deg, rgba(3,18,36,0.95), rgba(8,32,56,0.95));
		color: rgba(255,255,255,0.95);
	}

	#copyright .contact
	{
		margin: 0;
		padding: 0.5em 0 0 0;
	}

	#copyright p
	{
		letter-spacing: 1px;
		font-size: 0.90em;
		color: rgba(255,255,255,0.85);
	}

	#copyright a
	{
		text-decoration: none;
		color: rgba(255,255,255,0.95);
		font-weight: 600;
	}

/*********************************************************************************/
/* Newsletter                                                                    */
/*********************************************************************************/

	#newsletter
	{
		overflow: hidden;
		padding: 8em 0em;
		background: #EDEDED;
		text-align: center;
	}
	
	#newsletter .title h2
	{
		color: rgba(0,0,0,0.8);
	}
	
	#newsletter .content
	{
		width: 600px;
		margin: 0px auto;
	}
	
/*********************************************************************************/
/* Portfolio                                                                     */
/*********************************************************************************/

	#portfolio
	{
		overflow: hidden;
		padding-top: 5em;
		border-top: 1px solid rgba(0,0,0,0.2);
	}
	
	#portfolio .box
	{
		text-align: center;
		color: rgba(0,0,0,0.5);
	}
	
	#portfolio h3
	{
		display: block;
		padding-bottom: 1em;
		font-size: 2.8em;
		color: #404040;
	}

	#portfolio .title
	{
		text-align: center;
	}

	#portfolio .title h2
	{
		color: rgba(0,0,0,0.8);
	}

	.column1,
	.column2,
	.column3,
	.column4
	{
		width: 282px;
	}
	
	.column1,
	.column2,
	.column3
	{
		float: left;
		margin-right: 24px;
	}
	
	.column4
	{
		float: right;
	}

/*********************************************************************************/
/* Three Columns                                                                 */
/*********************************************************************************/

	#three-column
	{
		overflow: hidden;
		margin-top: 5em;
		padding-top: 1em;
		border-top: 1px solid rgba(0,0,0,0.2);
		text-align: center;
	}
	
	#three-column h2
	{
		margin: 1em 0em;
		font-size: 1.5em;
		font-weight: 700;
	}
	
	#three-column .icon
	{
		position: relative;
		display: block;
		margin: 0px auto 0.80em auto;
		background: none;
		line-height: 150px;
		font-size: 4em;
		width: 150px;
		height: 150px;
		border-radius: 100px;
		border: 6px solid #67128F;
		text-align: center;
		color: #FFF;
		
	}
		
	#three-column #tbox1,
	#three-column #tbox2,
	#three-column #tbox3
	{
		float: left;
		width: 320px;
		padding: 80px 40px 80px 40px;
	}
	
	#three-column .title
	{
		text-align: center;
	}
	
	#three-column .title h2
	{
		font-size: 1.60em;
	}
	
	#three-column .title .byline
	{
		padding-top: 0.50em;
		font-size: 0.90em;
		color: #858585;
	}

	#three-column .arrow-down
	{
		border-top-color: #292929;
	}
	
	
	ul.tools
	{
		margin: 0;
		padding: 0em 0em 0em 0em;
		list-style: none;
	}
	
	ul.tools li
	{
		display: inline-block;
		padding: 0em .2em;
		font-size: 4em;
	}
	
	ul.tools li span
	{
		display: none;
		margin: 0;
		padding: 0;
	}
	
	ul.tools li a
	{
		color: #FFF;
	}
	
	ul.tools li a:before
	{
		display: inline-block;
		background: #1ABC9C;
		width: 120px;
		height: 120px;
		border-radius: 50%;
		line-height: 120px;
		text-align: center;
		color: #FFFFFF;
	}
	
/*********************************************************************************/
/* Mobile Responsive Styles                                                      */
/*********************************************************************************/

/* Tablets (768px and below) */
@media (max-width: 1024px)
{
	.container
	{
		width: 90%;
		max-width: 900px;
	}
	
	#header img
	{
		width: 80px;
		height: 80px;
	}
	
	#logo h1
	{
		font-size: 2.8em;
	}
	
	#welcome
	{
		width: 100%;
		padding: 3em 2em 0em 2em;
	}
	
	#three-column #tbox1,
	#three-column #tbox2,
	#three-column #tbox3
	{
		width: 100%;
		float: none;
		padding: 2em;
		margin-bottom: 1em;
	}
	
	.column1,
	.column2,
	.column3,
	.column4
	{
		width: 100%;
		float: none;
		margin-right: 0;
		margin-bottom: 2em;
	}
	
	#menu
	{
		height: auto;
	}
	
	#menu ul
	{
		display: flex;
		flex-wrap: wrap;
		padding: 0.5em 1em;
	}
	
	#menu li a, #menu li span
	{
		padding: 0.5em 0.8em;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	#footer .container
	{
		flex-direction: column;
	}
	
	#footer .fbox1
	{
		width: 100%;
		min-width: auto;
		margin: 0.5em 0;
	}
}

/* Mobile (480px and below) */
@media (max-width: 767px)
{
	.container
	{
		width: 95%;
	}
	
	body
	{
		font-size: 11pt;
	}
	
	#header-wrapper
	{
		overflow: visible;
	}
	
	#header img
	{
		width: 60px;
		height: 60px;
		margin: 0.5em 0;
	}
	
	#logo
	{
		padding: 1em 0em 0.5em 0em;
	}
	
	#logo h1
	{
		font-size: 1.8em;
		padding: 0.1em 0.5em;
	}
	
	#menu
	{
		height: auto;
		display: block;
	}
	
	#menu ul
	{
		display: flex;
		flex-direction: column;
		padding: 0;
		width: 100%;
	}
	
	#menu li
	{
		width: 100%;
		display: block;
		border-bottom: 1px solid rgba(255, 215, 0, 0.2);
	}
	
	#menu li a, #menu li span
	{
		display: block;
		padding: 1em 1.5em;
		font-size: 0.85em;
		line-height: 1.2;
		width: 100%;
		box-sizing: border-box;
	}
	
	#menu li:hover a, #menu li.active a
	{
		border-radius: 0;
	}
	
	#language-switcher
	{
		padding: 0.5em 0;
	}
	
	#language-switcher img
	{
		width: 40px;
		height: 32px;
	}
	
	#language-switcher a
	{
		margin: 0.25em;
		padding: 0.25em;
	}
	
	#banner
	{
		padding-top: 2em;
	}
	
	#banner img
	{
		width: 100%;
		height: auto;
		max-height: 300px;
	}
	
	#welcome
	{
		width: 100%;
		padding: 1.5em 1em 0em 1em;
	}
	
	#welcome .content
	{
		padding: 0;
	}
	
	.title h2
	{
		font-size: 1.8em;
	}
	
	.title .byline
	{
		font-size: 0.9em;
	}
	
	#three-column
	{
		margin-top: 2em;
		padding-top: 1em;
	}
	
	#three-column h2
	{
		font-size: 1.2em;
		margin: 0.5em 0em;
	}
	
	#three-column .icon
	{
		width: 100px;
		height: 100px;
		line-height: 100px;
		font-size: 2.5em;
		border-width: 4px;
		margin-bottom: 0.5em;
	}
	
	#three-column #tbox1,
	#three-column #tbox2,
	#three-column #tbox3
	{
		width: 100%;
		float: none;
		padding: 1.5em;
		margin-bottom: 1em;
	}
	
	.column1,
	.column2,
	.column3,
	.column4
	{
		width: 100%;
		float: none;
		margin-right: 0;
		margin-bottom: 1.5em;
	}
	
	.button
	{
		display: block;
		margin: 1em 0;
		padding: 1em 1.5em;
		font-size: 0.9em;
		width: 100%;
		box-sizing: border-box;
		text-align: center;
	}
	
	.button:before
	{
		display: block;
		margin: 0 0 0.5em 0;
		width: 100%;
	}
	
	.button-small
	{
		display: inline-block;
		width: auto;
		margin-top: 1em;
	}
	
	#portfolio
	{
		padding-top: 2em;
	}
	
	#portfolio .box
	{
		padding: 1em;
	}
	
	#portfolio h3
	{
		font-size: 1em;
	}
	
	form input.text,
	form select,
	form textarea
	{
		padding: 1em;
		margin: 0.5em 0;
	}
	
	form label
	{
		margin-bottom: 0.25em;
	}
	
	#footer
	{
		padding: 1em 0em;
	}
	
	#footer .container
	{
		flex-direction: column;
	}
	
	#footer .fbox1
	{
		width: 100%;
		min-width: auto;
		padding: 1.5em;
		margin: 0.5em 0;
		flex: none;
	}
	
	#footer iframe
	{
		width: 100%;
		max-width: 300px;
		height: 200px;
	}
	
	#copyright
	{
		padding: 1em;
	}
	
	#copyright p
	{
		font-size: 0.8em;
		margin: 0.5em 0;
	}
	
	ul.contact
	{
		padding: 1em 0 0 0;
		flex-wrap: wrap;
	}
	
	ul.contact li
	{
		padding: 0.25em;
		font-size: 0.9em;
	}
	
	ul.contact li a:before
	{
		width: 35px;
		height: 35px;
		line-height: 35px;
		font-size: 0.9em;
	}
	
	#content
	{
		float: none;
		width: 100%;
		padding-right: 0;
		border-right: none;
		margin-bottom: 2em;
	}
	
	#sidebar
	{
		float: none;
		width: 100%;
	}
	
	.image-left
	{
		float: none;
		margin: 0 0 1em 0;
		width: 100%;
	}
	
	.wrapper
	{
		padding: 0em 0em 2em 0em;
	}
	
	#newsletter .content
	{
		width: 100%;
		padding: 0 1em;
	}
}

/* Small mobile devices (360px and below) */
@media (max-width: 480px)
{
	body
	{
		font-size: 10pt;
	}
	
	#logo h1
	{
		font-size: 1.4em;
	}
	
	.title h2
	{
		font-size: 1.4em;
	}
	
	#menu li a, #menu li span
	{
		padding: 0.8em 1em;
		font-size: 0.75em;
	}
	
	#banner
	{
		padding-top: 1em;
	}
	
	#banner img
	{
		max-height: 200px;
	}
	
	#three-column h2
	{
		font-size: 1em;
	}
	
	#three-column .icon
	{
		width: 80px;
		height: 80px;
		line-height: 80px;
		font-size: 2em;
	}
	
	.button,
	.button-small
	{
		padding: 0.8em 1em;
		font-size: 0.85em;
	}
	
	#footer .fbox1
	{
		padding: 1em;
	}
	
	#footer iframe
	{
		max-width: 250px;
		height: 180px;
	}
	
	ul.tools li a:before
	{
		width: 80px;
		height: 80px;
		line-height: 80px;
		font-size: 2.5em;
	}
}
