* {
	margin:0 0;
}
body {
	font-family: tahoma, arial, sans-serif;
	font-size: 14px;
	color: #003;
	letter-spacing:1px;
	background:url("images/bright_squares.png")repeat;
}
hr {
    border: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); 
    background-image:    -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); 
    background-image:     -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); 
    background-image:      -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); 
	margin:8px 0;
}
.graygradient {	
	background: rgb(246,248,249); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(246,248,249,1) 0%, rgba(229,235,238,1) 50%, rgba(215,222,227,1) 51%, rgba(245,247,249,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(246,248,249,1)), color-stop(50%,rgba(229,235,238,1)), color-stop(51%,rgba(215,222,227,1)), color-stop(100%,rgba(245,247,249,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(246,248,249,1) 0%,rgba(229,235,238,1) 50%,rgba(215,222,227,1) 51%,rgba(245,247,249,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(246,248,249,1) 0%,rgba(229,235,238,1) 50%,rgba(215,222,227,1) 51%,rgba(245,247,249,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(246,248,249,1) 0%,rgba(229,235,238,1) 50%,rgba(215,222,227,1) 51%,rgba(245,247,249,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(246,248,249,1) 0%,rgba(229,235,238,1) 50%,rgba(215,222,227,1) 51%,rgba(245,247,249,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6f8f9', endColorstr='#f5f7f9',GradientType=0 ); /* IE6-9 */
}
h1 {
    color: #064272;
}
.pgwidth {
	width:950px;
	margin:0 auto;
}
#header_wrap {

}
#header_img {
	background:url("images/header.png") no-repeat 50% 0;
	height:115px;
}
#logo {
    margin: 14px 150px;
    width: 25%;
}
#header {
	width:100%;
	background: rgb(46,65,81); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(46,65,81,1) 0%, rgba(21,44,63,1) 5%, rgba(6,66,114,1) 28%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(46,65,81,1)), color-stop(5%,rgba(21,44,63,1)), color-stop(28%,rgba(6,66,114,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(46,65,81,1) 0%,rgba(21,44,63,1) 5%,rgba(6,66,114,1) 28%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(46,65,81,1) 0%,rgba(21,44,63,1) 5%,rgba(6,66,114,1) 28%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(46,65,81,1) 0%,rgba(21,44,63,1) 5%,rgba(6,66,114,1) 28%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(46,65,81,1) 0%,rgba(21,44,63,1) 5%,rgba(6,66,114,1) 28%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e4151', endColorstr='#064272',GradientType=0 ); /* IE6-9 */
}	
#contact_info {
	float:left;
    color: #FFFFFF;
    font-size: 115%;
    margin-top: 5px;
}
#top_nav {
	float:right;
	margin: -115px 0;
}
#nav{
	list-style:none;
	text-transform:uppercase;
	margin-bottom:10px;
	/* Clear floats */
	float:left;
	width:100%;
	/* Bring the nav above everything else--uncomment if needed.
	position:relative;
	z-index:5;
	*/
}
#nav li{
	float:left;
	margin-right:10px;
	position:relative;
	color:#fff;
}
#nav a{
	display:block;
	padding:5px;
	color:#fff;
	text-decoration:none;
}
#nav a:hover{
	color:#bbb;
}

/*--- DROPDOWN ---*/
#nav ul{
	background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
