
    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_a4c34afa2b6fe9ee642deef6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_dd3a78ac614ca5c507c9ebe6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_6a95d5413ba35ddd44ed3d2d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_41620387c5fc711c6c1e61e2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.686523;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_c90cc42e0933b23fdc769e61.woff')format("woff");}.ff6{font-family:ff6;line-height:0.904297;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_056b16f15f1099ff0601436c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.766113;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_0f15ade9716d30c856ea8169.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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:ffa;src:url('chunks/assets/font_d8c20e0914983d67c809495e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.866699;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:ffb;src:url('chunks/assets/font_ed29c89cf633aecd024d904d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.858887;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:ffc;src:url('chunks/assets/font_2513543219f29b3ae35fb335.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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:ffd;src:url('chunks/assets/font_aec548728249fc1e3ca92698.woff')format("woff");}.ffd{font-family:ffd;line-height:0.682617;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.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-8.639997px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:35.999986px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.062743px;}
.ls9{letter-spacing:0.068862px;}
.ls1{letter-spacing:0.286367px;}
.ls8{letter-spacing:0.319680px;}
.ls6{letter-spacing:42.762703px;}
.ls5{letter-spacing:62.240015px;}
.ls3{letter-spacing:73.178822px;}
.ls2{letter-spacing:132.331780px;}
.ls0{letter-spacing:1373.101155px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc3{text-shadow:-0.015em 0 rgb(51,51,51),0 0.015em rgb(51,51,51),0.015em 0 rgb(51,51,51),0 -0.015em  rgb(51,51,51);}
.sc2{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(51,51,51);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-32.462730px;}
.ws7{word-spacing:-21.059992px;}
.ws9{word-spacing:-18.068855px;}
.ws8{word-spacing:-17.999993px;}
.ws5{word-spacing:-16.613273px;}
.ws0{word-spacing:-16.558360px;}
.ws1{word-spacing:-16.271993px;}
.ws2{word-spacing:-15.011994px;}
.ws4{word-spacing:-14.939994px;}
.ws6{word-spacing:0.000000px;}
._48{margin-left:-10.974718px;}
._51{margin-left:-9.475603px;}
._2{margin-left:-8.387870px;}
._3f{margin-left:-7.226477px;}
._11{margin-left:-6.214978px;}
._4{margin-left:-4.884281px;}
._3{margin-left:-3.736915px;}
._b{margin-left:-2.603932px;}
._1{margin-left:-1.568894px;}
._0{width:1.152887px;}
._8{width:2.723399px;}
._a{width:3.973300px;}
._d{width:5.621891px;}
._12{width:6.899211px;}
._5{width:8.003468px;}
._17{width:9.182479px;}
._10{width:10.402792px;}
._13{width:11.475594px;}
._9{width:12.592074px;}
._6{width:13.646078px;}
._3d{width:15.693409px;}
._c{width:16.720869px;}
._7{width:17.731790px;}
._40{width:18.777857px;}
._2a{width:20.438433px;}
._39{width:22.938613px;}
._37{width:24.636831px;}
._2f{width:26.431612px;}
._3e{width:28.173248px;}
._35{width:29.209246px;}
._44{width:30.598699px;}
._15{width:31.995856px;}
._16{width:33.018834px;}
._19{width:34.345562px;}
._18{width:35.493837px;}
._36{width:36.768438px;}
._45{width:37.895444px;}
._43{width:39.060498px;}
._3c{width:40.841965px;}
._e{width:41.956658px;}
._f{width:44.547364px;}
._49{width:45.709927px;}
._1f{width:46.731359px;}
._31{width:47.760847px;}
._1e{width:49.666396px;}
._1d{width:50.786617px;}
._24{width:52.801138px;}
._25{width:54.324806px;}
._47{width:55.832452px;}
._46{width:57.521149px;}
._21{width:59.301713px;}
._41{width:61.661044px;}
._42{width:63.708195px;}
._2b{width:67.163531px;}
._27{width:70.961772px;}
._34{width:73.652685px;}
._2e{width:76.727509px;}
._4c{width:78.030210px;}
._4e{width:79.049736px;}
._4d{width:80.159798px;}
._38{width:83.939191px;}
._30{width:85.234285px;}
._2d{width:88.733259px;}
._22{width:90.633072px;}
._4b{width:92.636809px;}
._3a{width:93.859134px;}
._3b{width:95.151087px;}
._2c{width:99.453044px;}
._14{width:106.303248px;}
._20{width:125.760224px;}
._4a{width:132.172772px;}
._28{width:142.518697px;}
._1b{width:197.445987px;}
._23{width:201.775482px;}
._1c{width:232.818970px;}
._33{width:238.583180px;}
._32{width:241.670896px;}
._29{width:302.591628px;}
._1a{width:326.639288px;}
._26{width:426.174144px;}
._4f{width:1040.664962px;}
._50{width:1046.998179px;}
.fcc{color:transparent;}
.fc8{color:rgb(44,62,80);}
.fca{color:rgb(5,99,193);}
.fc7{color:rgb(0,32,96);}
.fc6{color:rgb(83,129,53);}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(192,0,0);}
.fcb{color:rgb(0,176,80);}
.fc9{color:rgb(51,51,51);}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs5{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.y5{bottom:-15.839994px;}
.y0{bottom:0.000000px;}
.y15{bottom:2.699713px;}
.y106{bottom:3.959646px;}
.y10b{bottom:3.959679px;}
.y6f{bottom:3.959694px;}
.y110{bottom:3.959713px;}
.y75{bottom:3.959736px;}
.y116{bottom:3.959746px;}
.y11d{bottom:3.959780px;}
.y7c{bottom:3.959786px;}
.y121{bottom:3.959814px;}
.y82{bottom:3.959828px;}
.y129{bottom:3.959847px;}
.y88{bottom:3.959869px;}
.y12d{bottom:3.959880px;}
.y8c{bottom:3.959903px;}
.y136{bottom:3.959922px;}
.y91{bottom:3.959936px;}
.y108{bottom:4.679629px;}
.y40{bottom:4.859579px;}
.y9{bottom:4.859980px;}
.ya{bottom:28.259989px;}
.y8{bottom:44.640000px;}
.y6{bottom:49.499980px;}
.y7{bottom:51.659979px;}
.y38{bottom:132.659947px;}
.yaf{bottom:134.819946px;}
.y92{bottom:134.999946px;}
.ye7{bottom:138.779944px;}
.y186{bottom:139.679944px;}
.y63{bottom:143.639943px;}
.ycc{bottom:148.139941px;}
.y90{bottom:155.340000px;}
.y37{bottom:161.999935px;}
.yae{bottom:162.899935px;}
.y185{bottom:163.799934px;}
.y14f{bottom:165.779934px;}
.y62{bottom:167.759933px;}
.y139{bottom:170.819932px;}
.ycb{bottom:172.259931px;}
.yff{bottom:175.319930px;}
.y8f{bottom:179.999928px;}
.y16a{bottom:180.719928px;}
.ye6{bottom:187.019925px;}
.y184{bottom:187.919925px;}
.y135{bottom:191.340000px;}
.y36{bottom:192.419923px;}
.y14e{bottom:193.679923px;}
.y134{bottom:195.299922px;}
.y20{bottom:196.019922px;}
.yca{bottom:196.559921px;}
.yfe{bottom:199.439920px;}
.y8e{bottom:200.699920px;}
.yad{bottom:202.859919px;}
.y61{bottom:203.939918px;}
.y169{bottom:204.839918px;}
.ye5{bottom:211.319915px;}
.y183{bottom:212.039915px;}
.y133{bottom:215.999914px;}
.yc9{bottom:220.679912px;}
.y8d{bottom:221.399911px;}
.y14d{bottom:221.759911px;}
.y45{bottom:224.459910px;}
.y60{bottom:228.059909px;}
.y168{bottom:228.959908px;}
.yac{bottom:230.759908px;}
.ye4{bottom:235.439906px;}
.yfd{bottom:235.619906px;}
.y132{bottom:236.699905px;}
.y8b{bottom:238.860000px;}
.y44{bottom:244.439902px;}
.yc8{bottom:244.799902px;}
.y182{bottom:248.219901px;}
.y138{bottom:257.399897px;}
.yab{bottom:258.839896px;}
.ye3{bottom:259.559896px;}
.yfc{bottom:259.739896px;}
.y14c{bottom:261.719895px;}
.y8a{bottom:263.519895px;}
.y5f{bottom:264.239894px;}
.y43{bottom:264.419894px;}
.y167{bottom:265.139894px;}
.yc7{bottom:268.919892px;}
.y181{bottom:272.339891px;}
.y137{bottom:278.099889px;}
.ye2{bottom:283.679887px;}
.yfb{bottom:284.039886px;}
.y89{bottom:284.219886px;}
.y42{bottom:284.399886px;}
.y5e{bottom:288.359885px;}
.y14b{bottom:289.619884px;}
.yc6{bottom:293.039883px;}
.yaa{bottom:295.019882px;}
.y12c{bottom:295.920000px;}
.y180{bottom:296.639881px;}
.y12e{bottom:299.879880px;}
.y41{bottom:304.919878px;}
.y166{bottom:305.099878px;}
.ye1{bottom:307.799877px;}
.yfa{bottom:308.159877px;}
.y195{bottom:308.519877px;}
.y14a{bottom:317.519873px;}
.ya9{bottom:319.139872px;}
.y131{bottom:320.579872px;}
.y87{bottom:322.380000px;}
.y5d{bottom:324.539870px;}
.yf9{bottom:332.279867px;}
.y17f{bottom:332.639867px;}
.yc5{bottom:332.999867px;}
.y165{bottom:333.179867px;}
.y1f{bottom:333.359867px;}
.y130{bottom:341.279863px;}
.y35{bottom:343.259863px;}
.ye0{bottom:343.979862px;}
.y86{bottom:347.039861px;}
.y5c{bottom:348.659861px;}
.yf8{bottom:356.399857px;}
.y17e{bottom:356.939857px;}
.y149{bottom:357.479857px;}
.yc4{bottom:361.079856px;}
.y12f{bottom:361.979855px;}
.y85{bottom:367.739853px;}
.ydf{bottom:368.099853px;}
.y194{bottom:368.819852px;}
.y5b{bottom:372.959851px;}
.y34{bottom:374.039850px;}
.y128{bottom:379.080000px;}
.ya8{bottom:379.439848px;}
.y17d{bottom:381.059848px;}
.y12a{bottom:383.039847px;}
.y148{bottom:385.559846px;}
.y84{bottom:388.439845px;}
.y164{bottom:388.979844px;}
.y33{bottom:391.319843px;}
.yde{bottom:392.219843px;}
.yf7{bottom:392.579843px;}
.y193{bottom:392.939843px;}
.yc3{bottom:401.039840px;}
.y127{bottom:403.739839px;}
.y83{bottom:409.139836px;}
.y5a{bottom:410.219836px;}
.y147{bottom:413.459835px;}
.ya7{bottom:415.439834px;}
.ydd{bottom:416.339833px;}
.yf6{bottom:416.699833px;}
.y163{bottom:417.059833px;}
.y17c{bottom:417.239833px;}
.y32{bottom:420.659832px;}
.y126{bottom:424.439830px;}
.y81{bottom:426.600000px;}
.yc2{bottom:428.939828px;}
.y192{bottom:429.119828px;}
.y1e{bottom:431.099828px;}
.y31{bottom:437.939825px;}
.ya6{bottom:439.739824px;}
.ydc{bottom:440.639824px;}
.yf5{bottom:440.819824px;}
.y17b{bottom:441.359823px;}
.y146{bottom:441.539823px;}
.y162{bottom:444.959822px;}
.y12b{bottom:445.139822px;}
.y59{bottom:446.579821px;}
.y80{bottom:451.259819px;}
.y191{bottom:453.239819px;}
.y30{bottom:455.039818px;}
.yc1{bottom:456.839817px;}
.y120{bottom:462.240000px;}
.ya5{bottom:463.859814px;}
.ydb{bottom:464.759814px;}
.yf4{bottom:464.939814px;}
.y17a{bottom:465.479814px;}
.y122{bottom:466.199814px;}
.y58{bottom:470.879812px;}
.y7f{bottom:471.959811px;}
.y2f{bottom:472.319811px;}
.y161{bottom:473.039811px;}
.y1d{bottom:477.179809px;}
.y190{bottom:477.539809px;}
.y145{bottom:481.499807px;}
.y125{bottom:486.899805px;}
.yda{bottom:488.879804px;}
.yf3{bottom:489.239804px;}
.y2e{bottom:489.599804px;}
.y7e{bottom:492.659803px;}
.y1c{bottom:494.999802px;}
.yc0{bottom:496.979801px;}
.ya4{bottom:500.039800px;}
.y160{bottom:500.939800px;}
.y179{bottom:501.659799px;}
.y2d{bottom:506.879797px;}
.y124{bottom:507.599797px;}
.y144{bottom:509.399796px;}
.y1b{bottom:512.639795px;}
.yd9{bottom:512.999795px;}
.y7d{bottom:513.359795px;}
.y18f{bottom:513.539795px;}
.y57{bottom:519.119792px;}
.y2c{bottom:524.159790px;}
.ybf{bottom:524.879790px;}
.yf2{bottom:525.239790px;}
.y178{bottom:525.779790px;}
.y123{bottom:528.299789px;}
.y15f{bottom:528.839788px;}
.y1a{bottom:529.199788px;}
.y7b{bottom:530.820000px;}
.yd8{bottom:537.119785px;}
.y143{bottom:537.479785px;}
.y18e{bottom:537.659785px;}
.y2b{bottom:541.259783px;}
.y11c{bottom:546.120000px;}
.ya3{bottom:548.279781px;}
.yf1{bottom:549.539780px;}
.y11e{bottom:550.079780px;}
.ybe{bottom:552.779779px;}
.y56{bottom:555.299778px;}
.y7a{bottom:555.479778px;}
.y15e{bottom:556.919777px;}
.y2a{bottom:558.539777px;}
.y177{bottom:561.959775px;}
.y11b{bottom:570.779772px;}
.yd7{bottom:573.299771px;}
.yf0{bottom:573.659771px;}
.y19{bottom:574.199770px;}
.y29{bottom:575.819770px;}
.y79{bottom:576.179770px;}
.y142{bottom:577.439769px;}
.ya2{bottom:584.459766px;}
.y15d{bottom:584.819766px;}
.y176{bottom:586.079766px;}
.y55{bottom:591.479763px;}
.ybd{bottom:592.739763px;}
.y28{bottom:593.099763px;}
.y78{bottom:596.879761px;}
.yd6{bottom:597.419761px;}
.yef{bottom:597.779761px;}
.y18d{bottom:597.959761px;}
.y141{bottom:605.339758px;}
.ya1{bottom:608.579757px;}
.y175{bottom:610.199756px;}
.y27{bottom:610.379756px;}
.y11f{bottom:612.179755px;}
.y15c{bottom:612.899755px;}
.y77{bottom:617.579753px;}
.y18{bottom:619.199752px;}
.ybc{bottom:620.819752px;}
.yd5{bottom:621.539751px;}
.yee{bottom:621.899751px;}
.y18c{bottom:622.259751px;}
.y54{bottom:627.479749px;}
.y26{bottom:627.659749px;}
.y115{bottom:630.180000px;}
.ya0{bottom:632.699747px;}
.y140{bottom:633.239747px;}
.y117{bottom:634.139746px;}
.y76{bottom:638.279745px;}
.y25{bottom:644.759742px;}
.yd4{bottom:645.839742px;}
.yed{bottom:646.019742px;}
.y174{bottom:646.379741px;}
.y15b{bottom:652.859739px;}
.y119{bottom:654.839738px;}
.y74{bottom:655.920000px;}
.y18b{bottom:658.259737px;}
.ybb{bottom:660.779736px;}
.y24{bottom:662.039735px;}
.y53{bottom:663.659735px;}
.y17{bottom:664.199734px;}
.y9f{bottom:668.879732px;}
.yd3{bottom:669.959732px;}
.yec{bottom:670.139732px;}
.y173{bottom:670.499732px;}
.y13f{bottom:674.459730px;}
.y118{bottom:675.539730px;}
.y23{bottom:679.319728px;}
.y73{bottom:680.579728px;}
.y15a{bottom:680.759728px;}
.y16{bottom:682.199727px;}
.y18a{bottom:682.559727px;}
.y9e{bottom:692.999723px;}
.yd2{bottom:694.079722px;}
.yeb{bottom:694.259722px;}
.y11a{bottom:696.239722px;}
.y22{bottom:696.599721px;}
.y52{bottom:699.839720px;}
.yba{bottom:700.739720px;}
.y72{bottom:701.279719px;}
.y13e{bottom:704.339718px;}
.y172{bottom:706.679717px;}
.y159{bottom:708.839716px;}
.y21{bottom:713.699715px;}
.y14{bottom:713.880000px;}
.y10f{bottom:714.060000px;}
.y9d{bottom:717.119713px;}
.y111{bottom:718.019713px;}
.yea{bottom:718.559713px;}
.y71{bottom:721.979711px;}
.yb9{bottom:728.639709px;}
.yd1{bottom:730.439708px;}
.y171{bottom:730.799708px;}
.y158{bottom:736.739705px;}
.y51{bottom:737.099705px;}
.y114{bottom:738.719705px;}
.y70{bottom:742.679703px;}
.y189{bottom:742.859703px;}
.y13d{bottom:744.659702px;}
.y12{bottom:748.079701px;}
.y13{bottom:748.259701px;}
.y9c{bottom:753.299699px;}
.yd0{bottom:754.559698px;}
.yb8{bottom:756.719697px;}
.y113{bottom:759.419696px;}
.y6e{bottom:760.140000px;}
.y157{bottom:764.639694px;}
.y170{bottom:766.979693px;}
.y13c{bottom:772.559691px;}
.y50{bottom:773.639691px;}
.ycf{bottom:778.859688px;}
.y112{bottom:780.119688px;}
.y6d{bottom:784.799686px;}
.y9b{bottom:790.559684px;}
.y16f{bottom:791.099684px;}
.y156{bottom:792.719683px;}
.y11{bottom:795.419682px;}
.yb7{bottom:796.679681px;}
.y4f{bottom:797.759681px;}
.y10a{bottom:797.940000px;}
.y10c{bottom:801.899679px;}
.yce{bottom:802.979679px;}
.y188{bottom:803.159679px;}
.y6c{bottom:805.499678px;}
.y13b{bottom:812.699675px;}
.y10{bottom:818.279673px;}
.y155{bottom:820.619672px;}
.y4e{bottom:821.879671px;}
.y109{bottom:822.599671px;}
.yb6{bottom:824.579670px;}
.y6b{bottom:826.199670px;}
.y9a{bottom:827.099669px;}
.y16e{bottom:827.279669px;}
.yf{bottom:835.559666px;}
.y10d{bottom:843.299663px;}
.y4d{bottom:845.999662px;}
.y6a{bottom:846.899661px;}
.y154{bottom:848.699661px;}
.y99{bottom:851.219660px;}
.y16d{bottom:851.399659px;}
.yb5{bottom:852.659659px;}
.y187{bottom:863.459655px;}
.y10e{bottom:863.999654px;}
.ye{bottom:865.979654px;}
.y69{bottom:868.319653px;}
.y4c{bottom:870.299652px;}
.y98{bottom:875.339650px;}
.y153{bottom:876.599649px;}
.y13a{bottom:880.559648px;}
.y105{bottom:881.820000px;}
.y104{bottom:885.779646px;}
.y16c{bottom:887.579645px;}
.yb4{bottom:892.619643px;}
.y97{bottom:899.459640px;}
.y152{bottom:904.499638px;}
.yd{bottom:905.939638px;}
.y68{bottom:906.119638px;}
.y103{bottom:906.479637px;}
.y4b{bottom:907.559637px;}
.ycd{bottom:911.519635px;}
.y16b{bottom:911.699635px;}
.yb3{bottom:920.519632px;}
.y107{bottom:922.500000px;}
.ye9{bottom:923.759630px;}
.y102{bottom:927.179629px;}
.y151{bottom:932.579627px;}
.yc{bottom:934.019626px;}
.y67{bottom:935.459626px;}
.y96{bottom:935.639626px;}
.y4a{bottom:943.919622px;}
.ye8{bottom:947.879621px;}
.yb2{bottom:948.419621px;}
.y95{bottom:959.759616px;}
.y150{bottom:960.479616px;}
.y101{bottom:965.879614px;}
.y49{bottom:968.219613px;}
.y39{bottom:971.279611px;}
.y66{bottom:971.999611px;}
.y3e{bottom:981.179608px;}
.y94{bottom:983.879606px;}
.yb1{bottom:988.379605px;}
.y48{bottom:992.339603px;}
.y100{bottom:995.759602px;}
.y65{bottom:996.119602px;}
.y3d{bottom:999.539600px;}
.y93{bottom:1008.179597px;}
.y47{bottom:1016.459593px;}
.y3c{bottom:1017.899593px;}
.yb0{bottom:1028.519589px;}
.y64{bottom:1032.299587px;}
.y3b{bottom:1036.259585px;}
.y3f{bottom:1046.880000px;}
.y3a{bottom:1054.439578px;}
.y46{bottom:1056.419577px;}
.y4{bottom:1080.899568px;}
.yb{bottom:1110.059556px;}
.y3{bottom:1114.019554px;}
.y2{bottom:1131.299547px;}
.y1{bottom:1148.579541px;}
.h3{height:1.260000px;}
.hc{height:14.040000px;}
.h18{height:20.160000px;}
.h1c{height:21.420000px;}
.h5{height:21.960000px;}
.h1b{height:23.220000px;}
.hd{height:33.706744px;}
.hf{height:36.624009px;}
.h7{height:36.703110px;}
.h4{height:36.914048px;}
.he{height:39.339828px;}
.h6{height:40.851546px;}
.h1{height:41.522679px;}
.h10{height:42.242678px;}
.h12{height:43.390178px;}
.h14{height:43.536076px;}
.h13{height:44.256076px;}
.h11{height:45.281232px;}
.ha{height:47.988262px;}
.h16{height:48.796855px;}
.h1a{height:49.148418px;}
.h2{height:49.218730px;}
.h17{height:50.027324px;}
.h19{height:52.277323px;}
.h9{height:57.092321px;}
.h8{height:58.531969px;}
.h15{height:61.164468px;}
.hb{height:88.277308px;}
.h0{height:1188.000000px;}
.w2{width:3.960000px;}
.w5{width:4.320000px;}
.w15{width:4.500000px;}
.w29{width:4.680000px;}
.w4{width:7.020000px;}
.w2f{width:7.560000px;}
.w7{width:9.000000px;}
.wd{width:9.180000px;}
.w1c{width:9.360000px;}
.wf{width:10.080000px;}
.w1{width:10.620000px;}
.w20{width:12.960000px;}
.w17{width:29.880000px;}
.w27{width:34.920000px;}
.w1e{width:45.900000px;}
.w16{width:52.020000px;}
.w10{width:59.400000px;}
.w24{width:67.500000px;}
.w2b{width:70.920000px;}
.w11{width:75.960000px;}
.w9{width:76.500000px;}
.w1f{width:77.940000px;}
.w1d{width:79.020000px;}
.w21{width:80.460000px;}
.w26{width:89.460000px;}
.w14{width:93.060000px;}
.w25{width:94.500000px;}
.w19{width:99.900000px;}
.w28{width:102.240000px;}
.w23{width:105.120000px;}
.w18{width:109.440000px;}
.w13{width:110.520000px;}
.wc{width:112.500000px;}
.w3{width:113.580000px;}
.w12{width:117.900000px;}
.w2d{width:119.520000px;}
.wb{width:120.960000px;}
.wa{width:124.020000px;}
.w22{width:133.380000px;}
.w1a{width:137.520000px;}
.w2a{width:142.920000px;}
.w1b{width:151.920000px;}
.w2e{width:153.540000px;}
.w2c{width:170.460000px;}
.we{width:203.940000px;}
.w6{width:241.200000px;}
.w8{width:250.740000px;}
.w0{width:918.000000px;}
.x22{left:-4.680265px;}
.x0{left:0.000000px;}
.x13{left:100.619960px;}
.x11{left:103.139959px;}
.x10{left:105.659958px;}
.x1{left:107.999957px;}
.xd{left:116.640000px;}
.xa{left:121.319951px;}
.xf{left:125.100009px;}
.x49{left:129.420000px;}
.x3{left:133.199947px;}
.x56{left:146.520000px;}
.x14{left:149.219940px;}
.x12{left:159.299936px;}
.x44{left:162.360000px;}
.x45{left:166.859933px;}
.x36{left:175.859930px;}
.x8{left:177.839929px;}
.x4e{left:183.959926px;}
.x2f{left:195.840000px;}
.x46{left:196.920000px;}
.x37{left:205.920000px;}
.x3b{left:209.520000px;}
.x3c{left:214.019914px;}
.x3f{left:216.359913px;}
.x53{left:218.700000px;}
.x1b{left:222.479911px;}
.xb{left:225.899910px;}
.xc{left:228.779908px;}
.xe{left:230.220000px;}
.x4f{left:236.520000px;}
.x4a{left:239.940000px;}
.x15{left:243.179968px;}
.x16{left:244.259902px;}
.x40{left:246.420000px;}
.x24{left:254.339894px;}
.x17{left:265.859894px;}
.x18{left:284.759827px;}
.x30{left:286.919885px;}
.x23{left:291.239884px;}
.x1a{left:301.319879px;}
.x2{left:302.579879px;}
.x1e{left:319.139837px;}
.x19{left:338.759864px;}
.x9{left:356.760282px;}
.x7{left:361.619855px;}
.x38{left:362.880000px;}
.x4b{left:367.380000px;}
.x31{left:375.840000px;}
.x50{left:381.420000px;}
.x1d{left:404.459838px;}
.x1f{left:415.619834px;}
.x41{left:424.440000px;}
.x4{left:431.639827px;}
.x1c{left:435.959792px;}
.x57{left:457.380000px;}
.x32{left:478.079809px;}
.x25{left:495.540000px;}
.x3d{left:507.960000px;}
.x20{left:512.459795px;}
.x2c{left:526.859789px;}
.x26{left:541.259783px;}
.x47{left:556.020000px;}
.x2d{left:560.879776px;}
.x33{left:564.120000px;}
.x51{left:567.540000px;}
.x39{left:595.980000px;}
.x58{left:597.600000px;}
.x4c{left:611.460000px;}
.x28{left:617.760000px;}
.x54{left:621.000000px;}
.x42{left:630.000000px;}
.x34{left:647.999741px;}
.x2a{left:653.760000px;}
.x29{left:662.220000px;}
.x21{left:666.000000px;}
.x2e{left:673.019731px;}
.x52{left:682.920000px;}
.x6{left:691.199724px;}
.x55{left:718.920000px;}
.x43{left:727.020000px;}
.x35{left:738.000000px;}
.x2b{left:745.200000px;}
.x4d{left:753.120000px;}
.x3e{left:757.440000px;}
.x3a{left:758.520000px;}
.x48{left:765.900000px;}
.x27{left:792.000000px;}
.x59{left:801.540000px;}
.x5{left:805.680000px;}
@media print{
.v1{vertical-align:-7.679997pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:31.999987pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.055772pt;}
.ls9{letter-spacing:0.061211pt;}
.ls1{letter-spacing:0.254548pt;}
.ls8{letter-spacing:0.284160pt;}
.ls6{letter-spacing:38.011291pt;}
.ls5{letter-spacing:55.324458pt;}
.ls3{letter-spacing:65.047842pt;}
.ls2{letter-spacing:117.628249pt;}
.ls0{letter-spacing:1220.534360pt;}
.ws3{word-spacing:-28.855760pt;}
.ws7{word-spacing:-18.719993pt;}
.ws9{word-spacing:-16.061204pt;}
.ws8{word-spacing:-15.999994pt;}
.ws5{word-spacing:-14.767354pt;}
.ws0{word-spacing:-14.718543pt;}
.ws1{word-spacing:-14.463994pt;}
.ws2{word-spacing:-13.343995pt;}
.ws4{word-spacing:-13.279995pt;}
.ws6{word-spacing:0.000000pt;}
._48{margin-left:-9.755305pt;}
._51{margin-left:-8.422758pt;}
._2{margin-left:-7.455885pt;}
._3f{margin-left:-6.423535pt;}
._11{margin-left:-5.524425pt;}
._4{margin-left:-4.341583pt;}
._3{margin-left:-3.321702pt;}
._b{margin-left:-2.314607pt;}
._1{margin-left:-1.394572pt;}
._0{width:1.024788pt;}
._8{width:2.420799pt;}
._a{width:3.531823pt;}
._d{width:4.997237pt;}
._12{width:6.132632pt;}
._5{width:7.114194pt;}
._17{width:8.162204pt;}
._10{width:9.246926pt;}
._13{width:10.200528pt;}
._9{width:11.192955pt;}
._6{width:12.129847pt;}
._3d{width:13.949697pt;}
._c{width:14.862994pt;}
._7{width:15.761591pt;}
._40{width:16.691428pt;}
._2a{width:18.167496pt;}
._39{width:20.389878pt;}
._37{width:21.899406pt;}
._2f{width:23.494767pt;}
._3e{width:25.042887pt;}
._35{width:25.963774pt;}
._44{width:27.198844pt;}
._15{width:28.440760pt;}
._16{width:29.350074pt;}
._19{width:30.529389pt;}
._18{width:31.550077pt;}
._36{width:32.683056pt;}
._45{width:33.684839pt;}
._43{width:34.720443pt;}
._3c{width:36.303969pt;}
._e{width:37.294807pt;}
._f{width:39.597657pt;}
._49{width:40.631046pt;}
._1f{width:41.538986pt;}
._31{width:42.454086pt;}
._1e{width:44.147907pt;}
._1d{width:45.143660pt;}
._24{width:46.934345pt;}
._25{width:48.288717pt;}
._47{width:49.628847pt;}
._46{width:51.129910pt;}
._21{width:52.712634pt;}
._41{width:54.809817pt;}
._42{width:56.629506pt;}
._2b{width:59.700917pt;}
._27{width:63.077130pt;}
._34{width:65.469053pt;}
._2e{width:68.202231pt;}
._4c{width:69.360186pt;}
._4e{width:70.266432pt;}
._4d{width:71.253154pt;}
._38{width:74.612614pt;}
._30{width:75.763809pt;}
._2d{width:78.874008pt;}
._22{width:80.562731pt;}
._4b{width:82.343830pt;}
._3a{width:83.430342pt;}
._3b{width:84.578744pt;}
._2c{width:88.402706pt;}
._14{width:94.491776pt;}
._20{width:111.786866pt;}
._4a{width:117.486909pt;}
._28{width:126.683286pt;}
._1b{width:175.507544pt;}
._23{width:179.355984pt;}
._1c{width:206.950195pt;}
._33{width:212.073938pt;}
._32{width:214.818574pt;}
._29{width:268.970336pt;}
._1a{width:290.346034pt;}
._26{width:378.821461pt;}
._4f{width:925.035522pt;}
._50{width:930.665048pt;}
.fs4{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs5{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.y5{bottom:-14.079994pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:2.399745pt;}
.y106{bottom:3.519685pt;}
.y10b{bottom:3.519715pt;}
.y6f{bottom:3.519728pt;}
.y110{bottom:3.519745pt;}
.y75{bottom:3.519765pt;}
.y116{bottom:3.519775pt;}
.y11d{bottom:3.519804pt;}
.y7c{bottom:3.519810pt;}
.y121{bottom:3.519834pt;}
.y82{bottom:3.519847pt;}
.y129{bottom:3.519864pt;}
.y88{bottom:3.519884pt;}
.y12d{bottom:3.519893pt;}
.y8c{bottom:3.519914pt;}
.y136{bottom:3.519931pt;}
.y91{bottom:3.519943pt;}
.y108{bottom:4.159670pt;}
.y40{bottom:4.319626pt;}
.y9{bottom:4.319982pt;}
.ya{bottom:25.119990pt;}
.y8{bottom:39.680000pt;}
.y6{bottom:43.999982pt;}
.y7{bottom:45.919982pt;}
.y38{bottom:117.919953pt;}
.yaf{bottom:119.839952pt;}
.y92{bottom:119.999952pt;}
.ye7{bottom:123.359951pt;}
.y186{bottom:124.159950pt;}
.y63{bottom:127.679949pt;}
.ycc{bottom:131.679947pt;}
.y90{bottom:138.080000pt;}
.y37{bottom:143.999942pt;}
.yae{bottom:144.799942pt;}
.y185{bottom:145.599942pt;}
.y14f{bottom:147.359941pt;}
.y62{bottom:149.119940pt;}
.y139{bottom:151.839939pt;}
.ycb{bottom:153.119939pt;}
.yff{bottom:155.839938pt;}
.y8f{bottom:159.999936pt;}
.y16a{bottom:160.639936pt;}
.ye6{bottom:166.239934pt;}
.y184{bottom:167.039933pt;}
.y135{bottom:170.080000pt;}
.y36{bottom:171.039932pt;}
.y14e{bottom:172.159931pt;}
.y134{bottom:173.599931pt;}
.y20{bottom:174.239930pt;}
.yca{bottom:174.719930pt;}
.yfe{bottom:177.279929pt;}
.y8e{bottom:178.399929pt;}
.yad{bottom:180.319928pt;}
.y61{bottom:181.279927pt;}
.y169{bottom:182.079927pt;}
.ye5{bottom:187.839925pt;}
.y183{bottom:188.479925pt;}
.y133{bottom:191.999923pt;}
.yc9{bottom:196.159922pt;}
.y8d{bottom:196.799921pt;}
.y14d{bottom:197.119921pt;}
.y45{bottom:199.519920pt;}
.y60{bottom:202.719919pt;}
.y168{bottom:203.519919pt;}
.yac{bottom:205.119918pt;}
.ye4{bottom:209.279916pt;}
.yfd{bottom:209.439916pt;}
.y132{bottom:210.399916pt;}
.y8b{bottom:212.320000pt;}
.y44{bottom:217.279913pt;}
.yc8{bottom:217.599913pt;}
.y182{bottom:220.639912pt;}
.y138{bottom:228.799908pt;}
.yab{bottom:230.079908pt;}
.ye3{bottom:230.719908pt;}
.yfc{bottom:230.879908pt;}
.y14c{bottom:232.639907pt;}
.y8a{bottom:234.239906pt;}
.y5f{bottom:234.879906pt;}
.y43{bottom:235.039906pt;}
.y167{bottom:235.679906pt;}
.yc7{bottom:239.039904pt;}
.y181{bottom:242.079903pt;}
.y137{bottom:247.199901pt;}
.ye2{bottom:252.159899pt;}
.yfb{bottom:252.479899pt;}
.y89{bottom:252.639899pt;}
.y42{bottom:252.799899pt;}
.y5e{bottom:256.319897pt;}
.y14b{bottom:257.439897pt;}
.yc6{bottom:260.479896pt;}
.yaa{bottom:262.239895pt;}
.y12c{bottom:263.040000pt;}
.y180{bottom:263.679895pt;}
.y12e{bottom:266.559893pt;}
.y41{bottom:271.039892pt;}
.y166{bottom:271.199892pt;}
.ye1{bottom:273.599891pt;}
.yfa{bottom:273.919890pt;}
.y195{bottom:274.239890pt;}
.y14a{bottom:282.239887pt;}
.ya9{bottom:283.679887pt;}
.y131{bottom:284.959886pt;}
.y87{bottom:286.560000pt;}
.y5d{bottom:288.479885pt;}
.yf9{bottom:295.359882pt;}
.y17f{bottom:295.679882pt;}
.yc5{bottom:295.999882pt;}
.y165{bottom:296.159882pt;}
.y1f{bottom:296.319881pt;}
.y130{bottom:303.359879pt;}
.y35{bottom:305.119878pt;}
.ye0{bottom:305.759878pt;}
.y86{bottom:308.479877pt;}
.y5c{bottom:309.919876pt;}
.yf8{bottom:316.799873pt;}
.y17e{bottom:317.279873pt;}
.y149{bottom:317.759873pt;}
.yc4{bottom:320.959872pt;}
.y12f{bottom:321.759871pt;}
.y85{bottom:326.879869pt;}
.ydf{bottom:327.199869pt;}
.y194{bottom:327.839869pt;}
.y5b{bottom:331.519867pt;}
.y34{bottom:332.479867pt;}
.y128{bottom:336.960000pt;}
.ya8{bottom:337.279865pt;}
.y17d{bottom:338.719865pt;}
.y12a{bottom:340.479864pt;}
.y148{bottom:342.719863pt;}
.y84{bottom:345.279862pt;}
.y164{bottom:345.759862pt;}
.y33{bottom:347.839861pt;}
.yde{bottom:348.639861pt;}
.yf7{bottom:348.959860pt;}
.y193{bottom:349.279860pt;}
.yc3{bottom:356.479857pt;}
.y127{bottom:358.879856pt;}
.y83{bottom:363.679855pt;}
.y5a{bottom:364.639854pt;}
.y147{bottom:367.519853pt;}
.ya7{bottom:369.279852pt;}
.ydd{bottom:370.079852pt;}
.yf6{bottom:370.399852pt;}
.y163{bottom:370.719852pt;}
.y17c{bottom:370.879852pt;}
.y32{bottom:373.919850pt;}
.y126{bottom:377.279849pt;}
.y81{bottom:379.200000pt;}
.yc2{bottom:381.279847pt;}
.y192{bottom:381.439847pt;}
.y1e{bottom:383.199847pt;}
.y31{bottom:389.279844pt;}
.ya6{bottom:390.879844pt;}
.ydc{bottom:391.679843pt;}
.yf5{bottom:391.839843pt;}
.y17b{bottom:392.319843pt;}
.y146{bottom:392.479843pt;}
.y162{bottom:395.519842pt;}
.y12b{bottom:395.679842pt;}
.y59{bottom:396.959841pt;}
.y80{bottom:401.119840pt;}
.y191{bottom:402.879839pt;}
.y30{bottom:404.479838pt;}
.yc1{bottom:406.079838pt;}
.y120{bottom:410.880000pt;}
.ya5{bottom:412.319835pt;}
.ydb{bottom:413.119835pt;}
.yf4{bottom:413.279835pt;}
.y17a{bottom:413.759834pt;}
.y122{bottom:414.399834pt;}
.y58{bottom:418.559833pt;}
.y7f{bottom:419.519832pt;}
.y2f{bottom:419.839832pt;}
.y161{bottom:420.479832pt;}
.y1d{bottom:424.159830pt;}
.y190{bottom:424.479830pt;}
.y145{bottom:427.999829pt;}
.y125{bottom:432.799827pt;}
.yda{bottom:434.559826pt;}
.yf3{bottom:434.879826pt;}
.y2e{bottom:435.199826pt;}
.y7e{bottom:437.919825pt;}
.y1c{bottom:439.999824pt;}
.yc0{bottom:441.759823pt;}
.ya4{bottom:444.479822pt;}
.y160{bottom:445.279822pt;}
.y179{bottom:445.919822pt;}
.y2d{bottom:450.559820pt;}
.y124{bottom:451.199820pt;}
.y144{bottom:452.799819pt;}
.y1b{bottom:455.679818pt;}
.yd9{bottom:455.999818pt;}
.y7d{bottom:456.319817pt;}
.y18f{bottom:456.479817pt;}
.y57{bottom:461.439815pt;}
.y2c{bottom:465.919814pt;}
.ybf{bottom:466.559813pt;}
.yf2{bottom:466.879813pt;}
.y178{bottom:467.359813pt;}
.y123{bottom:469.599812pt;}
.y15f{bottom:470.079812pt;}
.y1a{bottom:470.399812pt;}
.y7b{bottom:471.840000pt;}
.yd8{bottom:477.439809pt;}
.y143{bottom:477.759809pt;}
.y18e{bottom:477.919809pt;}
.y2b{bottom:481.119808pt;}
.y11c{bottom:485.440000pt;}
.ya3{bottom:487.359805pt;}
.yf1{bottom:488.479805pt;}
.y11e{bottom:488.959804pt;}
.ybe{bottom:491.359803pt;}
.y56{bottom:493.599803pt;}
.y7a{bottom:493.759802pt;}
.y15e{bottom:495.039802pt;}
.y2a{bottom:496.479801pt;}
.y177{bottom:499.519800pt;}
.y11b{bottom:507.359797pt;}
.yd7{bottom:509.599796pt;}
.yf0{bottom:509.919796pt;}
.y19{bottom:510.399796pt;}
.y29{bottom:511.839795pt;}
.y79{bottom:512.159795pt;}
.y142{bottom:513.279795pt;}
.ya2{bottom:519.519792pt;}
.y15d{bottom:519.839792pt;}
.y176{bottom:520.959792pt;}
.y55{bottom:525.759790pt;}
.ybd{bottom:526.879789pt;}
.y28{bottom:527.199789pt;}
.y78{bottom:530.559788pt;}
.yd6{bottom:531.039788pt;}
.yef{bottom:531.359787pt;}
.y18d{bottom:531.519787pt;}
.y141{bottom:538.079785pt;}
.ya1{bottom:540.959784pt;}
.y175{bottom:542.399783pt;}
.y27{bottom:542.559783pt;}
.y11f{bottom:544.159782pt;}
.y15c{bottom:544.799782pt;}
.y77{bottom:548.959780pt;}
.y18{bottom:550.399780pt;}
.ybc{bottom:551.839779pt;}
.yd5{bottom:552.479779pt;}
.yee{bottom:552.799779pt;}
.y18c{bottom:553.119779pt;}
.y54{bottom:557.759777pt;}
.y26{bottom:557.919777pt;}
.y115{bottom:560.160000pt;}
.ya0{bottom:562.399775pt;}
.y140{bottom:562.879775pt;}
.y117{bottom:563.679775pt;}
.y76{bottom:567.359773pt;}
.y25{bottom:573.119771pt;}
.yd4{bottom:574.079770pt;}
.yed{bottom:574.239770pt;}
.y174{bottom:574.559770pt;}
.y15b{bottom:580.319768pt;}
.y119{bottom:582.079767pt;}
.y74{bottom:583.040000pt;}
.y18b{bottom:585.119766pt;}
.ybb{bottom:587.359765pt;}
.y24{bottom:588.479765pt;}
.y53{bottom:589.919764pt;}
.y17{bottom:590.399764pt;}
.y9f{bottom:594.559762pt;}
.yd3{bottom:595.519762pt;}
.yec{bottom:595.679762pt;}
.y173{bottom:595.999762pt;}
.y13f{bottom:599.519760pt;}
.y118{bottom:600.479760pt;}
.y23{bottom:603.839758pt;}
.y73{bottom:604.959758pt;}
.y15a{bottom:605.119758pt;}
.y16{bottom:606.399757pt;}
.y18a{bottom:606.719757pt;}
.y9e{bottom:615.999754pt;}
.yd2{bottom:616.959753pt;}
.yeb{bottom:617.119753pt;}
.y11a{bottom:618.879752pt;}
.y22{bottom:619.199752pt;}
.y52{bottom:622.079751pt;}
.yba{bottom:622.879751pt;}
.y72{bottom:623.359751pt;}
.y13e{bottom:626.079750pt;}
.y172{bottom:628.159749pt;}
.y159{bottom:630.079748pt;}
.y21{bottom:634.399746pt;}
.y14{bottom:634.560000pt;}
.y10f{bottom:634.720000pt;}
.y9d{bottom:637.439745pt;}
.y111{bottom:638.239745pt;}
.yea{bottom:638.719745pt;}
.y71{bottom:641.759743pt;}
.yb9{bottom:647.679741pt;}
.yd1{bottom:649.279740pt;}
.y171{bottom:649.599740pt;}
.y158{bottom:654.879738pt;}
.y51{bottom:655.199738pt;}
.y114{bottom:656.639737pt;}
.y70{bottom:660.159736pt;}
.y189{bottom:660.319736pt;}
.y13d{bottom:661.919735pt;}
.y12{bottom:664.959734pt;}
.y13{bottom:665.119734pt;}
.y9c{bottom:669.599732pt;}
.yd0{bottom:670.719732pt;}
.yb8{bottom:672.639731pt;}
.y113{bottom:675.039730pt;}
.y6e{bottom:675.680000pt;}
.y157{bottom:679.679728pt;}
.y170{bottom:681.759727pt;}
.y13c{bottom:686.719725pt;}
.y50{bottom:687.679725pt;}
.ycf{bottom:692.319723pt;}
.y112{bottom:693.439723pt;}
.y6d{bottom:697.599721pt;}
.y9b{bottom:702.719719pt;}
.y16f{bottom:703.199719pt;}
.y156{bottom:704.639718pt;}
.y11{bottom:707.039717pt;}
.yb7{bottom:708.159717pt;}
.y4f{bottom:709.119716pt;}
.y10a{bottom:709.280000pt;}
.y10c{bottom:712.799715pt;}
.yce{bottom:713.759714pt;}
.y188{bottom:713.919714pt;}
.y6c{bottom:715.999714pt;}
.y13b{bottom:722.399711pt;}
.y10{bottom:727.359709pt;}
.y155{bottom:729.439708pt;}
.y4e{bottom:730.559708pt;}
.y109{bottom:731.199708pt;}
.yb6{bottom:732.959707pt;}
.y6b{bottom:734.399706pt;}
.y9a{bottom:735.199706pt;}
.y16e{bottom:735.359706pt;}
.yf{bottom:742.719703pt;}
.y10d{bottom:749.599700pt;}
.y4d{bottom:751.999699pt;}
.y6a{bottom:752.799699pt;}
.y154{bottom:754.399698pt;}
.y99{bottom:756.639697pt;}
.y16d{bottom:756.799697pt;}
.yb5{bottom:757.919697pt;}
.y187{bottom:767.519693pt;}
.y10e{bottom:767.999693pt;}
.ye{bottom:769.759692pt;}
.y69{bottom:771.839691pt;}
.y4c{bottom:773.599691pt;}
.y98{bottom:778.079689pt;}
.y153{bottom:779.199688pt;}
.y13a{bottom:782.719687pt;}
.y105{bottom:783.840000pt;}
.y104{bottom:787.359685pt;}
.y16c{bottom:788.959684pt;}
.yb4{bottom:793.439683pt;}
.y97{bottom:799.519680pt;}
.y152{bottom:803.999678pt;}
.yd{bottom:805.279678pt;}
.y68{bottom:805.439678pt;}
.y103{bottom:805.759678pt;}
.y4b{bottom:806.719677pt;}
.ycd{bottom:810.239676pt;}
.y16b{bottom:810.399676pt;}
.yb3{bottom:818.239673pt;}
.y107{bottom:820.000000pt;}
.ye9{bottom:821.119672pt;}
.y102{bottom:824.159670pt;}
.y151{bottom:828.959668pt;}
.yc{bottom:830.239668pt;}
.y67{bottom:831.519667pt;}
.y96{bottom:831.679667pt;}
.y4a{bottom:839.039664pt;}
.ye8{bottom:842.559663pt;}
.yb2{bottom:843.039663pt;}
.y95{bottom:853.119659pt;}
.y150{bottom:853.759658pt;}
.y101{bottom:858.559657pt;}
.y49{bottom:860.639656pt;}
.y39{bottom:863.359655pt;}
.y66{bottom:863.999654pt;}
.y3e{bottom:872.159651pt;}
.y94{bottom:874.559650pt;}
.yb1{bottom:878.559649pt;}
.y48{bottom:882.079647pt;}
.y100{bottom:885.119646pt;}
.y65{bottom:885.439646pt;}
.y3d{bottom:888.479645pt;}
.y93{bottom:896.159642pt;}
.y47{bottom:903.519639pt;}
.y3c{bottom:904.799638pt;}
.yb0{bottom:914.239634pt;}
.y64{bottom:917.599633pt;}
.y3b{bottom:921.119632pt;}
.y3f{bottom:930.560000pt;}
.y3a{bottom:937.279625pt;}
.y46{bottom:939.039624pt;}
.y4{bottom:960.799616pt;}
.yb{bottom:986.719605pt;}
.y3{bottom:990.239604pt;}
.y2{bottom:1005.599598pt;}
.y1{bottom:1020.959592pt;}
.h3{height:1.120000pt;}
.hc{height:12.480000pt;}
.h18{height:17.920000pt;}
.h1c{height:19.040000pt;}
.h5{height:19.520000pt;}
.h1b{height:20.640000pt;}
.hd{height:29.961551pt;}
.hf{height:32.554674pt;}
.h7{height:32.624987pt;}
.h4{height:32.812487pt;}
.he{height:34.968736pt;}
.h6{height:36.312485pt;}
.h1{height:36.909048pt;}
.h10{height:37.549047pt;}
.h12{height:38.569047pt;}
.h14{height:38.698735pt;}
.h13{height:39.338734pt;}
.h11{height:40.249984pt;}
.ha{height:42.656233pt;}
.h16{height:43.374983pt;}
.h1a{height:43.687483pt;}
.h2{height:43.749982pt;}
.h17{height:44.468732pt;}
.h19{height:46.468731pt;}
.h9{height:50.748730pt;}
.h8{height:52.028417pt;}
.h15{height:54.368416pt;}
.hb{height:78.468719pt;}
.h0{height:1056.000000pt;}
.w2{width:3.520000pt;}
.w5{width:3.840000pt;}
.w15{width:4.000000pt;}
.w29{width:4.160000pt;}
.w4{width:6.240000pt;}
.w2f{width:6.720000pt;}
.w7{width:8.000000pt;}
.wd{width:8.160000pt;}
.w1c{width:8.320000pt;}
.wf{width:8.960000pt;}
.w1{width:9.440000pt;}
.w20{width:11.520000pt;}
.w17{width:26.560000pt;}
.w27{width:31.040000pt;}
.w1e{width:40.800000pt;}
.w16{width:46.240000pt;}
.w10{width:52.800000pt;}
.w24{width:60.000000pt;}
.w2b{width:63.040000pt;}
.w11{width:67.520000pt;}
.w9{width:68.000000pt;}
.w1f{width:69.280000pt;}
.w1d{width:70.240000pt;}
.w21{width:71.520000pt;}
.w26{width:79.520000pt;}
.w14{width:82.720000pt;}
.w25{width:84.000000pt;}
.w19{width:88.800000pt;}
.w28{width:90.880000pt;}
.w23{width:93.440000pt;}
.w18{width:97.280000pt;}
.w13{width:98.240000pt;}
.wc{width:100.000000pt;}
.w3{width:100.960000pt;}
.w12{width:104.800000pt;}
.w2d{width:106.240000pt;}
.wb{width:107.520000pt;}
.wa{width:110.240000pt;}
.w22{width:118.560000pt;}
.w1a{width:122.240000pt;}
.w2a{width:127.040000pt;}
.w1b{width:135.040000pt;}
.w2e{width:136.480000pt;}
.w2c{width:151.520000pt;}
.we{width:181.280000pt;}
.w6{width:214.400000pt;}
.w8{width:222.880000pt;}
.w0{width:816.000000pt;}
.x22{left:-4.160235pt;}
.x0{left:0.000000pt;}
.x13{left:89.439964pt;}
.x11{left:91.679963pt;}
.x10{left:93.919962pt;}
.x1{left:95.999962pt;}
.xd{left:103.680000pt;}
.xa{left:107.839957pt;}
.xf{left:111.200008pt;}
.x49{left:115.040000pt;}
.x3{left:118.399953pt;}
.x56{left:130.240000pt;}
.x14{left:132.639947pt;}
.x12{left:141.599943pt;}
.x44{left:144.320000pt;}
.x45{left:148.319941pt;}
.x36{left:156.319937pt;}
.x8{left:158.079937pt;}
.x4e{left:163.519935pt;}
.x2f{left:174.080000pt;}
.x46{left:175.040000pt;}
.x37{left:183.040000pt;}
.x3b{left:186.240000pt;}
.x3c{left:190.239924pt;}
.x3f{left:192.319923pt;}
.x53{left:194.400000pt;}
.x1b{left:197.759921pt;}
.xb{left:200.799920pt;}
.xc{left:203.359919pt;}
.xe{left:204.640000pt;}
.x4f{left:210.240000pt;}
.x4a{left:213.280000pt;}
.x15{left:216.159972pt;}
.x16{left:217.119913pt;}
.x40{left:219.040000pt;}
.x24{left:226.079905pt;}
.x17{left:236.319905pt;}
.x18{left:253.119846pt;}
.x30{left:255.039898pt;}
.x23{left:258.879896pt;}
.x1a{left:267.839893pt;}
.x2{left:268.959892pt;}
.x1e{left:283.679855pt;}
.x19{left:301.119880pt;}
.x9{left:317.120251pt;}
.x7{left:321.439871pt;}
.x38{left:322.560000pt;}
.x4b{left:326.560000pt;}
.x31{left:334.080000pt;}
.x50{left:339.040000pt;}
.x1d{left:359.519856pt;}
.x1f{left:369.439852pt;}
.x41{left:377.280000pt;}
.x4{left:383.679847pt;}
.x1c{left:387.519815pt;}
.x57{left:406.560000pt;}
.x32{left:424.959830pt;}
.x25{left:440.480000pt;}
.x3d{left:451.520000pt;}
.x20{left:455.519818pt;}
.x2c{left:468.319813pt;}
.x26{left:481.119808pt;}
.x47{left:494.240000pt;}
.x2d{left:498.559801pt;}
.x33{left:501.440000pt;}
.x51{left:504.480000pt;}
.x39{left:529.760000pt;}
.x58{left:531.200000pt;}
.x4c{left:543.520000pt;}
.x28{left:549.120000pt;}
.x54{left:552.000000pt;}
.x42{left:560.000000pt;}
.x34{left:575.999770pt;}
.x2a{left:581.120000pt;}
.x29{left:588.640000pt;}
.x21{left:592.000000pt;}
.x2e{left:598.239761pt;}
.x52{left:607.040000pt;}
.x6{left:614.399754pt;}
.x55{left:639.040000pt;}
.x43{left:646.240000pt;}
.x35{left:656.000000pt;}
.x2b{left:662.400000pt;}
.x4d{left:669.440000pt;}
.x3e{left:673.280000pt;}
.x3a{left:674.240000pt;}
.x48{left:680.800000pt;}
.x27{left:704.000000pt;}
.x59{left:712.480000pt;}
.x5{left:716.160000pt;}
}




    .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; }
  