﻿/******************************************************************
*  Address                                                        *
******************************************************************/

.adr /* div tag for the entire address */
{
}
.street-address /* Street address */
{
}
.extended-address /* Street 2 (such as suite) */
{
}
.locality /* City */
{
}
.region /* State, province,... */
{
}
.postal-code /* Zip or postal code */
{
}
.country-name /* Country name */
{
}


/* Special combinations */

.street-address, .extended-address, .locality, .region, .postal-code, .country-name
{
    display: inline;
}
.street-address:after, .extended-address:after, .postal-code:after
{
    content: " - ";
}
.locality:after
{
    content: ", ";
}


/******************************************************************
*  hCard/vCard (Phone/Fax)                                        *
******************************************************************/

.vcard /* vCard */
{
}
.tel /* Telephone, fax,... */
{
    display: inline;
}
.email /* Email */
{
    display: inline;
}
.type /* Type of phone */
{
}
.value /* Actual number */
{
}

/* Special combinations */
.tel .type, .tel .value
{
    display: inline;
}
.email .type, .email .value
{
    display: inline;
}
.tel .type:after
{
    content: ": ";
}
