
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_6a6a63e1339d.woff")format("woff");}.ff1{font-family:ff1;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_2276d47dd46e.woff")format("woff");}.ff2{font-family:ff2;line-height:0.962000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_e213050e8b97.woff")format("woff");}.ff3{font-family:ff3;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_f97650f3e615.woff")format("woff");}.ff4{font-family:ff4;line-height:0.871582;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_a3f9656c8202.woff")format("woff");}.ff5{font-family:ff5;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-33.120026px;}
.v4{vertical-align:-30.240024px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.362000px;}
.v2{vertical-align:33.120026px;}
.ls17{letter-spacing:-1.008001px;}
.ls14{letter-spacing:-0.864001px;}
.ls15{letter-spacing:-0.792001px;}
.ls9{letter-spacing:-0.720001px;}
.lsc{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.504000px;}
.ls19{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.022320px;}
.lsa{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.150000px;}
.ls11{letter-spacing:0.190140px;}
.ls10{letter-spacing:0.195780px;}
.ls16{letter-spacing:0.202320px;}
.lsf{letter-spacing:0.216000px;}
.lse{letter-spacing:0.252000px;}
.ls5{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.331860px;}
.ls1{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.483780px;}
.lsd{letter-spacing:0.540000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-16.632013px;}
.wse{word-spacing:-16.488013px;}
.wsb{word-spacing:-16.416013px;}
.ws12{word-spacing:-16.344013px;}
.wsc{word-spacing:-16.272013px;}
.ws7{word-spacing:-16.200013px;}
.ws9{word-spacing:-16.128013px;}
.ws8{word-spacing:-16.056013px;}
.ws4{word-spacing:-15.786786px;}
.ws11{word-spacing:-15.768013px;}
.wsd{word-spacing:-15.552012px;}
.wsf{word-spacing:-15.408012px;}
.wsa{word-spacing:-15.226452px;}
.ws10{word-spacing:-9.437768px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.170361px;}
.ws3{word-spacing:15.729999px;}
.ws1{word-spacing:31.459998px;}
.ws2{word-spacing:31.914294px;}
._f{margin-left:-12.823930px;}
._0{margin-left:-10.903104px;}
._b{margin-left:-6.814440px;}
._c{margin-left:-5.394765px;}
._d{margin-left:-3.975090px;}
._1{margin-left:-2.271480px;}
._4{margin-left:-1.135740px;}
._3{width:1.362888px;}
._9{width:2.498628px;}
._a{width:3.920856px;}
._2{width:7.625381px;}
._7{width:9.483429px;}
._8{width:18.682923px;}
._e{width:20.443320px;}
._6{width:37.252272px;}
._5{width:45.145665px;}
.fc2{color:transparent;}
.fc1{color:rgb(91,75,75);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760033px;}
.fs5{font-size:48.240039px;}
.fs2{font-size:56.787000px;}
.fs7{font-size:59.760048px;}
.fs3{font-size:66.240053px;}
.fs4{font-size:72.000058px;}
.fs0{font-size:90.859200px;}
.fs1{font-size:113.574000px;}
.y0{bottom:0.000000px;}
.y43{bottom:26.819747px;}
.y19{bottom:58.500047px;}
.y42{bottom:70.739782px;}
.y18{bottom:78.696663px;}
.yfb{bottom:103.896083px;}
.y85{bottom:104.616684px;}
.ya0{bottom:104.796684px;}
.y13f{bottom:106.416685px;}
.y17{bottom:111.475500px;}
.y10e{bottom:112.536690px;}
.y41{bottom:114.659817px;}
.y6f{bottom:116.676693px;}
.y13e{bottom:119.016695px;}
.y19a{bottom:120.636697px;}
.yd3{bottom:123.336249px;}
.yec{bottom:124.597150px;}
.y139{bottom:125.496250px;}
.y101{bottom:125.856101px;}
.y8b{bottom:128.556703px;}
.yc1{bottom:128.736703px;}
.y16{bottom:129.409500px;}
.y58{bottom:131.616705px;}
.y18a{bottom:132.517156px;}
.y2c{bottom:135.397158px;}
.yf4{bottom:135.576108px;}
.y96{bottom:136.476709px;}
.y44{bottom:136.656709px;}
.yc0{bottom:136.836709px;}
.y171{bottom:144.576716px;}
.ya6{bottom:144.756716px;}
.y15{bottom:147.342000px;}
.yfa{bottom:147.636118px;}
.y84{bottom:148.536719px;}
.yb3{bottom:148.716119px;}
.y140{bottom:148.716719px;}
.y11a{bottom:150.149670px;}
.y10d{bottom:156.449675px;}
.y40{bottom:158.624853px;}
.y6e{bottom:160.589678px;}
.y7a{bottom:160.769679px;}
.y199{bottom:164.370131px;}
.y14{bottom:165.274500px;}
.yd2{bottom:167.429234px;}
.ydd{bottom:168.509685px;}
.yeb{bottom:168.510135px;}
.y12d{bottom:168.689685px;}
.y138{bottom:169.409236px;}
.y100{bottom:169.589086px;}
.y8a{bottom:172.469688px;}
.y187{bottom:176.430141px;}
.yf3{bottom:179.489094px;}
.y95{bottom:180.569694px;}
.y2d{bottom:182.189520px;}
.y57{bottom:187.589700px;}
.y170{bottom:188.490151px;}
.y191{bottom:188.670151px;}
.yf9{bottom:191.549103px;}
.y83{bottom:192.449704px;}
.yb2{bottom:192.629104px;}
.y13c{bottom:192.629704px;}
.ybf{bottom:192.809704px;}
.y10c{bottom:200.369710px;}
.ya5{bottom:200.549710px;}
.y2b{bottom:200.550160px;}
.y3f{bottom:202.724888px;}
.y6d{bottom:204.509714px;}
.y198{bottom:208.470167px;}
.yd1{bottom:211.349269px;}
.y14f{bottom:212.249270px;}
.ydc{bottom:212.429720px;}
.yea{bottom:212.430170px;}
.y137{bottom:213.509271px;}
.y89{bottom:216.569723px;}
.y13{bottom:219.072000px;}
.y186{bottom:220.350176px;}
.y162{bottom:220.530176px;}
.yff{bottom:220.889127px;}
.y94{bottom:224.489730px;}
.y12c{bottom:224.669730px;}
.y12a{bottom:224.670180px;}
.y190{bottom:232.410186px;}
.y180{bottom:232.590186px;}
.yf8{bottom:235.469138px;}
.yf2{bottom:235.649139px;}
.y9f{bottom:236.369739px;}
.yb1{bottom:236.549139px;}
.ybe{bottom:236.549739px;}
.y12{bottom:237.006000px;}
.y56{bottom:243.569745px;}
.y10b{bottom:244.469746px;}
.y16f{bottom:244.650196px;}
.y3e{bottom:246.644923px;}
.y6c{bottom:248.429749px;}
.y82{bottom:248.609749px;}
.y11{bottom:254.938500px;}
.yd0{bottom:255.269304px;}
.ydb{bottom:256.349755px;}
.y2a{bottom:256.350205px;}
.ya4{bottom:256.529755px;}
.y136{bottom:257.429306px;}
.y88{bottom:260.489758px;}
.y161{bottom:264.270211px;}
.y197{bottom:264.450212px;}
.y14e{bottom:268.409315px;}
.y93{bottom:268.409765px;}
.y17f{bottom:276.330221px;}
.y185{bottom:276.510221px;}
.y9e{bottom:280.469774px;}
.yb0{bottom:280.649175px;}
.y129{bottom:280.650225px;}
.y125{bottom:288.389781px;}
.y16e{bottom:288.390231px;}
.y3d{bottom:290.564958px;}
.y10{bottom:290.803500px;}
.yf1{bottom:291.629183px;}
.y6b{bottom:292.349784px;}
.yc3{bottom:292.529784px;}
.ya7{bottom:294.870236px;}
.y55{bottom:299.549790px;}
.yda{bottom:300.269790px;}
.ye9{bottom:300.270240px;}
.y10a{bottom:300.449790px;}
.y135{bottom:301.349341px;}
.y87{bottom:304.409794px;}
.y196{bottom:308.369347px;}
.y160{bottom:308.370247px;}
.yf{bottom:308.736000px;}
.ycf{bottom:311.429349px;}
.y92{bottom:312.329800px;}
.y29{bottom:312.330250px;}
.ya3{bottom:312.509800px;}
.y17e{bottom:320.250256px;}
.y14d{bottom:324.389360px;}
.y9d{bottom:324.389810px;}
.y128{bottom:324.390260px;}
.yaf{bottom:324.569210px;}
.ye{bottom:326.668500px;}
.y124{bottom:332.309816px;}
.y16d{bottom:332.310266px;}
.y18f{bottom:332.490266px;}
.y119{bottom:333.929817px;}
.y3c{bottom:334.484993px;}
.yf0{bottom:335.369218px;}
.y79{bottom:336.269819px;}
.yd9{bottom:344.414826px;}
.yd{bottom:344.602500px;}
.y134{bottom:345.314376px;}
.yf7{bottom:347.654228px;}
.y86{bottom:348.374829px;}
.y6a{bottom:348.554829px;}
.yce{bottom:355.214384px;}
.y54{bottom:355.394834px;}
.y105{bottom:356.294835px;}
.y109{bottom:356.474835px;}
.ye8{bottom:356.475285px;}
.yc{bottom:362.535000px;}
.y184{bottom:364.215291px;}
.y195{bottom:364.394392px;}
.y15f{bottom:364.395292px;}
.y9c{bottom:368.354845px;}
.y28{bottom:368.355295px;}
.yae{bottom:368.534245px;}
.y91{bottom:368.534845px;}
.y123{bottom:376.274851px;}
.y18e{bottom:376.275301px;}
.y17d{bottom:376.455301px;}
.y3b{bottom:378.405028px;}
.y14c{bottom:380.414404px;}
.y78{bottom:380.414854px;}
.yef{bottom:386.714259px;}
.yd8{bottom:388.334861px;}
.y16c{bottom:388.515311px;}
.y133{bottom:389.234411px;}
.yf6{bottom:391.394263px;}
.y69{bottom:392.294864px;}
.y7c{bottom:392.474864px;}
.y104{bottom:400.214870px;}
.y194{bottom:408.134427px;}
.y15e{bottom:408.135327px;}
.ycd{bottom:411.374429px;}
.y53{bottom:411.374879px;}
.y9b{bottom:412.274880px;}
.yad{bottom:412.454280px;}
.y108{bottom:412.454880px;}
.ye7{bottom:412.455330px;}
.yb{bottom:416.332500px;}
.y122{bottom:420.194886px;}
.y17c{bottom:420.195336px;}
.y183{bottom:420.375336px;}
.y3a{bottom:422.355964px;}
.y77{bottom:424.334889px;}
.y27{bottom:424.335339px;}
.y90{bottom:424.514890px;}
.y127{bottom:432.254896px;}
.y16b{bottom:432.255346px;}
.y132{bottom:433.154447px;}
.ya{bottom:434.265000px;}
.y14b{bottom:436.214449px;}
.y68{bottom:436.214899px;}
.y13d{bottom:436.394899px;}
.yf5{bottom:442.514304px;}
.y103{bottom:444.134905px;}
.yd7{bottom:444.314905px;}
.y9a{bottom:456.194915px;}
.ye6{bottom:456.195365px;}
.yac{bottom:456.374315px;}
.y121{bottom:464.114921px;}
.y17b{bottom:464.115371px;}
.y193{bottom:464.294471px;}
.y15d{bottom:464.295371px;}
.y39{bottom:466.275999px;}
.ycc{bottom:467.174474px;}
.y52{bottom:467.354924px;}
.y76{bottom:468.254925px;}
.y107{bottom:468.434925px;}
.y9{bottom:470.131500px;}
.y16a{bottom:476.175381px;}
.y189{bottom:476.355381px;}
.y67{bottom:480.134934px;}
.y26{bottom:480.315384px;}
.y8{bottom:488.064000px;}
.yd6{bottom:488.234941px;}
.y126{bottom:488.414941px;}
.y131{bottom:489.314491px;}
.y14a{bottom:492.194494px;}
.y99{bottom:500.114950px;}
.ye5{bottom:500.115400px;}
.yab{bottom:500.294350px;}
.ybd{bottom:500.294950px;}
.y7{bottom:505.996500px;}
.y15c{bottom:508.034506px;}
.y120{bottom:508.034956px;}
.y182{bottom:508.035406px;}
.y38{bottom:510.376034px;}
.ycb{bottom:511.094509px;}
.y75{bottom:512.174960px;}
.y13b{bottom:512.354960px;}
.y188{bottom:520.094516px;}
.y118{bottom:520.274966px;}
.y17a{bottom:520.275416px;}
.y51{bottom:523.334969px;}
.y6{bottom:523.929000px;}
.y66{bottom:524.234969px;}
.y7b{bottom:524.414970px;}
.yd5{bottom:532.154976px;}
.y169{bottom:532.335426px;}
.y25{bottom:536.115429px;}
.ye4{bottom:544.034985px;}
.yaa{bottom:544.214385px;}
.ybc{bottom:544.214985px;}
.y130{bottom:545.294536px;}
.y149{bottom:548.174539px;}
.y15b{bottom:552.134542px;}
.y37{bottom:554.296069px;}
.yca{bottom:555.014544px;}
.y74{bottom:556.094995px;}
.y98{bottom:556.274995px;}
.y179{bottom:564.014551px;}
.y192{bottom:564.194551px;}
.y11f{bottom:564.195001px;}
.y181{bottom:564.195451px;}
.y65{bottom:568.155005px;}
.y13a{bottom:568.335005px;}
.y5{bottom:568.761000px;}
.y168{bottom:576.074561px;}
.y117{bottom:576.255011px;}
.y50{bottom:579.315013px;}
.ybb{bottom:588.135021px;}
.yd4{bottom:588.315021px;}
.y12f{bottom:589.034571px;}
.y24{bottom:592.095024px;}
.ya9{bottom:595.514426px;}
.y36{bottom:598.216104px;}
.yc9{bottom:598.934579px;}
.y73{bottom:600.015030px;}
.yfc{bottom:600.195030px;}
.y148{bottom:604.185483px;}
.y178{bottom:607.965486px;}
.y15a{bottom:608.145487px;}
.y64{bottom:612.105940px;}
.y97{bottom:612.285940px;}
.y167{bottom:620.025496px;}
.y116{bottom:620.025946px;}
.y18d{bottom:620.205496px;}
.y11e{bottom:620.205946px;}
.yba{bottom:632.085956px;}
.y4f{bottom:635.145958px;}
.y12e{bottom:640.365512px;}
.y35{bottom:642.136139px;}
.yc8{bottom:642.885514px;}
.y72{bottom:643.965965px;}
.y12b{bottom:644.145965px;}
.y23{bottom:648.105968px;}
.y159{bottom:652.065522px;}
.y63{bottom:656.025975px;}
.y106{bottom:656.205975px;}
.y147{bottom:660.165528px;}
.y18c{bottom:663.945531px;}
.y115{bottom:663.945981px;}
.y177{bottom:664.125531px;}
.yb9{bottom:676.005991px;}
.y166{bottom:676.185541px;}
.y4e{bottom:679.065993px;}
.y34{bottom:686.056175px;}
.yc7{bottom:686.805549px;}
.y71{bottom:688.066000px;}
.yfe{bottom:688.246001px;}
.y62{bottom:699.946010px;}
.y22{bottom:704.086013px;}
.y176{bottom:707.865566px;}
.y114{bottom:707.866016px;}
.y158{bottom:708.045566px;}
.y146{bottom:715.965573px;}
.y165{bottom:719.925576px;}
.yb8{bottom:719.926026px;}
.y4d{bottom:722.986028px;}
.y33{bottom:730.021210px;}
.y81{bottom:731.986036px;}
.yc6{bottom:742.965594px;}
.y61{bottom:743.866045px;}
.y70{bottom:744.046045px;}
.y157{bottom:751.785601px;}
.y113{bottom:751.786051px;}
.y21{bottom:760.066058px;}
.y164{bottom:763.845611px;}
.ye3{bottom:763.846061px;}
.y18b{bottom:764.025611px;}
.y4c{bottom:766.906064px;}
.y145{bottom:771.945618px;}
.y32{bottom:773.941245px;}
.y80{bottom:775.906071px;}
.yb7{bottom:776.086071px;}
.y60{bottom:787.786080px;}
.y112{bottom:795.886087px;}
.yc5{bottom:798.945639px;}
.y163{bottom:807.765646px;}
.ye2{bottom:807.766096px;}
.y156{bottom:807.945646px;}
.y4b{bottom:810.826099px;}
.y20{bottom:815.866103px;}
.y31{bottom:817.861280px;}
.y7f{bottom:819.826106px;}
.y102{bottom:820.006106px;}
.y144{bottom:827.925662px;}
.y4{bottom:827.964000px;}
.y5f{bottom:831.886116px;}
.yb6{bottom:832.066116px;}
.y111{bottom:839.806122px;}
.yc4{bottom:850.065680px;}
.y155{bottom:851.685681px;}
.ye1{bottom:851.686131px;}
.y4a{bottom:854.746134px;}
.y30{bottom:861.961315px;}
.y7e{bottom:863.746141px;}
.y3{bottom:863.829000px;}
.y1f{bottom:871.891148px;}
.y5e{bottom:875.851151px;}
.yc2{bottom:876.031151px;}
.y110{bottom:883.771157px;}
.y143{bottom:883.950707px;}
.yb5{bottom:888.091160px;}
.y175{bottom:895.830717px;}
.ye0{bottom:895.831167px;}
.y49{bottom:898.711169px;}
.y2{bottom:899.695500px;}
.y2f{bottom:905.881350px;}
.y8f{bottom:907.711176px;}
.y154{bottom:907.890726px;}
.y5d{bottom:919.771186px;}
.y7d{bottom:919.951186px;}
.y10f{bottom:927.691192px;}
.y1e{bottom:927.871192px;}
.yb4{bottom:939.211201px;}
.ydf{bottom:939.751202px;}
.y142{bottom:939.931202px;}
.y48{bottom:942.631204px;}
.y2e{bottom:949.801386px;}
.y153{bottom:951.630761px;}
.y8e{bottom:951.631211px;}
.y174{bottom:951.810761px;}
.yee{bottom:951.811211px;}
.y1{bottom:962.460000px;}
.y5c{bottom:963.691221px;}
.y11d{bottom:971.611227px;}
.yde{bottom:983.671237px;}
.y1d{bottom:983.851237px;}
.y47{bottom:986.551239px;}
.y152{bottom:995.550796px;}
.y8d{bottom:995.551246px;}
.ya8{bottom:995.731247px;}
.y5b{bottom:1007.611256px;}
.yed{bottom:1007.791256px;}
.y141{bottom:1027.591272px;}
.y11c{bottom:1027.771272px;}
.y46{bottom:1030.651275px;}
.y173{bottom:1039.650832px;}
.y8c{bottom:1039.651282px;}
.y1c{bottom:1039.831282px;}
.y5a{bottom:1051.531291px;}
.y151{bottom:1051.710841px;}
.yfd{bottom:1051.711291px;}
.y45{bottom:1074.571310px;}
.ya2{bottom:1083.571317px;}
.y11b{bottom:1083.751317px;}
.y150{bottom:1095.450876px;}
.y59{bottom:1095.451326px;}
.y172{bottom:1095.630877px;}
.y1b{bottom:1095.631327px;}
.y1a{bottom:1139.580912px;}
.ya1{bottom:1139.760912px;}
.h11{height:29.974243px;}
.h6{height:42.135954px;}
.h5{height:42.192741px;}
.h7{height:42.981954px;}
.h9{height:47.545351px;}
.hc{height:49.886759px;}
.ha{height:51.679729px;}
.h3{height:67.417526px;}
.he{height:67.717305px;}
.hd{height:67.745445px;}
.h10{height:67.869225px;}
.hf{height:67.925445px;}
.h2{height:68.779526px;}
.h4{height:84.385482px;}
.hb{height:966.931200px;}
.h0{height:1262.835000px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:636.267600px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.559971px;}
.x1{left:101.343000px;}
.x5{left:106.236085px;}
.x3{left:146.014500px;}
.x6{left:152.669072px;}
.xf{left:159.150577px;}
.xd{left:175.709691px;}
.x12{left:205.590164px;}
.x7{left:219.989126px;}
.x2{left:221.752500px;}
.xe{left:237.495190px;}
.xb{left:335.594818px;}
.xc{left:350.894831px;}
.xa{left:386.714859px;}
.x9{left:399.705770px;}
.x11{left:438.045350px;}
.x4{left:442.365354px;}
.x8{left:446.505807px;}
.x19{left:707.010866px;}
.x18{left:708.090866px;}
.x14{left:743.940595px;}
.x17{left:755.278549px;}
.x16{left:759.239707px;}
.x15{left:781.559575px;}
.x13{left:786.779879px;}
@media print{
.v3{vertical-align:-29.440024pt;}
.v4{vertical-align:-26.880022pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.210667pt;}
.v2{vertical-align:29.440024pt;}
.ls17{letter-spacing:-0.896001pt;}
.ls14{letter-spacing:-0.768001pt;}
.ls15{letter-spacing:-0.704001pt;}
.ls9{letter-spacing:-0.640001pt;}
.lsc{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.448000pt;}
.ls19{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.019840pt;}
.lsa{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.133333pt;}
.ls11{letter-spacing:0.169013pt;}
.ls10{letter-spacing:0.174027pt;}
.ls16{letter-spacing:0.179840pt;}
.lsf{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.224000pt;}
.ls5{letter-spacing:0.227734pt;}
.ls8{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.294987pt;}
.ls1{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.430027pt;}
.lsd{letter-spacing:0.480000pt;}
.ws6{word-spacing:-14.784012pt;}
.wse{word-spacing:-14.656012pt;}
.wsb{word-spacing:-14.592012pt;}
.ws12{word-spacing:-14.528012pt;}
.wsc{word-spacing:-14.464012pt;}
.ws7{word-spacing:-14.400012pt;}
.ws9{word-spacing:-14.336011pt;}
.ws8{word-spacing:-14.272011pt;}
.ws4{word-spacing:-14.032699pt;}
.ws11{word-spacing:-14.016011pt;}
.wsd{word-spacing:-13.824011pt;}
.wsf{word-spacing:-13.696011pt;}
.wsa{word-spacing:-13.534624pt;}
.ws10{word-spacing:-8.389127pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.151432pt;}
.ws3{word-spacing:13.982221pt;}
.ws1{word-spacing:27.964443pt;}
.ws2{word-spacing:28.368261pt;}
._f{margin-left:-11.399049pt;}
._0{margin-left:-9.691648pt;}
._b{margin-left:-6.057280pt;}
._c{margin-left:-4.795347pt;}
._d{margin-left:-3.533413pt;}
._1{margin-left:-2.019093pt;}
._4{margin-left:-1.009547pt;}
._3{width:1.211456pt;}
._9{width:2.221003pt;}
._a{width:3.485205pt;}
._2{width:6.778116pt;}
._7{width:8.429715pt;}
._8{width:16.607043pt;}
._e{width:18.171840pt;}
._6{width:33.113131pt;}
._5{width:40.129480pt;}
.fs6{font-size:37.120030pt;}
.fs5{font-size:42.880034pt;}
.fs2{font-size:50.477333pt;}
.fs7{font-size:53.120042pt;}
.fs3{font-size:58.880047pt;}
.fs4{font-size:64.000051pt;}
.fs0{font-size:80.763733pt;}
.fs1{font-size:100.954667pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:23.839775pt;}
.y19{bottom:52.000042pt;}
.y42{bottom:62.879807pt;}
.y18{bottom:69.952589pt;}
.yfb{bottom:92.352074pt;}
.y85{bottom:92.992608pt;}
.ya0{bottom:93.152608pt;}
.y13f{bottom:94.592609pt;}
.y17{bottom:99.089333pt;}
.y10e{bottom:100.032613pt;}
.y41{bottom:101.919838pt;}
.y6f{bottom:103.712616pt;}
.y13e{bottom:105.792618pt;}
.y19a{bottom:107.232619pt;}
.yd3{bottom:109.632221pt;}
.yec{bottom:110.753022pt;}
.y139{bottom:111.552223pt;}
.y101{bottom:111.872089pt;}
.y8b{bottom:114.272625pt;}
.yc1{bottom:114.432625pt;}
.y16{bottom:115.030667pt;}
.y58{bottom:116.992627pt;}
.y18a{bottom:117.793028pt;}
.y2c{bottom:120.353030pt;}
.yf4{bottom:120.512096pt;}
.y96{bottom:121.312630pt;}
.y44{bottom:121.472631pt;}
.yc0{bottom:121.632631pt;}
.y171{bottom:128.512636pt;}
.ya6{bottom:128.672636pt;}
.y15{bottom:130.970667pt;}
.yfa{bottom:131.232105pt;}
.y84{bottom:132.032639pt;}
.yb3{bottom:132.192106pt;}
.y140{bottom:132.192639pt;}
.y11a{bottom:133.466373pt;}
.y10d{bottom:139.066378pt;}
.y40{bottom:140.999869pt;}
.y6e{bottom:142.746381pt;}
.y7a{bottom:142.906381pt;}
.y199{bottom:146.106784pt;}
.y14{bottom:146.910667pt;}
.yd2{bottom:148.825986pt;}
.ydd{bottom:149.786386pt;}
.yeb{bottom:149.786786pt;}
.y12d{bottom:149.946387pt;}
.y138{bottom:150.585987pt;}
.y100{bottom:150.745854pt;}
.y8a{bottom:153.306389pt;}
.y187{bottom:156.826792pt;}
.yf3{bottom:159.545861pt;}
.y95{bottom:160.506395pt;}
.y2d{bottom:161.946240pt;}
.y57{bottom:166.746400pt;}
.y170{bottom:167.546801pt;}
.y191{bottom:167.706801pt;}
.yf9{bottom:170.265870pt;}
.y83{bottom:171.066404pt;}
.yb2{bottom:171.225870pt;}
.y13c{bottom:171.226404pt;}
.ybf{bottom:171.386404pt;}
.y10c{bottom:178.106409pt;}
.ya5{bottom:178.266409pt;}
.y2b{bottom:178.266809pt;}
.y3f{bottom:180.199900pt;}
.y6d{bottom:181.786412pt;}
.y198{bottom:185.306815pt;}
.yd1{bottom:187.866017pt;}
.y14f{bottom:188.666018pt;}
.ydc{bottom:188.826418pt;}
.yea{bottom:188.826818pt;}
.y137{bottom:189.786018pt;}
.y89{bottom:192.506421pt;}
.y13{bottom:194.730667pt;}
.y186{bottom:195.866823pt;}
.y162{bottom:196.026823pt;}
.yff{bottom:196.345890pt;}
.y94{bottom:199.546426pt;}
.y12c{bottom:199.706426pt;}
.y12a{bottom:199.706826pt;}
.y190{bottom:206.586832pt;}
.y180{bottom:206.746832pt;}
.yf8{bottom:209.305901pt;}
.yf2{bottom:209.465901pt;}
.y9f{bottom:210.106435pt;}
.yb1{bottom:210.265902pt;}
.ybe{bottom:210.266435pt;}
.y12{bottom:210.672000pt;}
.y56{bottom:216.506440pt;}
.y10b{bottom:217.306441pt;}
.y16f{bottom:217.466841pt;}
.y3e{bottom:219.239932pt;}
.y6c{bottom:220.826443pt;}
.y82{bottom:220.986443pt;}
.y11{bottom:226.612000pt;}
.yd0{bottom:226.906048pt;}
.ydb{bottom:227.866449pt;}
.y2a{bottom:227.866849pt;}
.ya4{bottom:228.026449pt;}
.y136{bottom:228.826050pt;}
.y88{bottom:231.546452pt;}
.y161{bottom:234.906855pt;}
.y197{bottom:235.066855pt;}
.y14e{bottom:238.586058pt;}
.y93{bottom:238.586458pt;}
.y17f{bottom:245.626863pt;}
.y185{bottom:245.786863pt;}
.y9e{bottom:249.306466pt;}
.yb0{bottom:249.465933pt;}
.y129{bottom:249.466866pt;}
.y125{bottom:256.346472pt;}
.y16e{bottom:256.346872pt;}
.y3d{bottom:258.279963pt;}
.y10{bottom:258.492000pt;}
.yf1{bottom:259.225941pt;}
.y6b{bottom:259.866475pt;}
.yc3{bottom:260.026475pt;}
.ya7{bottom:262.106876pt;}
.y55{bottom:266.266480pt;}
.yda{bottom:266.906480pt;}
.ye9{bottom:266.906880pt;}
.y10a{bottom:267.066480pt;}
.y135{bottom:267.866081pt;}
.y87{bottom:270.586483pt;}
.y196{bottom:274.106086pt;}
.y160{bottom:274.106886pt;}
.yf{bottom:274.432000pt;}
.ycf{bottom:276.826088pt;}
.y92{bottom:277.626489pt;}
.y29{bottom:277.626889pt;}
.ya3{bottom:277.786489pt;}
.y17e{bottom:284.666894pt;}
.y14d{bottom:288.346097pt;}
.y9d{bottom:288.346497pt;}
.y128{bottom:288.346897pt;}
.yaf{bottom:288.505964pt;}
.ye{bottom:290.372000pt;}
.y124{bottom:295.386503pt;}
.y16d{bottom:295.386903pt;}
.y18f{bottom:295.546903pt;}
.y119{bottom:296.826504pt;}
.y3c{bottom:297.319994pt;}
.yf0{bottom:298.105972pt;}
.y79{bottom:298.906506pt;}
.yd9{bottom:306.146512pt;}
.yd{bottom:306.313333pt;}
.y134{bottom:306.946112pt;}
.yf7{bottom:309.025981pt;}
.y86{bottom:309.666514pt;}
.y6a{bottom:309.826515pt;}
.yce{bottom:315.746119pt;}
.y54{bottom:315.906519pt;}
.y105{bottom:316.706520pt;}
.y109{bottom:316.866520pt;}
.ye8{bottom:316.866920pt;}
.yc{bottom:322.253333pt;}
.y184{bottom:323.746926pt;}
.y195{bottom:323.906126pt;}
.y15f{bottom:323.906926pt;}
.y9c{bottom:327.426529pt;}
.y28{bottom:327.426929pt;}
.yae{bottom:327.585995pt;}
.y91{bottom:327.586529pt;}
.y123{bottom:334.466534pt;}
.y18e{bottom:334.466934pt;}
.y17d{bottom:334.626934pt;}
.y3b{bottom:336.360025pt;}
.y14c{bottom:338.146137pt;}
.y78{bottom:338.146537pt;}
.yef{bottom:343.746008pt;}
.yd8{bottom:345.186543pt;}
.y16c{bottom:345.346943pt;}
.y133{bottom:345.986143pt;}
.yf6{bottom:347.906012pt;}
.y69{bottom:348.706546pt;}
.y7c{bottom:348.866546pt;}
.y104{bottom:355.746551pt;}
.y194{bottom:362.786157pt;}
.y15e{bottom:362.786957pt;}
.ycd{bottom:365.666159pt;}
.y53{bottom:365.666559pt;}
.y9b{bottom:366.466560pt;}
.yad{bottom:366.626027pt;}
.y108{bottom:366.626560pt;}
.ye7{bottom:366.626960pt;}
.yb{bottom:370.073333pt;}
.y122{bottom:373.506565pt;}
.y17c{bottom:373.506965pt;}
.y183{bottom:373.666966pt;}
.y3a{bottom:375.427523pt;}
.y77{bottom:377.186568pt;}
.y27{bottom:377.186968pt;}
.y90{bottom:377.346569pt;}
.y127{bottom:384.226574pt;}
.y16b{bottom:384.226974pt;}
.y132{bottom:385.026175pt;}
.ya{bottom:386.013333pt;}
.y14b{bottom:387.746177pt;}
.y68{bottom:387.746577pt;}
.y13d{bottom:387.906577pt;}
.yf5{bottom:393.346048pt;}
.y103{bottom:394.786582pt;}
.yd7{bottom:394.946583pt;}
.y9a{bottom:405.506591pt;}
.ye6{bottom:405.506991pt;}
.yac{bottom:405.666058pt;}
.y121{bottom:412.546597pt;}
.y17b{bottom:412.546997pt;}
.y193{bottom:412.706197pt;}
.y15d{bottom:412.706997pt;}
.y39{bottom:414.467554pt;}
.ycc{bottom:415.266199pt;}
.y52{bottom:415.426599pt;}
.y76{bottom:416.226600pt;}
.y107{bottom:416.386600pt;}
.y9{bottom:417.894667pt;}
.y16a{bottom:423.267005pt;}
.y189{bottom:423.427005pt;}
.y67{bottom:426.786608pt;}
.y26{bottom:426.947008pt;}
.y8{bottom:433.834667pt;}
.yd6{bottom:433.986614pt;}
.y126{bottom:434.146614pt;}
.y131{bottom:434.946215pt;}
.y14a{bottom:437.506217pt;}
.y99{bottom:444.546622pt;}
.ye5{bottom:444.547022pt;}
.yab{bottom:444.706089pt;}
.ybd{bottom:444.706622pt;}
.y7{bottom:449.774667pt;}
.y15c{bottom:451.586228pt;}
.y120{bottom:451.586628pt;}
.y182{bottom:451.587028pt;}
.y38{bottom:453.667586pt;}
.ycb{bottom:454.306230pt;}
.y75{bottom:455.266631pt;}
.y13b{bottom:455.426631pt;}
.y188{bottom:462.306237pt;}
.y118{bottom:462.466637pt;}
.y17a{bottom:462.467037pt;}
.y51{bottom:465.186639pt;}
.y6{bottom:465.714667pt;}
.y66{bottom:465.986639pt;}
.y7b{bottom:466.146640pt;}
.yd5{bottom:473.026645pt;}
.y169{bottom:473.187045pt;}
.y25{bottom:476.547048pt;}
.ye4{bottom:483.586654pt;}
.yaa{bottom:483.746120pt;}
.ybc{bottom:483.746654pt;}
.y130{bottom:484.706254pt;}
.y149{bottom:487.266256pt;}
.y15b{bottom:490.786259pt;}
.y37{bottom:492.707617pt;}
.yca{bottom:493.346261pt;}
.y74{bottom:494.306662pt;}
.y98{bottom:494.466662pt;}
.y179{bottom:501.346268pt;}
.y192{bottom:501.506268pt;}
.y11f{bottom:501.506668pt;}
.y181{bottom:501.507068pt;}
.y65{bottom:505.026671pt;}
.y13a{bottom:505.186671pt;}
.y5{bottom:505.565333pt;}
.y168{bottom:512.066276pt;}
.y117{bottom:512.226676pt;}
.y50{bottom:514.946679pt;}
.ybb{bottom:522.786685pt;}
.yd4{bottom:522.946685pt;}
.y12f{bottom:523.586286pt;}
.y24{bottom:526.306688pt;}
.ya9{bottom:529.346157pt;}
.y36{bottom:531.747648pt;}
.yc9{bottom:532.386293pt;}
.y73{bottom:533.346693pt;}
.yfc{bottom:533.506693pt;}
.y148{bottom:537.053763pt;}
.y178{bottom:540.413766pt;}
.y15a{bottom:540.573766pt;}
.y64{bottom:544.094169pt;}
.y97{bottom:544.254169pt;}
.y167{bottom:551.133774pt;}
.y116{bottom:551.134174pt;}
.y18d{bottom:551.293774pt;}
.y11e{bottom:551.294174pt;}
.yba{bottom:561.854183pt;}
.y4f{bottom:564.574185pt;}
.y12e{bottom:569.213789pt;}
.y35{bottom:570.787680pt;}
.yc8{bottom:571.453790pt;}
.y72{bottom:572.414191pt;}
.y12b{bottom:572.574191pt;}
.y23{bottom:576.094194pt;}
.y159{bottom:579.613797pt;}
.y63{bottom:583.134200pt;}
.y106{bottom:583.294200pt;}
.y147{bottom:586.813803pt;}
.y18c{bottom:590.173805pt;}
.y115{bottom:590.174205pt;}
.y177{bottom:590.333806pt;}
.yb9{bottom:600.894214pt;}
.y166{bottom:601.053814pt;}
.y4e{bottom:603.614216pt;}
.y34{bottom:609.827711pt;}
.yc7{bottom:610.493822pt;}
.y71{bottom:611.614223pt;}
.yfe{bottom:611.774223pt;}
.y62{bottom:622.174231pt;}
.y22{bottom:625.854234pt;}
.y176{bottom:629.213837pt;}
.y114{bottom:629.214237pt;}
.y158{bottom:629.373837pt;}
.y146{bottom:636.413842pt;}
.y165{bottom:639.933845pt;}
.yb8{bottom:639.934245pt;}
.y4d{bottom:642.654247pt;}
.y33{bottom:648.907742pt;}
.y81{bottom:650.654254pt;}
.yc6{bottom:660.413862pt;}
.y61{bottom:661.214262pt;}
.y70{bottom:661.374262pt;}
.y157{bottom:668.253868pt;}
.y113{bottom:668.254268pt;}
.y21{bottom:675.614274pt;}
.y164{bottom:678.973877pt;}
.ye3{bottom:678.974277pt;}
.y18b{bottom:679.133877pt;}
.y4c{bottom:681.694279pt;}
.y145{bottom:686.173882pt;}
.y32{bottom:687.947773pt;}
.y80{bottom:689.694285pt;}
.yb7{bottom:689.854285pt;}
.y60{bottom:700.254294pt;}
.y112{bottom:707.454299pt;}
.yc5{bottom:710.173901pt;}
.y163{bottom:718.013908pt;}
.ye2{bottom:718.014308pt;}
.y156{bottom:718.173908pt;}
.y4b{bottom:720.734310pt;}
.y20{bottom:725.214314pt;}
.y31{bottom:726.987804pt;}
.y7f{bottom:728.734316pt;}
.y102{bottom:728.894316pt;}
.y144{bottom:735.933922pt;}
.y4{bottom:735.968000pt;}
.y5f{bottom:739.454325pt;}
.yb6{bottom:739.614325pt;}
.y111{bottom:746.494331pt;}
.yc4{bottom:755.613938pt;}
.y155{bottom:757.053939pt;}
.ye1{bottom:757.054339pt;}
.y4a{bottom:759.774341pt;}
.y30{bottom:766.187836pt;}
.y7e{bottom:767.774348pt;}
.y3{bottom:767.848000pt;}
.y1f{bottom:775.014353pt;}
.y5e{bottom:778.534356pt;}
.yc2{bottom:778.694356pt;}
.y110{bottom:785.574362pt;}
.y143{bottom:785.733962pt;}
.yb5{bottom:789.414365pt;}
.y175{bottom:796.293970pt;}
.ye0{bottom:796.294370pt;}
.y49{bottom:798.854372pt;}
.y2{bottom:799.729333pt;}
.y2f{bottom:805.227867pt;}
.y8f{bottom:806.854379pt;}
.y154{bottom:807.013979pt;}
.y5d{bottom:817.574387pt;}
.y7d{bottom:817.734388pt;}
.y10f{bottom:824.614393pt;}
.y1e{bottom:824.774393pt;}
.yb4{bottom:834.854401pt;}
.ydf{bottom:835.334402pt;}
.y142{bottom:835.494402pt;}
.y48{bottom:837.894404pt;}
.y2e{bottom:844.267898pt;}
.y153{bottom:845.894010pt;}
.y8e{bottom:845.894410pt;}
.y174{bottom:846.054010pt;}
.yee{bottom:846.054410pt;}
.y1{bottom:855.520000pt;}
.y5c{bottom:856.614419pt;}
.y11d{bottom:863.654424pt;}
.yde{bottom:874.374433pt;}
.y1d{bottom:874.534433pt;}
.y47{bottom:876.934435pt;}
.y152{bottom:884.934041pt;}
.y8d{bottom:884.934441pt;}
.ya8{bottom:885.094441pt;}
.y5b{bottom:895.654450pt;}
.yed{bottom:895.814450pt;}
.y141{bottom:913.414464pt;}
.y11c{bottom:913.574464pt;}
.y46{bottom:916.134466pt;}
.y173{bottom:924.134073pt;}
.y8c{bottom:924.134473pt;}
.y1c{bottom:924.294473pt;}
.y5a{bottom:934.694481pt;}
.y151{bottom:934.854081pt;}
.yfd{bottom:934.854481pt;}
.y45{bottom:955.174497pt;}
.ya2{bottom:963.174504pt;}
.y11b{bottom:963.334504pt;}
.y150{bottom:973.734112pt;}
.y59{bottom:973.734512pt;}
.y172{bottom:973.894112pt;}
.y1b{bottom:973.894512pt;}
.y1a{bottom:1012.960810pt;}
.ya1{bottom:1013.120810pt;}
.h11{height:26.643771pt;}
.h6{height:37.454181pt;}
.h5{height:37.504659pt;}
.h7{height:38.206181pt;}
.h9{height:42.262534pt;}
.hc{height:44.343785pt;}
.ha{height:45.937537pt;}
.h3{height:59.926690pt;}
.he{height:60.193160pt;}
.hd{height:60.218173pt;}
.h10{height:60.328200pt;}
.hf{height:60.378173pt;}
.h2{height:61.137357pt;}
.h4{height:75.009317pt;}
.hb{height:859.494400pt;}
.h0{height:1122.520000pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:565.571200pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.719974pt;}
.x1{left:90.082667pt;}
.x5{left:94.432076pt;}
.x3{left:129.790667pt;}
.x6{left:135.705842pt;}
.xf{left:141.467180pt;}
.xd{left:156.186392pt;}
.x12{left:182.746813pt;}
.x7{left:195.545890pt;}
.x2{left:197.113333pt;}
.xe{left:211.106836pt;}
.xb{left:298.306505pt;}
.xc{left:311.906516pt;}
.xa{left:343.746542pt;}
.x9{left:355.294018pt;}
.x11{left:389.373645pt;}
.x4{left:393.213648pt;}
.x8{left:396.894051pt;}
.x19{left:628.454103pt;}
.x18{left:629.414104pt;}
.x14{left:661.280529pt;}
.x17{left:671.358710pt;}
.x16{left:674.879740pt;}
.x15{left:694.719622pt;}
.x13{left:699.359893pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
