/*
	WSG custom defined styles used for text formatting
*/
h1 {
	font-size: 20px;
}

h2 {
	font-size: 19px;
}

h3 {
	font-size: 17px;
}

h4 {
	
	font-size: 16px;
}

h5 {
	font-size: 15px;
}

h6 {
	font-size: 14px;
}
p {
	font-size: 13px;
}

.bodyContainer {
	text-align: justify;
	margin-right: 2%;
	font-size: 13px;
}

/* Left indent for content except headers(h) and lists(ul/ol) */
.bodyContainer p, .bodyContainer table {
	margin-left: 0px;
}

div.bodyContainer table, div.bodyContainer th, div.bodyContainer td {
	border-collapse: collapse;
	border: 1px solid black;
	vertical-align: top;
	
}

/* Text indent inside table */
div.bodyContainer td p {
	padding: 4px;
}

/* For paragraph inside list. 
** [USAGE] Use for describing request method and URL example 
*/
div.bodyContainer ul p {
	text-align: left;
}

/* [USAGE] Inside paragraph to specify "method type" and Request URL example inside <a> tag */
.urlExample {
	padding-left: 2%;
	text-align: left;
	font-weight: bold;
}

.urlExampleInline {
	font-weight: bold;
}

/* Define paragraph custom position in lists */
div.bodyContainer ul p.urlExample, div.bodyContainer ol p.urlExample {
	margin-top: 3px;
	margin-bottom: 5px;
	padding-left: 0%;
}


/* [USAGE] Center and Bold table headers */
.tableHeader  * {
	text-align: center;
	font-weight: bold;
}

/* [USAGE] Custom comments/notes style */
.note { 
	color: #DED7D7;
	
}

.bolded {
	font-weight: bold;
}

/* Marking text as red */
.remark { 
	color: red;
}

/* [USAGE] Defining lists without bullet points */
.noBulletList { 
	list-style-type: none;
}

pre.fragment {
        border: 1px solid #C4CFE5;
        background-color: #FBFCFD;
        padding: 4px 6px;
        margin: 4px 0px 4px 2px;
        overflow: auto;
        word-wrap: break-word;
        font-size:  9pt;
        line-height: 125%;
        font-family: monospace, fixed;
        font-size: 105%;
}

div .codeExample {
    display: none;
}
