/**
*	A very quick and rough PHP class to scrape data from google+
*	Copyright (C) 2011  Mabujo
*	http://plusdevs.com
*	http://plusdevs.com/googlecard-googleplus-php-scraper/
*
*	This program is free software: you can redistribute it and/or modify
*	it under the terms of the GNU General Public License as published by
*	the Free Software Foundation, either version 3 of the License, or
*	(at your option) any later version.
*
*	This program is distributed in the hope that it will be useful,
*	but WITHOUT ANY WARRANTY; without even the implied warranty of
*	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*	GNU General Public License for more details.
*
*	You should have received a copy of the GNU General Public License
*	along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
#plus_card a {
	color: #3366CC;
	text-decoration: none;
	font-weight: bold;
}
#plus_card {
	width: 99%;
	height: 116px;
	position: relative;
	background: #fff;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius: 2px;
	-khtml-border-radius: 2px;
	border-radius: 2px;
	border: 1px solid #888;
	margin: 10px auto 0;
}
#plus_card_image {
	width: 80px;
	height: 80px;
	padding: 8px;
	position: absolute;
	left: 0;
	top: 0;
}
#plus_card_name {
	font-size: 15px;
	color: #3366CC;
	padding: 0 8px 8px 0;
	word-wrap: break-word;
	float: left;
	margin-left: 95px;
	margin-top: 7px;
	line-height: 1.3em;
}
#plus_card_add {
	background: #eee;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6', endColorstr='E9E9E9');
	background: -webkit-gradient(linear, left top, left bottom, from(#F6F6F6), to(#E9E9E9));
	background: -moz-linear-gradient(top,  #F6F6F6,  #E9E9E9);
	padding: 6px 8px;
	border: 1px solid #ccc;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
	-khtml-border-radius: 3px;
	border-radius: 3px;
	float: left;
	margin-left: 95px;
}
#plus_card_add a {
	color: #666;
	font-size: 12px;
	word-wrap: break-word;
}
#plusCardCount, #plusCardCredit {
	width: 100%;
	position: absolute;
	bottom: 0;
    height: 20px;
    background: #eee;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
}
#plusCardCount p {
	padding: 0 0 0 8px !important;
	margin: 1px 0 0 !important;
	font-size: 12px;
	color: #444;
}
#plusCardCredit p {
	padding: 0 0 0 8px !important;
	margin: 0 !important;
	font-size: 12px;
}
#plusCardCredit a {
	font-size: 12px;
	margin: 0 !important;
	padding: 0 !important;
}
#plusCardShowHide {
	width: 5px;
	position: absolute;
	right: 10px;
	bottom: 0;
	cursor: pointer;
	padding: 0 !important;
	margin: 0 !important;
}