    #opiniones {
        color:#006699;
        font-family:georgia,serif;
        font-size: 2.2em;
        margin-left: 10px;
    }

	#horizontal_accordion {
		width: 940px;
		height: 100px;
		margin: 10px 0px 0px 10px;
		/* background-image: url(media/fondos/accordion-right.jpg);
		background-position: top right;
		background-repeat: no-repeat; */
	}

	.horizontal_accordion_toggle {
		/* REQUIRED 
		float: left;	/* This make sure it stays horizontal */
		/* REQUIRED */

		display: block;
		height: 100px;
		width: 100px;
		background: #eee;
		color: #ffffff;
		text-decoration: none;
		outline: none;
		cursor: pointer;
		margin: 0 0 0 -1px;

		border: 1px solid #ccc;
		/*border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		background-image: url(media/fondos/accordion-left.jpg);
		background-position: top left;
		background-repeat: no-repeat;*/
	}

	.horizontal_accordion_toggle_active {
		background: #fff;

		border-top: 1px solid #ccc;
		border-left: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		border-right: 0px solid #ccc;
	}

	.horizontal_accordion_content {
		/* REQUIRED */
		height: 120px;	/* We need to define a height for the accordion as it stretches the width */
		float: left;	/* This make sure it stays horizontal */
		/* REQUIRED */

		overflow: hidden;
		background: #fff;
		color: #666;
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
        border-right: 1px solid #ccc;
	}

	.horizontal_accordion_content p {
		/*width: 200px;*/
		line-height: 100%;
		padding: 25px 10px 25px 10px;
		text-align: left;
		font-size: 12px;
	}

	.horizontal_accordion_content div {
		float: right;
		margin:5px;
		color: #006699;
		font-family: helvetica, arial, verdana;
		font-size: 10px;
		/* border: 1px solid #ccc;
		background-color: #eee;
		padding: 4px 8px; 
		padding: 2px 4px;*/
	}

	.horizontal_accordion_content div a {

		color: #006699;
		font-family: helvetica, arial, verdana;
		font-weight: bold;
		font-size: 10px;
	}

    .horizontal_accordion_content div a:hover {
		position: relative;
		text-align: right;

		color: #006699;
	}

