/*Elements Developed by Ben Henschel*/
/*External Links*/

/*External Link - 外部リンクの場合にアイコン付与*/
a[href^="http:"] {
background: url(../images/icon/externalLink.gif) no-repeat right top;
padding-right:10px;
}

/*IMPORTANT: http://から始まるくせに内部リンクの場合の処理、URLは書き換えて使用すること*/
a[href^="http://www.yoursite.com"], a[href^="http://yoursite.com"] {
background-image:none !important;
padding-right:0px;
}
/*外部リンクだけどアイコン出したくないとかそういう場合にこのクラスを使う*/
.exempt {
	background-image:none !important;
	padding:0px;
}
/*IEの6と７用に外部リンクアイコンを付ける時のクラス*/
.external {
	padding-right:10px;
	background-image: url(../images/icon/externalLink.gif);
	background-repeat: no-repeat;
	background-position: right top;
}
/*GoogleMap用*/
a[href^="http://goo.gl/maps/"] {
background: url(../images/googlemap-icon.png) no-repeat right top;
padding-right:22px;
padding-bottom:5px;
}
/*メールアドレス用*/
a[href^="mailto:"] {
background: url(../images/icon/email_link.png) no-repeat right top;
padding-right:22px;
padding-bottom:5px;
}

/*スカイプ用*/
a[href^="skype:"] {
background: url(../images/icon/icon_skype.gif) no-repeat right top;
padding-right:22px;
padding-bottom:5px;
}

/*PDF用*/
a[href$=".pdf"] {
background: url(../images/page_pdf.png) no-repeat right top;
padding-right:22px;
padding-bottom:5px;
}

/*ワード用だけどテキトーに書き換えて使うがよいぞ*/
a[href$=".doc"] {
background: url(../images/icon/page_word.png) no-repeat right top;
padding-right:22px;
padding-bottom:5px;
}

/*RSS用だけど場合によっては拡張子xml*/
a[href$=".rss"], a[href$=".rdf"] {
background: url(../images/icon/feed.png) no-repeat right top;
padding-right:22px;
padding-bottom:5px;
}
