
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* 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("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #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("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -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(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_9cf576056df4f2a46fe58136.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.116000;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('chunks/assets/font_05de3e399074cc77660b150e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.276000;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('chunks/assets/font_1b8576c56b259274005de8e9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106000;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('chunks/assets/font_55bb14dd15a386f473e142ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.099000;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('chunks/assets/font_039e218e7b1b96140fdcd669.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;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:ff6;src:url('chunks/assets/font_b74114f3056e85fdcf6fa8c0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.839000;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:ff7;src:url('chunks/assets/font_479bbf6e4b9e7f5d85e69bdc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.051000;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:ff8;src:url('chunks/assets/font_7c00dab504c95b9a486a093d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.276000;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:ff9;src:url('chunks/assets/font_4ca11dbb7afcf7314223522a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773000;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;}
.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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.878000px;}
.v2{vertical-align:21.690000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000936px;}
.ls2{letter-spacing:2.989622px;}
.ls5{letter-spacing:5.624332px;}
.ls4{letter-spacing:5.856263px;}
.lsb{letter-spacing:7.711712px;}
.ls9{letter-spacing:7.769695px;}
.lsa{letter-spacing:9.277248px;}
.ls6{letter-spacing:10.876103px;}
.ls0{letter-spacing:16.149056px;}
.ls7{letter-spacing:18.816538px;}
.ls8{letter-spacing:21.802368px;}
.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;}
}
.ws48{word-spacing:-15.539390px;}
.ws19{word-spacing:-12.431448px;}
.ws5d{word-spacing:-9.564120px;}
.ws7{word-spacing:-8.368560px;}
.ws42{word-spacing:-4.348710px;}
.ws87{word-spacing:-4.000813px;}
.ws3d{word-spacing:-3.710899px;}
.ws66{word-spacing:-3.594934px;}
.ws9f{word-spacing:-3.420985px;}
.wsbe{word-spacing:-3.386178px;}
.ws5a{word-spacing:-3.363002px;}
.ws8c{word-spacing:-3.305020px;}
.ws6a{word-spacing:-3.073088px;}
.ws26{word-spacing:-3.061476px;}
.ws69{word-spacing:-2.957123px;}
.ws6f{word-spacing:-2.899140px;}
.ws6e{word-spacing:-2.841157px;}
.wsc3{word-spacing:-2.736774px;}
.ws4e{word-spacing:-2.667209px;}
.ws67{word-spacing:-2.609226px;}
.ws5b{word-spacing:-2.551243px;}
.wsb4{word-spacing:-2.551230px;}
.ws4c{word-spacing:-2.319312px;}
.ws51{word-spacing:-2.261329px;}
.ws38{word-spacing:-2.203346px;}
.ws46{word-spacing:-2.145364px;}
.ws98{word-spacing:-1.971415px;}
.ws93{word-spacing:-1.913432px;}
.wsbf{word-spacing:-1.901826px;}
.ws1e{word-spacing:-1.855440px;}
.wsb2{word-spacing:-1.809054px;}
.ws39{word-spacing:-1.681501px;}
.ws92{word-spacing:-1.565536px;}
.ws2c{word-spacing:-1.507553px;}
.ws16{word-spacing:-1.437966px;}
.wsa1{word-spacing:-1.391587px;}
.ws22{word-spacing:-1.298808px;}
.ws9d{word-spacing:-1.275622px;}
.ws85{word-spacing:-1.159656px;}
.ws5{word-spacing:-1.101673px;}
.ws82{word-spacing:-1.043690px;}
.ws50{word-spacing:-0.985708px;}
.wsba{word-spacing:-0.974106px;}
.ws52{word-spacing:-0.927725px;}
.ws15{word-spacing:-0.927720px;}
.ws3c{word-spacing:-0.869742px;}
.ws8d{word-spacing:-0.811759px;}
.wsb5{word-spacing:-0.742176px;}
.ws63{word-spacing:-0.695794px;}
.ws2e{word-spacing:-0.637811px;}
.ws4d{word-spacing:-0.579828px;}
.ws60{word-spacing:-0.521845px;}
.wsa6{word-spacing:-0.417474px;}
.ws55{word-spacing:-0.173948px;}
.ws29{word-spacing:-0.115966px;}
.ws99{word-spacing:-0.057983px;}
.ws1a{word-spacing:-0.046386px;}
.ws2{word-spacing:-0.040588px;}
.ws1{word-spacing:-0.001544px;}
.ws4{word-spacing:0.000000px;}
.ws4a{word-spacing:0.000968px;}
.wsa4{word-spacing:0.115966px;}
.wsb6{word-spacing:0.139158px;}
.ws8b{word-spacing:0.173948px;}
.wsb7{word-spacing:0.185544px;}
.ws91{word-spacing:0.231931px;}
.wsc{word-spacing:0.278316px;}
.ws8e{word-spacing:0.289914px;}
.wsc2{word-spacing:0.371088px;}
.ws6b{word-spacing:0.405880px;}
.wsab{word-spacing:0.417474px;}
.ws7a{word-spacing:0.521845px;}
.ws37{word-spacing:0.579828px;}
.ws80{word-spacing:0.637811px;}
.ws7f{word-spacing:0.811759px;}
.ws59{word-spacing:0.869742px;}
.ws12{word-spacing:0.881334px;}
.ws17{word-spacing:0.927720px;}
.ws72{word-spacing:0.927725px;}
.ws71{word-spacing:0.985708px;}
.ws97{word-spacing:1.043690px;}
.ws53{word-spacing:1.101673px;}
.ws24{word-spacing:1.206036px;}
.ws78{word-spacing:1.333604px;}
.wsbc{word-spacing:1.391580px;}
.ws5c{word-spacing:1.391587px;}
.ws70{word-spacing:1.507553px;}
.ws11{word-spacing:1.530738px;}
.ws33{word-spacing:1.565536px;}
.ws10{word-spacing:1.623510px;}
.ws54{word-spacing:1.623518px;}
.ws6c{word-spacing:1.739484px;}
.wsb3{word-spacing:1.762668px;}
.ws7e{word-spacing:1.797467px;}
.ws3{word-spacing:1.826442px;}
.ws89{word-spacing:1.855450px;}
.ws41{word-spacing:1.913432px;}
.ws13{word-spacing:1.948212px;}
.ws81{word-spacing:1.971415px;}
.wsc4{word-spacing:1.994598px;}
.ws20{word-spacing:2.087370px;}
.ws2f{word-spacing:2.087381px;}
.ws86{word-spacing:2.145364px;}
.ws2d{word-spacing:2.203346px;}
.wsa{word-spacing:2.272914px;}
.ws1b{word-spacing:2.319300px;}
.ws8f{word-spacing:2.319312px;}
.ws57{word-spacing:2.377295px;}
.wsf{word-spacing:2.412072px;}
.ws96{word-spacing:2.435278px;}
.wsc5{word-spacing:2.458458px;}
.ws5e{word-spacing:2.486671px;}
.ws7c{word-spacing:2.493260px;}
.wsa9{word-spacing:2.504844px;}
.ws61{word-spacing:2.667209px;}
.ws7d{word-spacing:2.725192px;}
.wsd{word-spacing:2.783160px;}
.ws49{word-spacing:2.841157px;}
.wsaf{word-spacing:2.922318px;}
.wsa0{word-spacing:2.957123px;}
.ws1d{word-spacing:3.015090px;}
.ws4b{word-spacing:3.015106px;}
.wsa5{word-spacing:3.061476px;}
.ws77{word-spacing:3.131071px;}
.wsc1{word-spacing:3.154248px;}
.ws7b{word-spacing:3.189054px;}
.ws31{word-spacing:3.247037px;}
.ws75{word-spacing:3.478968px;}
.ws6{word-spacing:3.536951px;}
.ws40{word-spacing:3.594934px;}
.ws94{word-spacing:3.652916px;}
.ws73{word-spacing:3.710899px;}
.ws68{word-spacing:3.942830px;}
.wsbd{word-spacing:3.989196px;}
.ws5f{word-spacing:4.000813px;}
.ws32{word-spacing:4.058796px;}
.ws1f{word-spacing:4.128354px;}
.ws90{word-spacing:4.174762px;}
.ws2a{word-spacing:4.232744px;}
.ws9b{word-spacing:4.290727px;}
.ws56{word-spacing:4.348710px;}
.wsa7{word-spacing:4.360284px;}
.ws84{word-spacing:4.464676px;}
.ws83{word-spacing:4.522658px;}
.ws74{word-spacing:4.580641px;}
.ws4f{word-spacing:4.638624px;}
.wsa3{word-spacing:4.696607px;}
.ws95{word-spacing:4.986521px;}
.ws30{word-spacing:5.044504px;}
.ws9c{word-spacing:5.102486px;}
.wsbb{word-spacing:5.148846px;}
.ws36{word-spacing:5.160469px;}
.ws3b{word-spacing:5.276435px;}
.wsb{word-spacing:5.288004px;}
.ws9{word-spacing:5.380776px;}
.ws9e{word-spacing:5.682314px;}
.ws43{word-spacing:5.798280px;}
.ws35{word-spacing:5.856263px;}
.ws88{word-spacing:5.914246px;}
.ws34{word-spacing:5.972228px;}
.ws64{word-spacing:6.030211px;}
.wsb1{word-spacing:6.076566px;}
.wsa2{word-spacing:6.088194px;}
.wsc0{word-spacing:6.122952px;}
.ws3a{word-spacing:6.204160px;}
.ws58{word-spacing:6.436091px;}
.ws79{word-spacing:6.552056px;}
.ws9a{word-spacing:6.668022px;}
.ws62{word-spacing:6.726005px;}
.ws3e{word-spacing:6.899953px;}
.ws3f{word-spacing:6.957936px;}
.ws8a{word-spacing:7.015919px;}
.ws45{word-spacing:7.189867px;}
.wsae{word-spacing:7.236216px;}
.wsa8{word-spacing:7.607304px;}
.ws2b{word-spacing:7.711712px;}
.ws6d{word-spacing:7.769695px;}
.ws44{word-spacing:7.827678px;}
.ws65{word-spacing:8.523472px;}
.ws25{word-spacing:8.627796px;}
.ws28{word-spacing:9.161282px;}
.wsac{word-spacing:10.065762px;}
.ws21{word-spacing:10.761552px;}
.wsad{word-spacing:11.039868px;}
.ws0{word-spacing:11.323940px;}
.wsaa{word-spacing:11.503728px;}
.ws47{word-spacing:11.895344px;}
.ws23{word-spacing:13.591098px;}
.wsb0{word-spacing:14.379660px;}
.ws18{word-spacing:17.259474px;}
.ws76{word-spacing:17.684754px;}
.ws14{word-spacing:18.371994px;}
.wsb9{word-spacing:18.600786px;}
.ws1c{word-spacing:19.057236px;}
.wse{word-spacing:19.329114px;}
.wsb8{word-spacing:22.729140px;}
.ws8{word-spacing:25.264446px;}
.ws27{word-spacing:68.861760px;}
._1c{margin-left:-10.329264px;}
._23{margin-left:-7.184027px;}
._22{margin-left:-5.960614px;}
._3{margin-left:-4.870555px;}
._0{margin-left:-3.044070px;}
._1{margin-left:-1.136453px;}
._4{width:1.049452px;}
._12{width:2.232311px;}
._f{width:8.075648px;}
._5{width:9.720924px;}
._15{width:11.190680px;}
._c{width:12.501043px;}
._b{width:14.524584px;}
._8{width:15.794420px;}
._1e{width:16.948451px;}
._a{width:18.015178px;}
._9{width:19.638704px;}
._e{width:20.804117px;}
._6{width:21.894192px;}
._11{width:22.990153px;}
._2{width:24.062200px;}
._d{width:25.952963px;}
._10{width:27.767950px;}
._1f{width:29.066953px;}
._7{width:31.084394px;}
._16{width:32.180454px;}
._20{width:33.740178px;}
._21{width:35.009984px;}
._17{width:36.668336px;}
._13{width:38.674582px;}
._1d{width:44.530844px;}
._14{width:59.775600px;}
._1b{width:71.922182px;}
._1a{width:114.865081px;}
._18{width:138.992001px;}
._19{width:385.912242px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:34.789800px;}
.fs0{font-size:40.587600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:46.386000px;}
.fs7{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs3{font-size:57.982800px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y52{bottom:18.948000px;}
.y7b{bottom:62.398500px;}
.y51{bottom:63.778500px;}
.y27{bottom:63.780000px;}
.y7a{bottom:77.193000px;}
.y26{bottom:77.976000px;}
.y50{bottom:81.712500px;}
.y79{bottom:91.389000px;}
.y138{bottom:92.173500px;}
.y25{bottom:97.179000px;}
.ycd{bottom:99.645000px;}
.y4f{bottom:102.517500px;}
.y78{bottom:105.586500px;}
.y137{bottom:106.369500px;}
.y24{bottom:111.376500px;}
.ycc{bottom:117.577500px;}
.y77{bottom:119.782500px;}
.y136{bottom:120.567000px;}
.ycb{bottom:135.510000px;}
.y135{bottom:140.377500px;}
.y76{bottom:141.226500px;}
.y4e{bottom:146.437500px;}
.yca{bottom:153.442500px;}
.y134{bottom:154.573500px;}
.y75{bottom:155.424000px;}
.yef{bottom:160.068000px;}
.y4d{bottom:164.370000px;}
.y23{bottom:167.961000px;}
.ya9{bottom:167.992500px;}
.y133{bottom:168.771000px;}
.y74{bottom:169.620000px;}
.yc9{bottom:171.376500px;}
.y112{bottom:174.150000px;}
.ya7{bottom:175.842000px;}
.y22{bottom:182.157000px;}
.ya8{bottom:182.190000px;}
.y4c{bottom:182.302500px;}
.y73{bottom:183.817500px;}
.y132{bottom:188.581500px;}
.yc8{bottom:189.309000px;}
.ya6{bottom:190.039500px;}
.y111{bottom:192.082500px;}
.y72{bottom:198.612000px;}
.y4b{bottom:200.235000px;}
.y21{bottom:201.654000px;}
.y131{bottom:202.779000px;}
.ya5{bottom:204.235500px;}
.yee{bottom:209.563500px;}
.y110{bottom:210.015000px;}
.yc7{bottom:211.929000px;}
.y20{bottom:215.850000px;}
.y130{bottom:216.975000px;}
.y4a{bottom:218.167500px;}
.ya4{bottom:218.433000px;}
.yed{bottom:227.496000px;}
.y10f{bottom:227.947500px;}
.y71{bottom:228.351000px;}
.y1f{bottom:230.047500px;}
.y12f{bottom:231.172500px;}
.y49{bottom:236.101500px;}
.ya3{bottom:239.877000px;}
.y1e{bottom:244.243500px;}
.y12e{bottom:245.368500px;}
.yec{bottom:245.428500px;}
.y10e{bottom:245.881500px;}
.ya2{bottom:254.073000px;}
.y70{bottom:257.997000px;}
.y1d{bottom:258.441000px;}
.yc6{bottom:261.075000px;}
.y48{bottom:262.206000px;}
.yeb{bottom:263.361000px;}
.y10d{bottom:263.814000px;}
.y12d{bottom:265.180500px;}
.ya1{bottom:268.270500px;}
.y1c{bottom:272.637000px;}
.y6f{bottom:275.931000px;}
.yc5{bottom:279.007500px;}
.y12c{bottom:279.376500px;}
.yea{bottom:281.295000px;}
.y10c{bottom:281.746500px;}
.y1b{bottom:286.834500px;}
.ya0{bottom:289.714500px;}
.y12b{bottom:293.574000px;}
.y6e{bottom:293.863500px;}
.yc4{bottom:296.941500px;}
.ye9{bottom:299.227500px;}
.y1a{bottom:301.030500px;}
.y10b{bottom:302.454000px;}
.y9f{bottom:303.912000px;}
.y6d{bottom:311.796000px;}
.y12a{bottom:313.384500px;}
.yc3{bottom:314.874000px;}
.y19{bottom:315.228000px;}
.y47{bottom:316.749000px;}
.y9e{bottom:318.108000px;}
.ye8{bottom:318.484500px;}
.y10a{bottom:320.386500px;}
.y129{bottom:327.580500px;}
.y18{bottom:329.424000px;}
.y6c{bottom:329.728500px;}
.yc2{bottom:332.806500px;}
.y46{bottom:334.681500px;}
.y109{bottom:338.319000px;}
.y9d{bottom:339.553500px;}
.y17{bottom:343.621500px;}
.y128{bottom:347.392500px;}
.y6b{bottom:348.987000px;}
.y157{bottom:349.416000px;}
.yc1{bottom:350.739000px;}
.y45{bottom:352.614000px;}
.y9c{bottom:353.749500px;}
.y108{bottom:356.251500px;}
.ye7{bottom:357.358500px;}
.y16{bottom:357.817500px;}
.y127{bottom:361.588500px;}
.y156{bottom:363.612000px;}
.y9b{bottom:367.947000px;}
.yc0{bottom:368.671500px;}
.y44{bottom:370.546500px;}
.y15{bottom:372.015000px;}
.y107{bottom:374.184000px;}
.ye6{bottom:375.291000px;}
.y126{bottom:375.786000px;}
.y155{bottom:377.809500px;}
.y9a{bottom:382.143000px;}
.y14{bottom:386.211000px;}
.ybf{bottom:386.605500px;}
.y6a{bottom:388.449000px;}
.y43{bottom:388.479000px;}
.y106{bottom:392.116500px;}
.ye5{bottom:393.223500px;}
.y125{bottom:395.596500px;}
.y99{bottom:396.340500px;}
.y154{bottom:397.983000px;}
.y13{bottom:400.408500px;}
.ybe{bottom:404.538000px;}
.y69{bottom:406.381500px;}
.y42{bottom:406.411500px;}
.y124{bottom:409.794000px;}
.y105{bottom:410.050500px;}
.ye4{bottom:411.156000px;}
.y153{bottom:412.180500px;}
.y12{bottom:414.604500px;}
.y98{bottom:417.784500px;}
.y68{bottom:424.314000px;}
.y41{bottom:424.345500px;}
.ybd{bottom:427.158000px;}
.y11{bottom:428.802000px;}
.ye3{bottom:429.088500px;}
.y123{bottom:429.604500px;}
.y104{bottom:430.756500px;}
.y97{bottom:431.982000px;}
.y152{bottom:432.354000px;}
.y67{bottom:442.246500px;}
.y40{bottom:442.278000px;}
.y10{bottom:442.998000px;}
.y122{bottom:443.800500px;}
.y96{bottom:446.178000px;}
.y151{bottom:446.551500px;}
.ye2{bottom:447.022500px;}
.y103{bottom:448.689000px;}
.yf{bottom:457.195500px;}
.y121{bottom:457.998000px;}
.y66{bottom:460.179000px;}
.y3f{bottom:461.031000px;}
.ye1{bottom:464.955000px;}
.y102{bottom:466.623000px;}
.y150{bottom:466.725000px;}
.y95{bottom:467.622000px;}
.ye{bottom:471.391500px;}
.ybc{bottom:476.304000px;}
.y65{bottom:478.113000px;}
.y120{bottom:478.819500px;}
.y3e{bottom:478.963500px;}
.y14f{bottom:480.922500px;}
.y94{bottom:481.819500px;}
.ye0{bottom:482.887500px;}
.y101{bottom:484.555500px;}
.yd{bottom:489.822000px;}
.ybb{bottom:494.236500px;}
.y3d{bottom:496.896000px;}
.y64{bottom:497.370000px;}
.y14e{bottom:501.097500px;}
.ydf{bottom:502.144500px;}
.y100{bottom:502.488000px;}
.y93{bottom:503.263500px;}
.yba{bottom:512.170500px;}
.y3c{bottom:514.828500px;}
.y14d{bottom:515.293500px;}
.y92{bottom:517.461000px;}
.yff{bottom:520.420500px;}
.y11f{bottom:528.742500px;}
.yb9{bottom:530.103000px;}
.y91{bottom:531.657000px;}
.yc{bottom:532.066500px;}
.y3b{bottom:532.762500px;}
.y14c{bottom:535.468500px;}
.y63{bottom:536.832000px;}
.yde{bottom:541.018500px;}
.yfe{bottom:541.128000px;}
.y90{bottom:545.854500px;}
.y11e{bottom:546.676500px;}
.yb8{bottom:548.035500px;}
.y14b{bottom:549.664500px;}
.y3a{bottom:550.695000px;}
.y62{bottom:554.764500px;}
.yb{bottom:556.893000px;}
.ydd{bottom:558.951000px;}
.yfd{bottom:559.060500px;}
.y14a{bottom:563.862000px;}
.y11d{bottom:564.609000px;}
.yb7{bottom:565.968000px;}
.y8f{bottom:567.298500px;}
.y39{bottom:568.627500px;}
.y61{bottom:572.698500px;}
.ydc{bottom:576.883500px;}
.yfc{bottom:576.993000px;}
.y149{bottom:578.058000px;}
.y8e{bottom:581.496000px;}
.y11c{bottom:582.541500px;}
.yb6{bottom:583.900500px;}
.y38{bottom:587.380500px;}
.y60{bottom:590.631000px;}
.ydb{bottom:594.816000px;}
.yfb{bottom:594.925500px;}
.y8d{bottom:595.692000px;}
.y148{bottom:598.233000px;}
.y11b{bottom:600.474000px;}
.yb5{bottom:601.833000px;}
.y37{bottom:605.313000px;}
.y5f{bottom:608.563500px;}
.ya{bottom:609.514500px;}
.y8c{bottom:609.889500px;}
.y147{bottom:612.429000px;}
.yda{bottom:612.750000px;}
.yfa{bottom:612.858000px;}
.y11a{bottom:618.406500px;}
.yb4{bottom:619.767000px;}
.y36{bottom:623.245500px;}
.y5e{bottom:626.496000px;}
.y146{bottom:626.626500px;}
.yd9{bottom:630.682500px;}
.yf9{bottom:630.792000px;}
.y8b{bottom:631.333500px;}
.y9{bottom:634.491000px;}
.y119{bottom:636.339000px;}
.yb3{bottom:637.699500px;}
.y35{bottom:641.179500px;}
.y8a{bottom:645.531000px;}
.y5d{bottom:645.754500px;}
.y145{bottom:646.800000px;}
.yd8{bottom:649.939500px;}
.yf8{bottom:651.498000px;}
.y8{bottom:652.423500px;}
.y118{bottom:654.273000px;}
.y34{bottom:659.112000px;}
.y89{bottom:659.727000px;}
.yb2{bottom:660.319500px;}
.y144{bottom:660.997500px;}
.yf7{bottom:669.430500px;}
.y7{bottom:670.356000px;}
.y117{bottom:672.205500px;}
.y88{bottom:673.924500px;}
.y33{bottom:677.044500px;}
.y143{bottom:681.171000px;}
.y5c{bottom:685.216500px;}
.yf6{bottom:687.364500px;}
.y87{bottom:688.120500px;}
.yd7{bottom:688.813500px;}
.y116{bottom:690.138000px;}
.y32{bottom:694.977000px;}
.y142{bottom:695.368500px;}
.y5b{bottom:703.149000px;}
.yf5{bottom:705.297000px;}
.y6{bottom:706.539000px;}
.yd6{bottom:706.746000px;}
.y115{bottom:708.070500px;}
.yb1{bottom:709.465500px;}
.y141{bottom:709.564500px;}
.y86{bottom:709.566000px;}
.y31{bottom:712.909500px;}
.y5a{bottom:721.081500px;}
.yf4{bottom:723.229500px;}
.y85{bottom:723.762000px;}
.yd5{bottom:724.678500px;}
.y114{bottom:726.003000px;}
.yb0{bottom:727.399500px;}
.y140{bottom:729.739500px;}
.y30{bottom:731.664000px;}
.y84{bottom:737.959500px;}
.y59{bottom:739.014000px;}
.y5{bottom:739.416000px;}
.yf3{bottom:741.162000px;}
.yd4{bottom:742.611000px;}
.y113{bottom:743.935500px;}
.yaf{bottom:745.332000px;}
.y2f{bottom:749.596500px;}
.y58{bottom:756.946500px;}
.y83{bottom:759.403500px;}
.yd3{bottom:760.543500px;}
.yf2{bottom:761.869500px;}
.y13f{bottom:764.110500px;}
.yae{bottom:765.127500px;}
.y2e{bottom:767.529000px;}
.y4{bottom:772.293000px;}
.y82{bottom:773.599500px;}
.y57{bottom:776.205000px;}
.y13e{bottom:778.308000px;}
.yd2{bottom:778.477500px;}
.yf1{bottom:779.802000px;}
.yad{bottom:783.060000px;}
.y2d{bottom:785.461500px;}
.y81{bottom:787.797000px;}
.y13d{bottom:792.504000px;}
.yd1{bottom:796.410000px;}
.yf0{bottom:797.734500px;}
.yac{bottom:800.992500px;}
.y2c{bottom:803.394000px;}
.y13c{bottom:806.701500px;}
.y80{bottom:809.241000px;}
.yd0{bottom:814.342500px;}
.y56{bottom:815.667000px;}
.yab{bottom:818.925000px;}
.y2b{bottom:821.326500px;}
.y7f{bottom:823.438500px;}
.y13b{bottom:826.875000px;}
.y3{bottom:827.007000px;}
.ycf{bottom:832.275000px;}
.y55{bottom:833.599500px;}
.y7e{bottom:837.634500px;}
.y2a{bottom:839.260500px;}
.y13a{bottom:841.072500px;}
.yaa{bottom:841.545000px;}
.y2{bottom:848.247000px;}
.yce{bottom:850.207500px;}
.y54{bottom:851.532000px;}
.y139{bottom:855.268500px;}
.y7d{bottom:859.677000px;}
.y29{bottom:865.365000px;}
.y53{bottom:869.466000px;}
.y7c{bottom:874.471500px;}
.y1{bottom:887.418000px;}
.y28{bottom:905.670000px;}
.hb{height:32.632430px;}
.h8{height:32.679227px;}
.hf{height:37.347889px;}
.h2{height:39.126446px;}
.he{height:42.177769px;}
.h7{height:44.716104px;}
.h4{height:46.684744px;}
.h9{height:47.450189px;}
.ha{height:50.415367px;}
.hd{height:52.662304px;}
.h3{height:52.722079px;}
.h6{height:55.895419px;}
.h10{height:66.406104px;}
.hc{height:75.920090px;}
.h5{height:91.103897px;}
.h0{height:969.448500px;}
.h1{height:969.750000px;}
.w0{width:646.299000px;}
.w1{width:646.500000px;}
.x0{left:0.000000px;}
.x4{left:63.780000px;}
.x1{left:72.283500px;}
.x13{left:80.122500px;}
.x9{left:81.249000px;}
.x5{left:86.196000px;}
.x2{left:87.228000px;}
.x12{left:88.626000px;}
.x3{left:93.157500px;}
.x11{left:94.699500px;}
.x8{left:136.054500px;}
.xf{left:218.238000px;}
.xa{left:226.741500px;}
.xe{left:267.247500px;}
.x6{left:311.104500px;}
.xd{left:319.608000px;}
.x10{left:406.249500px;}
.xb{left:414.753000px;}
.x7{left:445.455000px;}
.xc{left:529.945500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.002667pt;}
.v2{vertical-align:19.280000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000832pt;}
.ls2{letter-spacing:2.657442pt;}
.ls5{letter-spacing:4.999406pt;}
.ls4{letter-spacing:5.205567pt;}
.lsb{letter-spacing:6.854855pt;}
.ls9{letter-spacing:6.906396pt;}
.lsa{letter-spacing:8.246443pt;}
.ls6{letter-spacing:9.667647pt;}
.ls0{letter-spacing:14.354717pt;}
.ls7{letter-spacing:16.725812pt;}
.ls8{letter-spacing:19.379883pt;}
.ws48{word-spacing:-13.812791pt;}
.ws19{word-spacing:-11.050176pt;}
.ws5d{word-spacing:-8.501440pt;}
.ws7{word-spacing:-7.438720pt;}
.ws42{word-spacing:-3.865520pt;}
.ws87{word-spacing:-3.556278pt;}
.ws3d{word-spacing:-3.298577pt;}
.ws66{word-spacing:-3.195497pt;}
.ws9f{word-spacing:-3.040876pt;}
.wsbe{word-spacing:-3.009936pt;}
.ws5a{word-spacing:-2.989335pt;}
.ws8c{word-spacing:-2.937795pt;}
.ws6a{word-spacing:-2.731634pt;}
.ws26{word-spacing:-2.721312pt;}
.ws69{word-spacing:-2.628554pt;}
.ws6f{word-spacing:-2.577013pt;}
.ws6e{word-spacing:-2.525473pt;}
.wsc3{word-spacing:-2.432688pt;}
.ws4e{word-spacing:-2.370852pt;}
.ws67{word-spacing:-2.319312pt;}
.ws5b{word-spacing:-2.267772pt;}
.wsb4{word-spacing:-2.267760pt;}
.ws4c{word-spacing:-2.061611pt;}
.ws51{word-spacing:-2.010070pt;}
.ws38{word-spacing:-1.958530pt;}
.ws46{word-spacing:-1.906990pt;}
.ws98{word-spacing:-1.752369pt;}
.ws93{word-spacing:-1.700829pt;}
.wsbf{word-spacing:-1.690512pt;}
.ws1e{word-spacing:-1.649280pt;}
.wsb2{word-spacing:-1.608048pt;}
.ws39{word-spacing:-1.494668pt;}
.ws92{word-spacing:-1.391587pt;}
.ws2c{word-spacing:-1.340047pt;}
.ws16{word-spacing:-1.278192pt;}
.wsa1{word-spacing:-1.236966pt;}
.ws22{word-spacing:-1.154496pt;}
.ws9d{word-spacing:-1.133886pt;}
.ws85{word-spacing:-1.030805pt;}
.ws5{word-spacing:-0.979265pt;}
.ws82{word-spacing:-0.927725pt;}
.ws50{word-spacing:-0.876185pt;}
.wsba{word-spacing:-0.865872pt;}
.ws52{word-spacing:-0.824644pt;}
.ws15{word-spacing:-0.824640pt;}
.ws3c{word-spacing:-0.773104pt;}
.ws8d{word-spacing:-0.721564pt;}
.wsb5{word-spacing:-0.659712pt;}
.ws63{word-spacing:-0.618483pt;}
.ws2e{word-spacing:-0.566943pt;}
.ws4d{word-spacing:-0.515403pt;}
.ws60{word-spacing:-0.463862pt;}
.wsa6{word-spacing:-0.371088pt;}
.ws55{word-spacing:-0.154621pt;}
.ws29{word-spacing:-0.103081pt;}
.ws99{word-spacing:-0.051540pt;}
.ws1a{word-spacing:-0.041232pt;}
.ws2{word-spacing:-0.036078pt;}
.ws1{word-spacing:-0.001373pt;}
.ws4{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.000861pt;}
.wsa4{word-spacing:0.103081pt;}
.wsb6{word-spacing:0.123696pt;}
.ws8b{word-spacing:0.154621pt;}
.wsb7{word-spacing:0.164928pt;}
.ws91{word-spacing:0.206161pt;}
.wsc{word-spacing:0.247392pt;}
.ws8e{word-spacing:0.257701pt;}
.wsc2{word-spacing:0.329856pt;}
.ws6b{word-spacing:0.360782pt;}
.wsab{word-spacing:0.371088pt;}
.ws7a{word-spacing:0.463862pt;}
.ws37{word-spacing:0.515403pt;}
.ws80{word-spacing:0.566943pt;}
.ws7f{word-spacing:0.721564pt;}
.ws59{word-spacing:0.773104pt;}
.ws12{word-spacing:0.783408pt;}
.ws17{word-spacing:0.824640pt;}
.ws72{word-spacing:0.824644pt;}
.ws71{word-spacing:0.876185pt;}
.ws97{word-spacing:0.927725pt;}
.ws53{word-spacing:0.979265pt;}
.ws24{word-spacing:1.072032pt;}
.ws78{word-spacing:1.185426pt;}
.wsbc{word-spacing:1.236960pt;}
.ws5c{word-spacing:1.236966pt;}
.ws70{word-spacing:1.340047pt;}
.ws11{word-spacing:1.360656pt;}
.ws33{word-spacing:1.391587pt;}
.ws10{word-spacing:1.443120pt;}
.ws54{word-spacing:1.443127pt;}
.ws6c{word-spacing:1.546208pt;}
.wsb3{word-spacing:1.566816pt;}
.ws7e{word-spacing:1.597748pt;}
.ws3{word-spacing:1.623504pt;}
.ws89{word-spacing:1.649289pt;}
.ws41{word-spacing:1.700829pt;}
.ws13{word-spacing:1.731744pt;}
.ws81{word-spacing:1.752369pt;}
.wsc4{word-spacing:1.772976pt;}
.ws20{word-spacing:1.855440pt;}
.ws2f{word-spacing:1.855450pt;}
.ws86{word-spacing:1.906990pt;}
.ws2d{word-spacing:1.958530pt;}
.wsa{word-spacing:2.020368pt;}
.ws1b{word-spacing:2.061600pt;}
.ws8f{word-spacing:2.061611pt;}
.ws57{word-spacing:2.113151pt;}
.wsf{word-spacing:2.144064pt;}
.ws96{word-spacing:2.164691pt;}
.wsc5{word-spacing:2.185296pt;}
.ws5e{word-spacing:2.210374pt;}
.ws7c{word-spacing:2.216231pt;}
.wsa9{word-spacing:2.226528pt;}
.ws61{word-spacing:2.370852pt;}
.ws7d{word-spacing:2.422393pt;}
.wsd{word-spacing:2.473920pt;}
.ws49{word-spacing:2.525473pt;}
.wsaf{word-spacing:2.597616pt;}
.wsa0{word-spacing:2.628554pt;}
.ws1d{word-spacing:2.680080pt;}
.ws4b{word-spacing:2.680094pt;}
.wsa5{word-spacing:2.721312pt;}
.ws77{word-spacing:2.783174pt;}
.wsc1{word-spacing:2.803776pt;}
.ws7b{word-spacing:2.834715pt;}
.ws31{word-spacing:2.886255pt;}
.ws75{word-spacing:3.092416pt;}
.ws6{word-spacing:3.143956pt;}
.ws40{word-spacing:3.195497pt;}
.ws94{word-spacing:3.247037pt;}
.ws73{word-spacing:3.298577pt;}
.ws68{word-spacing:3.504738pt;}
.wsbd{word-spacing:3.545952pt;}
.ws5f{word-spacing:3.556278pt;}
.ws32{word-spacing:3.607819pt;}
.ws1f{word-spacing:3.669648pt;}
.ws90{word-spacing:3.710899pt;}
.ws2a{word-spacing:3.762439pt;}
.ws9b{word-spacing:3.813980pt;}
.ws56{word-spacing:3.865520pt;}
.wsa7{word-spacing:3.875808pt;}
.ws84{word-spacing:3.968601pt;}
.ws83{word-spacing:4.020141pt;}
.ws74{word-spacing:4.071681pt;}
.ws4f{word-spacing:4.123221pt;}
.wsa3{word-spacing:4.174762pt;}
.ws95{word-spacing:4.432463pt;}
.ws30{word-spacing:4.484003pt;}
.ws9c{word-spacing:4.535543pt;}
.wsbb{word-spacing:4.576752pt;}
.ws36{word-spacing:4.587084pt;}
.ws3b{word-spacing:4.690164pt;}
.wsb{word-spacing:4.700448pt;}
.ws9{word-spacing:4.782912pt;}
.ws9e{word-spacing:5.050946pt;}
.ws43{word-spacing:5.154027pt;}
.ws35{word-spacing:5.205567pt;}
.ws88{word-spacing:5.257107pt;}
.ws34{word-spacing:5.308647pt;}
.ws64{word-spacing:5.360188pt;}
.wsb1{word-spacing:5.401392pt;}
.wsa2{word-spacing:5.411728pt;}
.wsc0{word-spacing:5.442624pt;}
.ws3a{word-spacing:5.514809pt;}
.ws58{word-spacing:5.720970pt;}
.ws79{word-spacing:5.824050pt;}
.ws9a{word-spacing:5.927131pt;}
.ws62{word-spacing:5.978671pt;}
.ws3e{word-spacing:6.133292pt;}
.ws3f{word-spacing:6.184832pt;}
.ws8a{word-spacing:6.236372pt;}
.ws45{word-spacing:6.390993pt;}
.wsae{word-spacing:6.432192pt;}
.wsa8{word-spacing:6.762048pt;}
.ws2b{word-spacing:6.854855pt;}
.ws6d{word-spacing:6.906396pt;}
.ws44{word-spacing:6.957936pt;}
.ws65{word-spacing:7.576419pt;}
.ws25{word-spacing:7.669152pt;}
.ws28{word-spacing:8.143362pt;}
.wsac{word-spacing:8.947344pt;}
.ws21{word-spacing:9.565824pt;}
.wsad{word-spacing:9.813216pt;}
.ws0{word-spacing:10.065725pt;}
.wsaa{word-spacing:10.225536pt;}
.ws47{word-spacing:10.573639pt;}
.ws23{word-spacing:12.080976pt;}
.wsb0{word-spacing:12.781920pt;}
.ws18{word-spacing:15.341755pt;}
.ws76{word-spacing:15.719781pt;}
.ws14{word-spacing:16.330661pt;}
.wsb9{word-spacing:16.534032pt;}
.ws1c{word-spacing:16.939765pt;}
.wse{word-spacing:17.181435pt;}
.wsb8{word-spacing:20.203680pt;}
.ws8{word-spacing:22.457285pt;}
.ws27{word-spacing:61.210453pt;}
._1c{margin-left:-9.181568pt;}
._23{margin-left:-6.385802pt;}
._22{margin-left:-5.298323pt;}
._3{margin-left:-4.329382pt;}
._0{margin-left:-2.705840pt;}
._1{margin-left:-1.010180pt;}
._4{width:0.932846pt;}
._12{width:1.984276pt;}
._f{width:7.178354pt;}
._5{width:8.640821pt;}
._15{width:9.947271pt;}
._c{width:11.112038pt;}
._b{width:12.910741pt;}
._8{width:14.039485pt;}
._1e{width:15.065290pt;}
._a{width:16.013491pt;}
._9{width:17.456626pt;}
._e{width:18.492548pt;}
._6{width:19.461504pt;}
._11{width:20.435692pt;}
._2{width:21.388622pt;}
._d{width:23.069300pt;}
._10{width:24.682622pt;}
._1f{width:25.837292pt;}
._7{width:27.630573pt;}
._16{width:28.604848pt;}
._20{width:29.991269pt;}
._21{width:31.119986pt;}
._17{width:32.594077pt;}
._13{width:34.377406pt;}
._1d{width:39.582973pt;}
._14{width:53.133867pt;}
._1b{width:63.930829pt;}
._1a{width:102.102294pt;}
._18{width:123.548445pt;}
._19{width:343.033104pt;}
.fs8{font-size:30.924267pt;}
.fs0{font-size:36.077867pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:41.232000pt;}
.fs7{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs3{font-size:51.540267pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:16.842667pt;}
.y7b{bottom:55.465333pt;}
.y51{bottom:56.692000pt;}
.y27{bottom:56.693333pt;}
.y7a{bottom:68.616000pt;}
.y26{bottom:69.312000pt;}
.y50{bottom:72.633333pt;}
.y79{bottom:81.234667pt;}
.y138{bottom:81.932000pt;}
.y25{bottom:86.381333pt;}
.ycd{bottom:88.573333pt;}
.y4f{bottom:91.126667pt;}
.y78{bottom:93.854667pt;}
.y137{bottom:94.550667pt;}
.y24{bottom:99.001333pt;}
.ycc{bottom:104.513333pt;}
.y77{bottom:106.473333pt;}
.y136{bottom:107.170667pt;}
.ycb{bottom:120.453333pt;}
.y135{bottom:124.780000pt;}
.y76{bottom:125.534667pt;}
.y4e{bottom:130.166667pt;}
.yca{bottom:136.393333pt;}
.y134{bottom:137.398667pt;}
.y75{bottom:138.154667pt;}
.yef{bottom:142.282667pt;}
.y4d{bottom:146.106667pt;}
.y23{bottom:149.298667pt;}
.ya9{bottom:149.326667pt;}
.y133{bottom:150.018667pt;}
.y74{bottom:150.773333pt;}
.yc9{bottom:152.334667pt;}
.y112{bottom:154.800000pt;}
.ya7{bottom:156.304000pt;}
.y22{bottom:161.917333pt;}
.ya8{bottom:161.946667pt;}
.y4c{bottom:162.046667pt;}
.y73{bottom:163.393333pt;}
.y132{bottom:167.628000pt;}
.yc8{bottom:168.274667pt;}
.ya6{bottom:168.924000pt;}
.y111{bottom:170.740000pt;}
.y72{bottom:176.544000pt;}
.y4b{bottom:177.986667pt;}
.y21{bottom:179.248000pt;}
.y131{bottom:180.248000pt;}
.ya5{bottom:181.542667pt;}
.yee{bottom:186.278667pt;}
.y110{bottom:186.680000pt;}
.yc7{bottom:188.381333pt;}
.y20{bottom:191.866667pt;}
.y130{bottom:192.866667pt;}
.y4a{bottom:193.926667pt;}
.ya4{bottom:194.162667pt;}
.yed{bottom:202.218667pt;}
.y10f{bottom:202.620000pt;}
.y71{bottom:202.978667pt;}
.y1f{bottom:204.486667pt;}
.y12f{bottom:205.486667pt;}
.y49{bottom:209.868000pt;}
.ya3{bottom:213.224000pt;}
.y1e{bottom:217.105333pt;}
.y12e{bottom:218.105333pt;}
.yec{bottom:218.158667pt;}
.y10e{bottom:218.561333pt;}
.ya2{bottom:225.842667pt;}
.y70{bottom:229.330667pt;}
.y1d{bottom:229.725333pt;}
.yc6{bottom:232.066667pt;}
.y48{bottom:233.072000pt;}
.yeb{bottom:234.098667pt;}
.y10d{bottom:234.501333pt;}
.y12d{bottom:235.716000pt;}
.ya1{bottom:238.462667pt;}
.y1c{bottom:242.344000pt;}
.y6f{bottom:245.272000pt;}
.yc5{bottom:248.006667pt;}
.y12c{bottom:248.334667pt;}
.yea{bottom:250.040000pt;}
.y10c{bottom:250.441333pt;}
.y1b{bottom:254.964000pt;}
.ya0{bottom:257.524000pt;}
.y12b{bottom:260.954667pt;}
.y6e{bottom:261.212000pt;}
.yc4{bottom:263.948000pt;}
.ye9{bottom:265.980000pt;}
.y1a{bottom:267.582667pt;}
.y10b{bottom:268.848000pt;}
.y9f{bottom:270.144000pt;}
.y6d{bottom:277.152000pt;}
.y12a{bottom:278.564000pt;}
.yc3{bottom:279.888000pt;}
.y19{bottom:280.202667pt;}
.y47{bottom:281.554667pt;}
.y9e{bottom:282.762667pt;}
.ye8{bottom:283.097333pt;}
.y10a{bottom:284.788000pt;}
.y129{bottom:291.182667pt;}
.y18{bottom:292.821333pt;}
.y6c{bottom:293.092000pt;}
.yc2{bottom:295.828000pt;}
.y46{bottom:297.494667pt;}
.y109{bottom:300.728000pt;}
.y9d{bottom:301.825333pt;}
.y17{bottom:305.441333pt;}
.y128{bottom:308.793333pt;}
.y6b{bottom:310.210667pt;}
.y157{bottom:310.592000pt;}
.yc1{bottom:311.768000pt;}
.y45{bottom:313.434667pt;}
.y9c{bottom:314.444000pt;}
.y108{bottom:316.668000pt;}
.ye7{bottom:317.652000pt;}
.y16{bottom:318.060000pt;}
.y127{bottom:321.412000pt;}
.y156{bottom:323.210667pt;}
.y9b{bottom:327.064000pt;}
.yc0{bottom:327.708000pt;}
.y44{bottom:329.374667pt;}
.y15{bottom:330.680000pt;}
.y107{bottom:332.608000pt;}
.ye6{bottom:333.592000pt;}
.y126{bottom:334.032000pt;}
.y155{bottom:335.830667pt;}
.y9a{bottom:339.682667pt;}
.y14{bottom:343.298667pt;}
.ybf{bottom:343.649333pt;}
.y6a{bottom:345.288000pt;}
.y43{bottom:345.314667pt;}
.y106{bottom:348.548000pt;}
.ye5{bottom:349.532000pt;}
.y125{bottom:351.641333pt;}
.y99{bottom:352.302667pt;}
.y154{bottom:353.762667pt;}
.y13{bottom:355.918667pt;}
.ybe{bottom:359.589333pt;}
.y69{bottom:361.228000pt;}
.y42{bottom:361.254667pt;}
.y124{bottom:364.261333pt;}
.y105{bottom:364.489333pt;}
.ye4{bottom:365.472000pt;}
.y153{bottom:366.382667pt;}
.y12{bottom:368.537333pt;}
.y98{bottom:371.364000pt;}
.y68{bottom:377.168000pt;}
.y41{bottom:377.196000pt;}
.ybd{bottom:379.696000pt;}
.y11{bottom:381.157333pt;}
.ye3{bottom:381.412000pt;}
.y123{bottom:381.870667pt;}
.y104{bottom:382.894667pt;}
.y97{bottom:383.984000pt;}
.y152{bottom:384.314667pt;}
.y67{bottom:393.108000pt;}
.y40{bottom:393.136000pt;}
.y10{bottom:393.776000pt;}
.y122{bottom:394.489333pt;}
.y96{bottom:396.602667pt;}
.y151{bottom:396.934667pt;}
.ye2{bottom:397.353333pt;}
.y103{bottom:398.834667pt;}
.yf{bottom:406.396000pt;}
.y121{bottom:407.109333pt;}
.y66{bottom:409.048000pt;}
.y3f{bottom:409.805333pt;}
.ye1{bottom:413.293333pt;}
.y102{bottom:414.776000pt;}
.y150{bottom:414.866667pt;}
.y95{bottom:415.664000pt;}
.ye{bottom:419.014667pt;}
.ybc{bottom:423.381333pt;}
.y65{bottom:424.989333pt;}
.y120{bottom:425.617333pt;}
.y3e{bottom:425.745333pt;}
.y14f{bottom:427.486667pt;}
.y94{bottom:428.284000pt;}
.ye0{bottom:429.233333pt;}
.y101{bottom:430.716000pt;}
.yd{bottom:435.397333pt;}
.ybb{bottom:439.321333pt;}
.y3d{bottom:441.685333pt;}
.y64{bottom:442.106667pt;}
.y14e{bottom:445.420000pt;}
.ydf{bottom:446.350667pt;}
.y100{bottom:446.656000pt;}
.y93{bottom:447.345333pt;}
.yba{bottom:455.262667pt;}
.y3c{bottom:457.625333pt;}
.y14d{bottom:458.038667pt;}
.y92{bottom:459.965333pt;}
.yff{bottom:462.596000pt;}
.y11f{bottom:469.993333pt;}
.yb9{bottom:471.202667pt;}
.y91{bottom:472.584000pt;}
.yc{bottom:472.948000pt;}
.y3b{bottom:473.566667pt;}
.y14c{bottom:475.972000pt;}
.y63{bottom:477.184000pt;}
.yde{bottom:480.905333pt;}
.yfe{bottom:481.002667pt;}
.y90{bottom:485.204000pt;}
.y11e{bottom:485.934667pt;}
.yb8{bottom:487.142667pt;}
.y14b{bottom:488.590667pt;}
.y3a{bottom:489.506667pt;}
.y62{bottom:493.124000pt;}
.yb{bottom:495.016000pt;}
.ydd{bottom:496.845333pt;}
.yfd{bottom:496.942667pt;}
.y14a{bottom:501.210667pt;}
.y11d{bottom:501.874667pt;}
.yb7{bottom:503.082667pt;}
.y8f{bottom:504.265333pt;}
.y39{bottom:505.446667pt;}
.y61{bottom:509.065333pt;}
.ydc{bottom:512.785333pt;}
.yfc{bottom:512.882667pt;}
.y149{bottom:513.829333pt;}
.y8e{bottom:516.885333pt;}
.y11c{bottom:517.814667pt;}
.yb6{bottom:519.022667pt;}
.y38{bottom:522.116000pt;}
.y60{bottom:525.005333pt;}
.ydb{bottom:528.725333pt;}
.yfb{bottom:528.822667pt;}
.y8d{bottom:529.504000pt;}
.y148{bottom:531.762667pt;}
.y11b{bottom:533.754667pt;}
.yb5{bottom:534.962667pt;}
.y37{bottom:538.056000pt;}
.y5f{bottom:540.945333pt;}
.ya{bottom:541.790667pt;}
.y8c{bottom:542.124000pt;}
.y147{bottom:544.381333pt;}
.yda{bottom:544.666667pt;}
.yfa{bottom:544.762667pt;}
.y11a{bottom:549.694667pt;}
.yb4{bottom:550.904000pt;}
.y36{bottom:553.996000pt;}
.y5e{bottom:556.885333pt;}
.y146{bottom:557.001333pt;}
.yd9{bottom:560.606667pt;}
.yf9{bottom:560.704000pt;}
.y8b{bottom:561.185333pt;}
.y9{bottom:563.992000pt;}
.y119{bottom:565.634667pt;}
.yb3{bottom:566.844000pt;}
.y35{bottom:569.937333pt;}
.y8a{bottom:573.805333pt;}
.y5d{bottom:574.004000pt;}
.y145{bottom:574.933333pt;}
.yd8{bottom:577.724000pt;}
.yf8{bottom:579.109333pt;}
.y8{bottom:579.932000pt;}
.y118{bottom:581.576000pt;}
.y34{bottom:585.877333pt;}
.y89{bottom:586.424000pt;}
.yb2{bottom:586.950667pt;}
.y144{bottom:587.553333pt;}
.yf7{bottom:595.049333pt;}
.y7{bottom:595.872000pt;}
.y117{bottom:597.516000pt;}
.y88{bottom:599.044000pt;}
.y33{bottom:601.817333pt;}
.y143{bottom:605.485333pt;}
.y5c{bottom:609.081333pt;}
.yf6{bottom:610.990667pt;}
.y87{bottom:611.662667pt;}
.yd7{bottom:612.278667pt;}
.y116{bottom:613.456000pt;}
.y32{bottom:617.757333pt;}
.y142{bottom:618.105333pt;}
.y5b{bottom:625.021333pt;}
.yf5{bottom:626.930667pt;}
.y6{bottom:628.034667pt;}
.yd6{bottom:628.218667pt;}
.y115{bottom:629.396000pt;}
.yb1{bottom:630.636000pt;}
.y141{bottom:630.724000pt;}
.y86{bottom:630.725333pt;}
.y31{bottom:633.697333pt;}
.y5a{bottom:640.961333pt;}
.yf4{bottom:642.870667pt;}
.y85{bottom:643.344000pt;}
.yd5{bottom:644.158667pt;}
.y114{bottom:645.336000pt;}
.yb0{bottom:646.577333pt;}
.y140{bottom:648.657333pt;}
.y30{bottom:650.368000pt;}
.y84{bottom:655.964000pt;}
.y59{bottom:656.901333pt;}
.y5{bottom:657.258667pt;}
.yf3{bottom:658.810667pt;}
.yd4{bottom:660.098667pt;}
.y113{bottom:661.276000pt;}
.yaf{bottom:662.517333pt;}
.y2f{bottom:666.308000pt;}
.y58{bottom:672.841333pt;}
.y83{bottom:675.025333pt;}
.yd3{bottom:676.038667pt;}
.yf2{bottom:677.217333pt;}
.y13f{bottom:679.209333pt;}
.yae{bottom:680.113333pt;}
.y2e{bottom:682.248000pt;}
.y4{bottom:686.482667pt;}
.y82{bottom:687.644000pt;}
.y57{bottom:689.960000pt;}
.y13e{bottom:691.829333pt;}
.yd2{bottom:691.980000pt;}
.yf1{bottom:693.157333pt;}
.yad{bottom:696.053333pt;}
.y2d{bottom:698.188000pt;}
.y81{bottom:700.264000pt;}
.y13d{bottom:704.448000pt;}
.yd1{bottom:707.920000pt;}
.yf0{bottom:709.097333pt;}
.yac{bottom:711.993333pt;}
.y2c{bottom:714.128000pt;}
.y13c{bottom:717.068000pt;}
.y80{bottom:719.325333pt;}
.yd0{bottom:723.860000pt;}
.y56{bottom:725.037333pt;}
.yab{bottom:727.933333pt;}
.y2b{bottom:730.068000pt;}
.y7f{bottom:731.945333pt;}
.y13b{bottom:735.000000pt;}
.y3{bottom:735.117333pt;}
.ycf{bottom:739.800000pt;}
.y55{bottom:740.977333pt;}
.y7e{bottom:744.564000pt;}
.y2a{bottom:746.009333pt;}
.y13a{bottom:747.620000pt;}
.yaa{bottom:748.040000pt;}
.y2{bottom:753.997333pt;}
.yce{bottom:755.740000pt;}
.y54{bottom:756.917333pt;}
.y139{bottom:760.238667pt;}
.y7d{bottom:764.157333pt;}
.y29{bottom:769.213333pt;}
.y53{bottom:772.858667pt;}
.y7c{bottom:777.308000pt;}
.y1{bottom:788.816000pt;}
.y28{bottom:805.040000pt;}
.hb{height:29.006605pt;}
.h8{height:29.048202pt;}
.hf{height:33.198123pt;}
.h2{height:34.779063pt;}
.he{height:37.491350pt;}
.h7{height:39.747648pt;}
.h4{height:41.497550pt;}
.h9{height:42.177946pt;}
.ha{height:44.813660pt;}
.hd{height:46.810937pt;}
.h3{height:46.864070pt;}
.h6{height:49.684817pt;}
.h10{height:59.027648pt;}
.hc{height:67.484525pt;}
.h5{height:80.981242pt;}
.h0{height:861.732000pt;}
.h1{height:862.000000pt;}
.w0{width:574.488000pt;}
.w1{width:574.666667pt;}
.x0{left:0.000000pt;}
.x4{left:56.693333pt;}
.x1{left:64.252000pt;}
.x13{left:71.220000pt;}
.x9{left:72.221333pt;}
.x5{left:76.618667pt;}
.x2{left:77.536000pt;}
.x12{left:78.778667pt;}
.x3{left:82.806667pt;}
.x11{left:84.177333pt;}
.x8{left:120.937333pt;}
.xf{left:193.989333pt;}
.xa{left:201.548000pt;}
.xe{left:237.553333pt;}
.x6{left:276.537333pt;}
.xd{left:284.096000pt;}
.x10{left:361.110667pt;}
.xb{left:368.669333pt;}
.x7{left:395.960000pt;}
.xc{left:471.062667pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  