/* CENTERING - centers the image caption - April 2020 */
.wp-caption-text
{
text-align: center;
}
/* CENTERING-ITALICS-LINE HEIGHT - centers site sub-title and makes it italic - april 2020 */
.site-description
{
text-align: center;
	font-style: italic;
	line-height: 1.8;
}
/* COLOUR 1 - Colour of metadata - date, comments, tags - in blog posts - April 2020 */
.entry-meta a, .entry-meta a:visited
{
color: #adadad;
}
/* COLOUR 2 - Coloured sidebar widgets - making blue URL links bluer so they show up better - Dec 2020*/
.sidebar-link-color
{
	color: #00AEED;
}
/* COLOUR 3 - makes sidebar widget text white (applied to 'i2Insights Ambassador' and 'Have a Say' widgets) - Dec-Mar 2020*/
.sidebar-widget-text-white
{
	color: #FFFFFF;
}
/* COLOUR 4 - makes the sidebar widget background into i2s swirl colour 'pink' (currently done for i2Insights Ambassador widget) - Dec 2020*/
#custom_html-3
{
background-color: #d75790;
}
/* COLOUR 5 - makes the sidebar widget background into i2s swirl colour 'orange' (currently done for 'Have a Say' widget) - Mar 2021*/
#custom_html-4
{
background-color: #d6a148;
}
/* FONT FAMILY 1 - Font family (type) - Chinese (Asian symbol type) language in blog posts - July 2020 */
.myDiv_chinese-font 
{
font-family: NSimSun, noto sans CJK, Arial Unicode MS, Sans-serif;
font-weight: 400;
font-size: 1em;
}
/* FONT FAMILY 2 - Font family (type) - Japanese (Asian symbol type) language in blog posts - July 2020 */
.myDiv_japanese-font {
font-family: Meiryo, noto sans CJK, Arial Unicode MS, Sans-serif;
font-size: 1em;
}
/* FONT FAMILY 3 - Font family (type) - Times New Roman (serif font) to make the curves on an equation more obvious - Sep 2020 */
.myDiv_equation-font {
font-family: Times New Roman, Serif;
font-size: 1em;
}
/* FONT FAMILY 4 - Font family (type) - Arabic language in blog posts - Mar 2021 */
.myDiv_arabic-font
{
font-family: Droid Arabic Kufi, Droid Sans, Simplified Arabic, Arial, sans-serif;
font-weight: 400;
font-size: 100%;
}
/* FONT SIZE - makes the i2Insights Ambassador sidebar widget title, now shifted to the text field, equivalent to the title field implementation in a widget - Dec 2020*/
.sidebar-widget-text-title
{
font-weight: 900;
font-size: 17px;
	color: #FFFFFF;
}
/* FONTS - Font type, weight and size of metadata - date, comments, tags - in blog posts - April 2020 */
.entry-meta
{
font-family: Roboto Slab, Sans-serif;
font-weight: 400;
font-size: 1.2em;
}
/* LIST - list markers - lower-alpha */
.marker-lower-alpha
{
	list-style-type: lower-alpha;
}
/* LIST- list markers - lower-roman (eg., post 'Setting an agenda for transdisciplinary research in Africa') */
.marker-lower-roman
{
	list-style-type: lower-roman;
}
/* MARGINS 1 - Defines left and bottom margin for all images used in the home page; note that these margins are only good for images placed to the right; also note that this was updated after Elementor plugin update seemed to drop the previous (April 2020) margin control CSS - this CSS can be found under this outer html on the home page (using Firefox Inspect Element function):  figure id=attachment - Sep 2020 */
.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure
{
margin-top: 0;
margin-right: 0;
margin-bottom: 1em;
margin-left: 1em;
}
/* MARGINS 2 - defines right justified and italic text for copyright notice that goes with images - 2016 */
p.ownership 
{
margin-top: 0;
text-align: right;
font-style: italic;
font-size: 0.8em;
}
/* MARGIN 3 - Adds a 1em margin after the text entry field of the 'Follow blog by email' widget, so that the test is separated from the email address field  where previously it was not. Uses the ID code instead of the style code - april 2020 */
#subscribe-text 
{
margin-top: 0;
margin-right: 0;
margin-bottom: 1em;
margin-left: 0;
}
/* MARGIN 4 - creates a bottom and top margin in a div element so that the enclosed text looks like a paragraph but in this case, can go inside a list (div's can go inside li(open)-li(close), but not between separate li(open)-li(close))- used in Jessica Blythe and Chris Cvitanovic - ALSO Manal Affara with Six Ways Facilitation ... - jan 2021 */
div.para-margin
{
margin-top: 1em;
margin-right: 0;
margin-bottom: 1em;
margin-left: 0;
}
/* MARGIN 5 - To create a white space line after a dot-point - used in post by Jessica Blythe and Chris Cvitanovic - Jan 2021*/
li.space-after
{
	margin-bottom: 1em;
}
/* TABLE 1 - on the toggle page for the index, this entry defines the table that controls the alphabetical items - june 2020 */
table.toggletable 
{
	border-collapse: collapse;
  border: none;
}
/* TABLE 2 - on the toggle page for the index this defines the cell width, border and text alignment in the cell - june 2020 */
td.toggle-alpha-table
{
table-layout: fixed;
width: 9%;
border: none;
text-align: center;
vertical-align: middle;
padding: 1em;
}
/* TABLE 3 - on the toggle page for the index this defines a dot to go between the alpha-categories as well as the dot position regards the cell width, border and alignment in the cell - june 2020 */
td.toggle-dot-table
{
table-layout: fixed;
width: 2%;
border: none;
text-align: center;
vertical-align: middle;
padding: 1em;
}
/* TITLE = ADD LINE BELOW FIELD - put text content after post title. To say this another way, a post title had both English and Arabic in the title field - apparently it is best to separate Arabic and English into separate lines, so in order to do that, the following code was used. It has three  interesting parts; (1) determination of the post ID so the individual post can be targeted, (2) and the use of the 'after' selector to put text following the title; (3) the display:block element to force the next text onto its own line - this was done for the post: 'Six ways facilitation skills can improve cross-disciplinary team leadership' by Manal Affra (March 2021) */
.postid-19405 .entry-title:after 
{
    content: 'ست وسائل من مهارات التيسير لتطوير قيادة الفريق البحثي عابر التخصصات ';
	display: block;
}