@import url("style.css");
/*now we just override and add as required for moile support*/

/*fix for title bursting out of heading - not sure, seems to be a rendering issue with the rounded corners?*/
.linklist {
	border-radius:0px; /*not good on mobile browser, dosn't join wider top to rounded corners properly*/
}



@media all and (orientation: portrait) {  
	/*squeeze them up to fit two side by side*/
	.linklist {
		width: 100px;
		margin: 0px
	}
	.linklist  a {
		left: 3px;
	}
}



@media all and (orientation: landscape) {  
	.linklist {
		width: 110px;
		margin: 1px
	}
}




  
