.button-portlet {

	#square {
		position: relative;
		width: 100%;
		border: none;
		box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.4);

		.child {
			position: relative;
			padding-bottom: 100%;
			text-align: center;		
		
			div {
				position: absolute;
				top: 50%;
				left: 0;
				right: 0;
				margin-top: -10px;
			}
		}
	}

	#rectangle {
		position: relative;
		width: 100%;
		border: none;
		box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.4);

		.child {
			position: relative;
			padding-bottom: 50%;
			text-align: center;		
		
			div {
				position: absolute;
				top: 50%;
				left: 0;
				right: 0;
				margin-top: -10px;
			}
		}
	}

	#bar {
		position: relative;
		width: 100%;
		height: 40px;
		border: none;
		box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.4);

		.child {
			position: relative;
			text-align: center;		
		
			div {
				line-height: 40px;
				vertical-align: middle;
			}
		}
	}

	#circle {
		position: relative;
		width: 100%;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		border-radius: 50%;
		border: none;
		box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.4);

		.child {
			position: relative;
			padding-bottom: 100%;
			text-align: center;		
		
			div {
				position: absolute;
				top: 50%;
				left: 0;
				right: 0;
				margin-top: -10px;
			}
		}
	}

	#oval {
		position: relative;
		width: 100%;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		border-radius: 50%;
		border: none;
		box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4);
		-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.4);

		.child {
			position: relative;
			padding-bottom: 50%;
			text-align: center;		
			
			div {
				position: absolute;
				top: 50%;
				left: 0;
				right: 0;
				margin-top: -10px;
			}
		}
	}

	.button-title a {
		text-decoration: none;
	}
		
	.button-title a:hover {
		text-decoration: none;
	}

}