#nav ul li{
	padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
}
#nav ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
}
#nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background: #002948; /* Old browsers */
	background: -moz-linear-gradient(top,  #002948 0%, #004472 19%, #004472 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#002948), color-stop(19%,#004472), color-stop(100%,#004472)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #002948 0%,#004472 19%,#004472 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #002948 0%,#004472 19%,#004472 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #002948 0%,#004472 19%,#004472 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #002948 0%,#004472 19%,#004472 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002948', endColorstr='#004472',GradientType=0 ); /* IE6-9 */
}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background:#002948;
}
#top {
	background:url("images/mainimg.png");
}
#slogan {
	color: #24489F;
    float: right;
    font-size: 190%;
    margin: -70px -6px;
    text-shadow: 0 0 8px #FFFFFF;
    width: 60%;
}
#contact {
    color: #FFFFFF;
    font-size: 110%;
    margin-left: 420px;
	padding:5px 0;
}
#middle {
	height:350px;
	background:url("images/banner.jpg")no-repeat 50% 50%;
	border-top:5px outset;
	border-bottom:5px solid  #01366D;
}
#bundle {
	float:left;
	width:50%;
}
#bannertext {
	color: #01366D;
    float: right;
    font-size: 295%;
    position: relative;
    top: 45px;
    width: 43%;
	text-shadow: 0 0 2px #FFFFFF;
}
#bannertext span {
	color:#fff;	
	background: rgb(10,119,213); /* Old browsers */
	background: -moz-linear-gradient(-45deg,  rgba(10,119,213,1) 0%, rgba(115,177,231,1) 13%, rgba(6,66,114,1) 28%, rgba(6,66,114,1) 72%, rgba(21,44,63,1) 95%, rgba(46,65,81,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(10,119,213,1)), color-stop(13%,rgba(115,177,231,1)), color-stop(28%,rgba(6,66,114,1)), color-stop(72%,rgba(6,66,114,1)), color-stop(95%,rgba(21,44,63,1)), color-stop(100%,rgba(46,65,81,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  rgba(10,119,213,1) 0%,rgba(115,177,231,1) 13%,rgba(6,66,114,1) 28%,rgba(6,66,114,1) 72%,rgba(21,44,63,1) 95%,rgba(46,65,81,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  rgba(10,119,213,1) 0%,rgba(115,177,231,1) 13%,rgba(6,66,114,1) 28%,rgba(6,66,114,1) 72%,rgba(21,44,63,1) 95%,rgba(46,65,81,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  rgba(10,119,213,1) 0%,rgba(115,177,231,1) 13%,rgba(6,66,114,1) 28%,rgba(6,66,114,1) 72%,rgba(21,44,63,1) 95%,rgba(46,65,81,1) 100%); /* IE10+ */
	background: linear-gradient(135deg,  rgba(10,119,213,1) 0%,rgba(115,177,231,1) 13%,rgba(6,66,114,1) 28%,rgba(6,66,114,1) 72%,rgba(21,44,63,1) 95%,rgba(46,65,81,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0a77d5', endColorstr='#2e4151',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    font-size: 42%;
    padding: 6px 15px;
    text-shadow: 1px 1px #01366D;
	box-shadow:1px 1px 1px #000;
}
#bannertext a {
	color:#ffd800;
	text-decoration:none;
}

#bannertext > strong {
    color: #FFFFFF;
    text-shadow: 0 0 2px #000000;
}
#bannertext a:hover {
	text-shadow:0 0 10px #fff;
}
#iptv-page {
	padding:0 25px 25px;
	box-shadow:0 0 10px #24489F;
	background:#fff;
}
#iptv-packages {
	margin:15px 0 25px;
}
#iptv-packages h1 {
	color:#24489F;
	text-shadow:none;
}
#about-page {
	padding:0 25px 25px;
	box-shadow:0 0 10px #24489F;
	background:#fff;

}
#channel-page {
	padding:0 25px 25px;
	box-shadow:0 0 10px #24489F;
	background:#fff;
}
#channel-lineup {
}
#channel-lineup  th{
	width:25%;
}
.center {
	text-align:center;
}
table {
	width:100%;
	border-bottom:1px solid #ccc;
	margin-bottom:25px;
}
td {
	width:25%;
}
.member {
	display:inline-block;
	width:45%;
	vertical-align:top;
	height:250px;
	background:#124d2a;
}
.binbutton {
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #007dc1), color-stop(1, #0061a7));
    background:-moz-linear-gradient(top, #007dc1 5%, #0061a7 100%);
	background:-webkit-linear-gradient(top, #007dc1 5%, #0061a7 100%);
	background:-o-linear-gradient(top, #007dc1 5%, #0061a7 100%);
	background:-ms-linear-gradient(top, #007dc1 5%, #0061a7 100%);
    background:linear-gradient(to bottom, #007dc1 5%, #0061a7 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#007dc1', endColorstr='#0061a7',GradientType=0);     
    background-color:#007dc1;
	border: 1px solid #124D77;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 0 1px 0 0 #54A3F7 inset;
    color: #FFFFFF;
    display: inline-block;
    font-family: arial;
    font-size: 13px;
    font-weight: normal;
    left: 25px;
	position: absolute;
	bottom: 5px;
    padding: 6px 24px;
    text-decoration: none;
    text-shadow: 0 1px 0 #154682;
 
}
.binbutton:hover {
        
        background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #0061a7), color-stop(1, #007dc1));
        background:-moz-linear-gradient(top, #0061a7 5%, #007dc1 100%);
        background:-webkit-linear-gradient(top, #0061a7 5%, #007dc1 100%);
        background:-o-linear-gradient(top, #0061a7 5%, #007dc1 100%);
        background:-ms-linear-gradient(top, #0061a7 5%, #007dc1 100%);
        background:linear-gradient(to bottom, #0061a7 5%, #007dc1 100%);
        filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0061a7', endColorstr='#007dc1',GradientType=0);
        background-color:#0061a7;
 }
.col5 td {
	width:15%;
}
.col3 td {
	width:33%;
}
.blue-bg {
	background:#bdf0fc;
}
.caption {
	background:#444;
	color:#eee;
	text-align:left;
	border-radius: 10px 10px 0 0;
    padding: 10px;
}
.black-bg {
	background:#444;
	color:#eee;
	text-align:left;
    padding: 10px;
}
.orange-bg {
	background:#ffc435;
}
.peach-bg {
	background:#fcdd93;
}
.purple-bg {
	background:#8f7dff;
}
.gray-bg {
	background:#ccc;
}
.gold-bg {
	background:#ffed51;
}
#remote-img {
    float: left;
    width: 6%;
}
.pdf-download {
	text-align:center;
}
#banner {
	height:350px;
}
#maincontent {
	width:73%;
}
#phonebin {
    background-position: 100% 67%;
}
#internetbin {
    background-position: 100% 78%;
}
#iptvbin {
    background-position: 100% 90%;
}
#bundlebin {
    background-position: 100% 100%;
}
.threebin {
    border: 1px solid #CCCCCC;
    display: inline-block;
    height: 150px;
    padding: 6px;
    vertical-align: top;
    width: 31.5%;
	background:url("images/sprite.jpg")no-repeat 0 0 #fff;
	position:relative;
}
.bincontent {
    float: left;
    text-align: center;
    width: 55%;
}
.bincontent h3 {
	font-size:20px;
	color:#444;
}
#mainservices {
	margin:20px 0;
	clear:both;
}
#otherresource {
	margin:20px 0;
}
#usefulguides {
	margin:0 0 20px;
}
.blueheading{
	background: rgb(10,119,213); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(10,119,213,1) 0%, rgba(115,177,231,1) 13%, rgba(6,66,114,1) 28%, rgba(6,66,114,1) 72%, rgba(21,44,63,1) 95%, rgba(46,65,81,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(10,119,213,1)), color-stop(13%,rgba(115,177,231,1)), color-stop(28%,rgba(6,66,114,1)), color-stop(72%,rgba(6,66,114,1)), color-stop(95%,rgba(21,44,63,1)), color-stop(100%,rgba(46,65,81,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(10,119,213,1) 0%,rgba(115,177,231,1) 13%,rgba(6,66,114,1) 28%,rgba(6,66,114,1) 72%,rgba(21,44,63,1) 95%,rgba(46,65,81,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(10,119,213,1) 0%,rgba(115,177,231,1) 13%,rgba(6,66,114,1) 28%,rgba(6,66,114,1) 72%,rgba(21,44,63,1) 95%,rgba(46,65,81,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(10,119,213,1) 0%,rgba(115,177,231,1) 13%,rgba(6,66,114,1) 28%,rgba(6,66,114,1) 72%,rgba(21,44,63,1) 95%,rgba(46,65,81,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(10,119,213,1) 0%,rgba(115,177,231,1) 13%,rgba(6,66,114,1) 28%,rgba(6,66,114,1) 72%,rgba(21,44,63,1) 95%,rgba(46,65,81,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0a77d5', endColorstr='#2e4151',GradientType=0 ); /* IE6-9 */
    border-radius: 8px 8px 0 0;
    color: #EEEEEE;
    padding: 7px;
    text-align: center;
}
#communitybin {
    background-position: 100% 33%;
}
#speedbin {
    background-position: 100% 55%;
}
#emailbin {
    background-position: 100% 44%;
}
#guidebin {
    background-position: 100% 11%
}
#manuelbin {
    background-position: 100% 0;
}
#faqbin {
    background-position: 100% 22%;
}
.button {
	background: rgb(206,219,233); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(206,219,233,1) 0%, rgba(170,197,222,1) 17%, rgba(97,153,199,1) 50%, rgba(58,132,195,1) 51%, rgba(65,154,214,1) 59%, rgba(75,184,240,1) 71%, rgba(58,139,194,1) 84%, rgba(38,85,139,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(206,219,233,1)), color-stop(17%,rgba(170,197,222,1)), color-stop(50%,rgba(97,153,199,1)), color-stop(51%,rgba(58,132,195,1)), color-stop(59%,rgba(65,154,214,1)), color-stop(71%,rgba(75,184,240,1)), color-stop(84%,rgba(58,139,194,1)), color-stop(100%,rgba(38,85,139,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(206,219,233,1) 0%,rgba(170,197,222,1) 17%,rgba(97,153,199,1) 50%,rgba(58,132,195,1) 51%,rgba(65,154,214,1) 59%,rgba(75,184,240,1) 71%,rgba(58,139,194,1) 84%,rgba(38,85,139,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(206,219,233,1) 0%,rgba(170,197,222,1) 17%,rgba(97,153,199,1) 50%,rgba(58,132,195,1) 51%,rgba(65,154,214,1) 59%,rgba(75,184,240,1) 71%,rgba(58,139,194,1) 84%,rgba(38,85,139,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(206,219,233,1) 0%,rgba(170,197,222,1) 17%,rgba(97,153,199,1) 50%,rgba(58,132,195,1) 51%,rgba(65,154,214,1) 59%,rgba(75,184,240,1) 71%,rgba(58,139,194,1) 84%,rgba(38,85,139,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(206,219,233,1) 0%,rgba(170,197,222,1) 17%,rgba(97,153,199,1) 50%,rgba(58,132,195,1) 51%,rgba(65,154,214,1) 59%,rgba(75,184,240,1) 71%,rgba(58,139,194,1) 84%,rgba(38,85,139,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cedbe9', endColorstr='#26558b',GradientType=0 ); /* IE6-9 */	
    border-radius: 12px 12px 12px 12px;
    box-shadow: 0 2px 3px #000000;
    color: #FFFFFF;
    font-size: 130%;
    margin: 0 13%;
    padding: 6px 45px;
    text-align: center;
    text-shadow: 1px 1px 0 #000000;

}
.button:hover {
	background: rgb(232,99,4); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(232,99,4,1) 0%, rgba(255,150,53,1) 49%, rgba(255,167,61,1) 50%, rgba(255,183,107,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(232,99,4,1)), color-stop(49%,rgba(255,150,53,1)), color-stop(50%,rgba(255,167,61,1)), color-stop(100%,rgba(255,183,107,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(232,99,4,1) 0%,rgba(255,150,53,1) 49%,rgba(255,167,61,1) 50%,rgba(255,183,107,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(232,99,4,1) 0%,rgba(255,150,53,1) 49%,rgba(255,167,61,1) 50%,rgba(255,183,107,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(232,99,4,1) 0%,rgba(255,150,53,1) 49%,rgba(255,167,61,1) 50%,rgba(255,183,107,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(232,99,4,1) 0%,rgba(255,150,53,1) 49%,rgba(255,167,61,1) 50%,rgba(255,183,107,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e86304', endColorstr='#ffb76b',GradientType=0 ); /* IE6-9 */
	color:#eee;
	text-shadow:-1px -1px 0 #000000;
	box-shadow:0 2px 1px #000;
}
#sidebar {
	float:right;
    box-shadow: 0 0 5px #000000;
    text-align: center;
    width: 25%;
}
#sidebar a {
	width:25%;
}
#sidebar h2 {
	color:#24489F;
}
/*----------------------------------------Start Footer--------------------------------------*/
.twobin {
    display: inline-block;
    padding: 6px;
    vertical-align: top;
}
footer {
	background: #002948; /* Old browsers */
	background: -moz-linear-gradient(top,  #002948 0%, #004472 19%, #004472 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#002948), color-stop(19%,#004472), color-stop(100%,#004472)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #002948 0%,#004472 19%,#004472 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #002948 0%,#004472 19%,#004472 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #002948 0%,#004472 19%,#004472 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #002948 0%,#004472 19%,#004472 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002948', endColorstr='#004472',GradientType=0 ); /* IE6-9 */
	padding-top:15px;
}
#footer_wrap {
	margin-top:15px;
}
#about_bg {
	width:100%;
	border-top:5px outset;
}
#about {
    color: #FFFFFF;
    line-height: 140%;
    text-align: justify;
    width: 70%;
}
#about img {
    border: 5px solid #fff;
    float: left;
    margin: 0 15px 0 0;
    width: 30%;
}
#about a {
	color:#003;
	text-decoration:none;
}
#about a:hover {
	color:#4184c5;
}
#about p {
	    font-size: 85%;;
}
#bottom_nav {
    list-style: none outside none;
    margin-bottom: 10px;
    padding: 0;
    width: 25%;
}
#bottom_nav a{
	padding:5px;
	color:#fff;
	text-decoration:none;
	text-align:center;
}
#bottom_nav a:hover{
	color:#bbb;
}
#footerwrap h2 {
	color:#fff;
}
#bottom_nav ul {
	text-align:left;
	padding-bottom:5px;
}
#bottom_nav li {
    border-bottom: 1px solid #CCCCCC;
    list-style-type: none;
    padding: 3px 0;
}
#bottom_nav h2 {
	color:#fff;
}
#icons {
	background: rgb(255,255,255); /* Old browsers */
	background: -moz-linear-gradient(-45deg,  rgba(255,255,255,1) 0%, rgba(241,241,241,1) 50%, rgba(214,214,214,1) 51%, rgba(229,229,229,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(50%,rgba(241,241,241,1)), color-stop(51%,rgba(214,214,214,1)), color-stop(100%,rgba(229,229,229,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  rgba(255,255,255,1) 0%,rgba(241,241,241,1) 50%,rgba(214,214,214,1) 51%,rgba(229,229,229,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  rgba(255,255,255,1) 0%,rgba(241,241,241,1) 50%,rgba(214,214,214,1) 51%,rgba(229,229,229,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  rgba(255,255,255,1) 0%,rgba(241,241,241,1) 50%,rgba(214,214,214,1) 51%,rgba(229,229,229,1) 100%); /* IE10+ */
	background: linear-gradient(135deg,  rgba(255,255,255,1) 0%,rgba(241,241,241,1) 50%,rgba(214,214,214,1) 51%,rgba(229,229,229,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    box-shadow: 0 0 5px #000000;
	text-align:center;
    margin: 20px 0;
    padding: 15px;
}
#facebook {
	background:url("images/facebooksprite.png") no-repeat 0 100%;
	display: inline-block;
    height: 23px;
	width:10%;
}
#facebook:hover {
	background-position:0 0;
}
#twitter {
	background:url("images/twitter-sprite.png") no-repeat 0 100%;
	display:inline-block;
    height: 23px;
	width:10%;
}
#twitter:hover {
	background-position:0 0;
}
#linked {
	background:url("images/linkedsprite.png") no-repeat 0 100%;
	display: inline-block;
    height: 23px;
	width:10%;
}
#linked:hover {
	background-position:0 0;
}
.copyright {
	font-size:90%;
	color:#eee;
	text-align:center;
}

