
    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_a9c4d196627922e75d39a9ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_b202453ab82f6f53e32425a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_9a82be41a2bf86b6c5aa0bfa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_d29aa210db8ed0d95378f2eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_88f34a0dda9499f3a3cc3e49.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937500;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_ecfb1809404b5f5319243c44.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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_172df3ab91984abc8231d476.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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);}
.v1{vertical-align:-88.200000px;}
.v5{vertical-align:-81.000000px;}
.v3{vertical-align:-74.880000px;}
.v6{vertical-align:-64.440000px;}
.v2{vertical-align:-60.840000px;}
.v4{vertical-align:-55.437912px;}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-0.268272px;}
.ls53{letter-spacing:-0.220500px;}
.ls38{letter-spacing:-0.172800px;}
.ls37{letter-spacing:-0.135000px;}
.ls2d{letter-spacing:-0.124200px;}
.ls51{letter-spacing:-0.121716px;}
.ls26{letter-spacing:-0.104328px;}
.ls29{letter-spacing:-0.081000px;}
.ls4e{letter-spacing:-0.079488px;}
.ls35{letter-spacing:-0.069552px;}
.ls55{letter-spacing:-0.067500px;}
.ls2e{letter-spacing:-0.064584px;}
.ls52{letter-spacing:-0.054000px;}
.ls3a{letter-spacing:-0.050400px;}
.ls27{letter-spacing:-0.049680px;}
.ls4f{letter-spacing:-0.049500px;}
.ls2c{letter-spacing:-0.044712px;}
.ls39{letter-spacing:-0.043200px;}
.ls31{letter-spacing:-0.028800px;}
.ls34{letter-spacing:-0.021600px;}
.ls33{letter-spacing:-0.014400px;}
.ls32{letter-spacing:-0.007200px;}
.ls54{letter-spacing:-0.005796px;}
.ls23{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.007200px;}
.ls1a{letter-spacing:0.014400px;}
.ls4d{letter-spacing:0.017388px;}
.lsa{letter-spacing:0.019872px;}
.ls19{letter-spacing:0.021600px;}
.ls6{letter-spacing:0.023904px;}
.ls3e{letter-spacing:0.028800px;}
.lsd{letter-spacing:0.029808px;}
.ls7{letter-spacing:0.037800px;}
.ls3b{letter-spacing:0.039744px;}
.ls49{letter-spacing:0.040572px;}
.ls40{letter-spacing:0.043200px;}
.ls3f{letter-spacing:0.050400px;}
.ls28{letter-spacing:0.054000px;}
.ls9{letter-spacing:0.054648px;}
.ls25{letter-spacing:0.059616px;}
.ls8{letter-spacing:0.064584px;}
.ls2{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.065736px;}
.lsb{letter-spacing:0.069552px;}
.ls3d{letter-spacing:0.072000px;}
.lse{letter-spacing:0.074520px;}
.ls11{letter-spacing:0.084456px;}
.ls36{letter-spacing:0.089424px;}
.ls3c{letter-spacing:0.094392px;}
.ls1d{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.114912px;}
.ls47{letter-spacing:0.121716px;}
.ls46{letter-spacing:0.127512px;}
.ls1{letter-spacing:0.129600px;}
.ls1f{letter-spacing:0.130500px;}
.ls1e{letter-spacing:0.132768px;}
.ls4c{letter-spacing:0.133308px;}
.ls4{letter-spacing:0.137448px;}
.ls48{letter-spacing:0.139104px;}
.ls42{letter-spacing:0.144900px;}
.ls41{letter-spacing:0.150696px;}
.ls43{letter-spacing:0.156492px;}
.ls16{letter-spacing:0.161352px;}
.ls13{letter-spacing:0.162000px;}
.ls44{letter-spacing:0.162288px;}
.ls1b{letter-spacing:0.166500px;}
.ls2a{letter-spacing:0.171000px;}
.ls14{letter-spacing:0.175500px;}
.ls3{letter-spacing:0.178848px;}
.ls4b{letter-spacing:0.179676px;}
.ls20{letter-spacing:0.180000px;}
.ls45{letter-spacing:0.185472px;}
.ls4a{letter-spacing:0.191268px;}
.lsc{letter-spacing:0.198720px;}
.ls1c{letter-spacing:0.207000px;}
.ls2f{letter-spacing:0.238464px;}
.ls50{letter-spacing:0.260820px;}
.ls2b{letter-spacing:0.319500px;}
.ls10{letter-spacing:0.360000px;}
.ls22{letter-spacing:29.880000px;}
.ls30{letter-spacing:45.000000px;}
.ls15{letter-spacing:58.190184px;}
.lsf{letter-spacing:100.800000px;}
.ls0{letter-spacing:146.880000px;}
.ls12{letter-spacing:148.320000px;}
.ls21{letter-spacing:163.080000px;}
.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;}
}
.ws8{word-spacing:-58.680000px;}
.ws9{word-spacing:-58.320000px;}
.ws1{word-spacing:-20.314800px;}
.ws0{word-spacing:-20.250000px;}
.wse{word-spacing:-17.992800px;}
.ws2{word-spacing:-16.637184px;}
.ws42{word-spacing:-16.373700px;}
.ws45{word-spacing:-16.107084px;}
.ws4{word-spacing:-13.865688px;}
.ws40{word-spacing:-13.850784px;}
.ws5{word-spacing:-13.830912px;}
.wsb{word-spacing:-13.766328px;}
.wsc{word-spacing:-13.746456px;}
.ws3{word-spacing:-13.542768px;}
.wsd{word-spacing:-12.717000px;}
.ws7{word-spacing:-12.681000px;}
.ws41{word-spacing:-12.460500px;}
.ws43{word-spacing:-12.456000px;}
.ws46{word-spacing:-12.442500px;}
.ws6{word-spacing:-12.429000px;}
.ws44{word-spacing:-12.289500px;}
.ws5c{word-spacing:-0.399924px;}
.wsa{word-spacing:-0.364500px;}
.ws17{word-spacing:-0.322920px;}
.ws1c{word-spacing:-0.261000px;}
.ws10{word-spacing:-0.218700px;}
.ws1e{word-spacing:-0.208656px;}
.ws24{word-spacing:-0.203184px;}
.ws3e{word-spacing:-0.199800px;}
.ws1a{word-spacing:-0.198720px;}
.ws13{word-spacing:-0.193752px;}
.ws22{word-spacing:-0.188784px;}
.ws15{word-spacing:-0.183816px;}
.ws16{word-spacing:-0.178848px;}
.ws23{word-spacing:-0.144072px;}
.ws5f{word-spacing:-0.092736px;}
.ws59{word-spacing:-0.086940px;}
.ws3d{word-spacing:-0.085500px;}
.ws60{word-spacing:-0.081144px;}
.ws3c{word-spacing:-0.081000px;}
.ws21{word-spacing:-0.076500px;}
.ws3b{word-spacing:-0.070200px;}
.ws36{word-spacing:-0.067500px;}
.ws57{word-spacing:-0.063756px;}
.ws20{word-spacing:-0.063000px;}
.ws56{word-spacing:-0.057960px;}
.ws38{word-spacing:-0.054648px;}
.ws54{word-spacing:-0.052164px;}
.ws4d{word-spacing:-0.050400px;}
.ws55{word-spacing:-0.046368px;}
.ws47{word-spacing:-0.044712px;}
.ws50{word-spacing:-0.043200px;}
.ws11{word-spacing:-0.041832px;}
.ws5e{word-spacing:-0.040572px;}
.ws61{word-spacing:-0.034776px;}
.ws39{word-spacing:-0.031500px;}
.ws5a{word-spacing:-0.028980px;}
.ws52{word-spacing:-0.028800px;}
.ws5b{word-spacing:-0.023184px;}
.ws2f{word-spacing:-0.021600px;}
.ws2c{word-spacing:-0.014400px;}
.ws26{word-spacing:-0.009576px;}
.ws28{word-spacing:-0.007200px;}
.wsf{word-spacing:0.000000px;}
.ws29{word-spacing:0.007200px;}
.ws37{word-spacing:0.010800px;}
.ws2a{word-spacing:0.014400px;}
.ws4a{word-spacing:0.021600px;}
.ws2d{word-spacing:0.028800px;}
.ws2e{word-spacing:0.036000px;}
.ws33{word-spacing:0.043200px;}
.ws1d{word-spacing:0.045000px;}
.ws49{word-spacing:0.050400px;}
.ws4b{word-spacing:0.057600px;}
.ws5d{word-spacing:0.057960px;}
.ws4c{word-spacing:0.072000px;}
.ws12{word-spacing:0.081000px;}
.ws62{word-spacing:0.081144px;}
.ws27{word-spacing:0.086184px;}
.ws34{word-spacing:0.093600px;}
.ws31{word-spacing:0.100800px;}
.ws32{word-spacing:0.108000px;}
.ws4f{word-spacing:0.115200px;}
.ws1f{word-spacing:0.118800px;}
.ws4e{word-spacing:0.129600px;}
.ws30{word-spacing:0.136800px;}
.ws48{word-spacing:0.144072px;}
.ws35{word-spacing:0.163944px;}
.ws53{word-spacing:0.165600px;}
.ws51{word-spacing:0.172800px;}
.ws14{word-spacing:0.173880px;}
.ws2b{word-spacing:0.194400px;}
.ws19{word-spacing:0.208656px;}
.ws58{word-spacing:0.220248px;}
.ws3f{word-spacing:0.230400px;}
.ws3a{word-spacing:0.234000px;}
.ws1b{word-spacing:0.288144px;}
.ws18{word-spacing:0.342792px;}
.ws25{word-spacing:0.388800px;}
._8{margin-left:-2920.320000px;}
._4{margin-left:-58.680000px;}
._5{margin-left:-57.600000px;}
._6{margin-left:-45.000000px;}
._1{margin-left:-1.219500px;}
._0{width:1.066152px;}
._2{width:18.901008px;}
._7{width:81.076752px;}
._3{width:90.657000px;}
.fc11{color:rgb(157,25,97);}
.fc10{color:rgb(0,0,255);}
.fcf{color:transparent;}
.fce{color:rgb(0,0,128);}
.fcd{color:rgb(0,119,0);}
.fc0{color:rgb(0,0,0);}
.fc6{color:rgb(51,51,51);}
.fc2{color:rgb(51,101,204);}
.fc1{color:rgb(107,104,103);}
.fc9{color:rgb(112,111,100);}
.fc5{color:rgb(128,0,128);}
.fc3{color:rgb(154,0,0);}
.fc7{color:rgb(255,255,255);}
.fc4{color:rgb(108,104,101);}
.fcb{color:rgb(53,0,106);}
.fc8{color:rgb(241,239,226);}
.fca{color:rgb(172,168,154);}
.fcc{color:rgb(255,0,0);}
.fs5{font-size:45.000000px;}
.fs2{font-size:49.680000px;}
.fs4{font-size:54.000000px;}
.fs9{font-size:57.960000px;}
.fs7{font-size:58.320000px;}
.fs6{font-size:58.680000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:81.000000px;}
.fs8{font-size:95.760000px;}
.y83{bottom:-35.879550px;}
.y0{bottom:0.000000px;}
.y1b{bottom:2.610450px;}
.y21{bottom:2.700450px;}
.yca{bottom:3.150450px;}
.y3b{bottom:3.870450px;}
.y42{bottom:4.050450px;}
.yb6{bottom:4.050600px;}
.y6b{bottom:41.250000px;}
.y6c{bottom:45.120450px;}
.y38{bottom:48.630450px;}
.y6a{bottom:65.100450px;}
.y37{bottom:67.351122px;}
.y36{bottom:81.210600px;}
.y69{bottom:84.990450px;}
.y35{bottom:96.420450px;}
.y68{bottom:104.970450px;}
.y34{bottom:115.050306px;}
.y67{bottom:124.950450px;}
.yc6{bottom:128.460450px;}
.y33{bottom:142.859970px;}
.yc4{bottom:144.300000px;}
.y66{bottom:144.840450px;}
.yc5{bottom:148.350450px;}
.y32{bottom:156.540450px;}
.y65{bottom:164.820450px;}
.yc3{bottom:168.330450px;}
.y31{bottom:169.230450px;}
.y30{bottom:183.360450px;}
.y64{bottom:184.710450px;}
.yc2{bottom:188.310450px;}
.y2f{bottom:202.260450px;}
.yc0{bottom:204.150000px;}
.y63{bottom:204.690450px;}
.yc1{bottom:208.200450px;}
.y2e{bottom:222.870450px;}
.y62{bottom:224.580450px;}
.ybf{bottom:228.180600px;}
.y61{bottom:244.560450px;}
.y2b{bottom:247.890450px;}
.ybe{bottom:248.070600px;}
.y2d{bottom:249.150450px;}
.y60{bottom:264.450450px;}
.y2c{bottom:267.330450px;}
.ybd{bottom:268.050600px;}
.y2a{bottom:268.500450px;}
.y5f{bottom:284.430450px;}
.ybc{bottom:287.940600px;}
.y5e{bottom:304.410450px;}
.ybb{bottom:307.920600px;}
.y29{bottom:310.800450px;}
.y5d{bottom:324.300450px;}
.y28{bottom:325.920450px;}
.yba{bottom:327.810600px;}
.y5c{bottom:344.280450px;}
.y27{bottom:345.900450px;}
.yb9{bottom:347.790600px;}
.y5b{bottom:364.170450px;}
.yb8{bottom:367.770600px;}
.y26{bottom:379.560450px;}
.yb5{bottom:383.610000px;}
.y5a{bottom:384.150450px;}
.yb7{bottom:387.660600px;}
.y25{bottom:398.280972px;}
.yb3{bottom:403.590000px;}
.y59{bottom:404.040450px;}
.yb4{bottom:407.640450px;}
.y24{bottom:412.140450px;}
.y58{bottom:424.020450px;}
.y23{bottom:427.350450px;}
.yb2{bottom:427.530450px;}
.y81{bottom:442.110600px;}
.y20{bottom:443.370000px;}
.y57{bottom:443.910450px;}
.y22{bottom:446.070450px;}
.yb1{bottom:447.510450px;}
.yc7{bottom:450.480450px;}
.y1f{bottom:459.930600px;}
.y56{bottom:463.890450px;}
.yb0{bottom:467.400450px;}
.y1e{bottom:475.140450px;}
.y80{bottom:477.120450px;}
.yae{bottom:483.330000px;}
.y55{bottom:483.870450px;}
.ye9{bottom:484.500600px;}
.yaf{bottom:487.380450px;}
.y1d{bottom:493.770450px;}
.ye8{bottom:499.172016px;}
.y7f{bottom:499.350450px;}
.y54{bottom:503.760450px;}
.yad{bottom:507.270450px;}
.y1c{bottom:508.980450px;}
.ye7{bottom:517.171494px;}
.y53{bottom:523.740450px;}
.y1a{bottom:525.000000px;}
.yac{bottom:527.250450px;}
.y19{bottom:527.610450px;}
.ye6{bottom:535.170972px;}
.y7e{bottom:539.400450px;}
.y18{bottom:541.560450px;}
.y52{bottom:543.630450px;}
.yab{bottom:547.230450px;}
.ye5{bottom:553.170450px;}
.y17{bottom:555.420306px;}
.y50{bottom:559.560000px;}
.ya9{bottom:563.070000px;}
.y51{bottom:563.610450px;}
.yaa{bottom:567.120450px;}
.y16{bottom:569.370450px;}
.ye4{bottom:570.630450px;}
.y4f{bottom:583.500450px;}
.y15{bottom:584.490450px;}
.ya8{bottom:587.100450px;}
.y4d{bottom:599.430000px;}
.y14{bottom:603.210450px;}
.y4e{bottom:603.480450px;}
.ya7{bottom:606.990450px;}
.ye3{bottom:615.630450px;}
.y13{bottom:617.160450px;}
.ya6{bottom:622.920000px;}
.y4c{bottom:623.370450px;}
.y8a{bottom:626.970450px;}
.ye1{bottom:627.060000px;}
.ye2{bottom:630.210450px;}
.y12{bottom:632.280450px;}
.y4b{bottom:643.350450px;}
.ya5{bottom:646.860450px;}
.ye0{bottom:648.210972px;}
.y11{bottom:651.000972px;}
.y7d{bottom:657.210450px;}
.yde{bottom:663.060000px;}
.y4a{bottom:663.330450px;}
.y10{bottom:664.860450px;}
.ydf{bottom:666.210450px;}
.ya4{bottom:666.840450px;}
.y48{bottom:679.170000px;}
.yf{bottom:680.070450px;}
.y7c{bottom:681.600450px;}
.y49{bottom:683.220450px;}
.ydd{bottom:683.670450px;}
.ya3{bottom:686.730450px;}
.ydc{bottom:700.500450px;}
.y47{bottom:703.200450px;}
.y7b{bottom:704.550450px;}
.ya2{bottom:706.710450px;}
.y7a{bottom:717.240450px;}
.y46{bottom:723.090450px;}
.ya1{bottom:726.690450px;}
.y79{bottom:729.840450px;}
.y78{bottom:742.800450px;}
.y45{bottom:743.070450px;}
.ya0{bottom:746.580450px;}
.ydb{bottom:754.500450px;}
.y77{bottom:761.430450px;}
.y9e{bottom:762.510000px;}
.y44{bottom:762.960450px;}
.y9f{bottom:766.560450px;}
.yda{bottom:769.171494px;}
.y41{bottom:778.890000px;}
.y76{bottom:782.040600px;}
.y43{bottom:782.940450px;}
.y9d{bottom:786.450450px;}
.yd9{bottom:787.170972px;}
.y40{bottom:802.830450px;}
.y75{bottom:804.900450px;}
.yd8{bottom:805.170450px;}
.y9c{bottom:806.430450px;}
.y74{bottom:817.590450px;}
.yd7{bottom:822.630450px;}
.y3f{bottom:822.810450px;}
.y9b{bottom:826.320450px;}
.y73{bottom:830.460306px;}
.y72{bottom:844.410450px;}
.y9a{bottom:846.300450px;}
.y71{bottom:863.040600px;}
.y3e{bottom:865.290468px;}
.y99{bottom:866.190450px;}
.yd6{bottom:867.630450px;}
.yd4{bottom:879.060000px;}
.yd5{bottom:882.210450px;}
.y70{bottom:883.650450px;}
.y98{bottom:886.170450px;}
.y3d{bottom:892.110450px;}
.ye{bottom:897.960450px;}
.yd3{bottom:900.211494px;}
.y97{bottom:906.150450px;}
.y6f{bottom:906.600450px;}
.yd{bottom:916.680450px;}
.yd2{bottom:918.210972px;}
.y6e{bottom:919.200450px;}
.y96{bottom:926.040450px;}
.y3c{bottom:929.190450px;}
.yc{bottom:931.800450px;}
.y6d{bottom:932.070450px;}
.yd1{bottom:936.210450px;}
.y3a{bottom:945.300000px;}
.y95{bottom:946.020450px;}
.y39{bottom:949.170450px;}
.yb{bottom:950.700450px;}
.yd0{bottom:953.670450px;}
.y94{bottom:965.910450px;}
.ycf{bottom:970.500450px;}
.ya{bottom:971.310450px;}
.y93{bottom:985.890450px;}
.y9{bottom:990.569910px;}
.y1{bottom:1004.700450px;}
.y92{bottom:1005.780450px;}
.y8{bottom:1007.310180px;}
.yce{bottom:1015.500450px;}
.y7{bottom:1024.050450px;}
.y91{bottom:1025.760450px;}
.ycd{bottom:1030.171494px;}
.y90{bottom:1045.650450px;}
.y2{bottom:1047.270450px;}
.y89{bottom:1047.630450px;}
.ycc{bottom:1048.170972px;}
.y8e{bottom:1061.580000px;}
.yc9{bottom:1063.020000px;}
.y6{bottom:1064.910450px;}
.y8f{bottom:1065.630450px;}
.ycb{bottom:1066.170450px;}
.y88{bottom:1066.349730px;}
.y87{bottom:1080.210450px;}
.yc8{bottom:1083.540600px;}
.y3{bottom:1084.530450px;}
.y8d{bottom:1085.610450px;}
.y5{bottom:1085.700162px;}
.y86{bottom:1095.420450px;}
.y8c{bottom:1105.500450px;}
.y85{bottom:1114.050306px;}
.y4{bottom:1123.230450px;}
.y8b{bottom:1125.480450px;}
.y84{bottom:1128.000450px;}
.y82{bottom:1206.480450px;}
.h14{height:-19.769490px;}
.h9{height:14.130000px;}
.ha{height:14.220000px;}
.h17{height:16.110000px;}
.h10{height:19.890000px;}
.h13{height:20.070000px;}
.h12{height:20.250000px;}
.hd{height:46.933594px;}
.hc{height:48.015000px;}
.h3{height:50.068125px;}
.h8{height:51.814687px;}
.hf{height:51.815264px;}
.he{height:51.815287px;}
.h15{height:51.817567px;}
.hb{height:55.035000px;}
.h7{height:56.320312px;}
.h16{height:60.450469px;}
.h6{height:62.327813px;}
.h5{height:63.763920px;}
.h1{height:70.664062px;}
.h2{height:75.093750px;}
.h4{height:81.632812px;}
.h11{height:99.874688px;}
.h0{height:1195.500000px;}
.w1{width:-68.580000px;}
.w2{width:-39.510000px;}
.w12{width:-14.250000px;}
.w3{width:46.980000px;}
.wf{width:202.950000px;}
.w9{width:226.170000px;}
.w7{width:281.880000px;}
.wb{width:286.470000px;}
.wc{width:306.450000px;}
.wd{width:314.460000px;}
.w11{width:319.410000px;}
.w4{width:337.320000px;}
.w6{width:351.900000px;}
.w8{width:358.470000px;}
.wa{width:360.450000px;}
.we{width:366.930000px;}
.w10{width:367.920000px;}
.w5{width:376.920000px;}
.w0{width:393.000000px;}
.xb{left:-144.000000px;}
.x10{left:-140.580000px;}
.xa{left:-139.500000px;}
.x13{left:-125.370000px;}
.x11{left:-119.610000px;}
.xc{left:-106.650000px;}
.x14{left:-102.510000px;}
.xd{left:-99.090000px;}
.xe{left:-72.720000px;}
.xf{left:-68.580000px;}
.x1{left:-39.960000px;}
.x1e{left:-37.080000px;}
.x12{left:-35.730000px;}
.x1f{left:-27.990000px;}
.x2{left:-2.250000px;}
.x0{left:0.000000px;}
.x15{left:11.250000px;}
.x19{left:20.250000px;}
.x24{left:24.210000px;}
.x17{left:28.980000px;}
.x20{left:106.470000px;}
.x21{left:115.470000px;}
.x3{left:175.680000px;}
.x22{left:280.440000px;}
.x16{left:287.640000px;}
.x23{left:297.720000px;}
.x18{left:325.620000px;}
.x1b{left:401.670000px;}
.x4{left:403.830000px;}
.x25{left:407.250000px;}
.x1a{left:408.420000px;}
.x7{left:409.680000px;}
.x27{left:415.350000px;}
.x26{left:416.880000px;}
.x8{left:432.450054px;}
.x6{left:450.990000px;}
.x9{left:459.089568px;}
.x5{left:491.579586px;}
.x1d{left:497.610000px;}
.x1c{left:500.130000px;}
@media print{
.v1{vertical-align:-78.400000pt;}
.v5{vertical-align:-72.000000pt;}
.v3{vertical-align:-66.560000pt;}
.v6{vertical-align:-57.280000pt;}
.v2{vertical-align:-54.080000pt;}
.v4{vertical-align:-49.278144pt;}
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-0.238464pt;}
.ls53{letter-spacing:-0.196000pt;}
.ls38{letter-spacing:-0.153600pt;}
.ls37{letter-spacing:-0.120000pt;}
.ls2d{letter-spacing:-0.110400pt;}
.ls51{letter-spacing:-0.108192pt;}
.ls26{letter-spacing:-0.092736pt;}
.ls29{letter-spacing:-0.072000pt;}
.ls4e{letter-spacing:-0.070656pt;}
.ls35{letter-spacing:-0.061824pt;}
.ls55{letter-spacing:-0.060000pt;}
.ls2e{letter-spacing:-0.057408pt;}
.ls52{letter-spacing:-0.048000pt;}
.ls3a{letter-spacing:-0.044800pt;}
.ls27{letter-spacing:-0.044160pt;}
.ls4f{letter-spacing:-0.044000pt;}
.ls2c{letter-spacing:-0.039744pt;}
.ls39{letter-spacing:-0.038400pt;}
.ls31{letter-spacing:-0.025600pt;}
.ls34{letter-spacing:-0.019200pt;}
.ls33{letter-spacing:-0.012800pt;}
.ls32{letter-spacing:-0.006400pt;}
.ls54{letter-spacing:-0.005152pt;}
.ls23{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.006400pt;}
.ls1a{letter-spacing:0.012800pt;}
.ls4d{letter-spacing:0.015456pt;}
.lsa{letter-spacing:0.017664pt;}
.ls19{letter-spacing:0.019200pt;}
.ls6{letter-spacing:0.021248pt;}
.ls3e{letter-spacing:0.025600pt;}
.lsd{letter-spacing:0.026496pt;}
.ls7{letter-spacing:0.033600pt;}
.ls3b{letter-spacing:0.035328pt;}
.ls49{letter-spacing:0.036064pt;}
.ls40{letter-spacing:0.038400pt;}
.ls3f{letter-spacing:0.044800pt;}
.ls28{letter-spacing:0.048000pt;}
.ls9{letter-spacing:0.048576pt;}
.ls25{letter-spacing:0.052992pt;}
.ls8{letter-spacing:0.057408pt;}
.ls2{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.058432pt;}
.lsb{letter-spacing:0.061824pt;}
.ls3d{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.066240pt;}
.ls11{letter-spacing:0.075072pt;}
.ls36{letter-spacing:0.079488pt;}
.ls3c{letter-spacing:0.083904pt;}
.ls1d{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.102144pt;}
.ls47{letter-spacing:0.108192pt;}
.ls46{letter-spacing:0.113344pt;}
.ls1{letter-spacing:0.115200pt;}
.ls1f{letter-spacing:0.116000pt;}
.ls1e{letter-spacing:0.118016pt;}
.ls4c{letter-spacing:0.118496pt;}
.ls4{letter-spacing:0.122176pt;}
.ls48{letter-spacing:0.123648pt;}
.ls42{letter-spacing:0.128800pt;}
.ls41{letter-spacing:0.133952pt;}
.ls43{letter-spacing:0.139104pt;}
.ls16{letter-spacing:0.143424pt;}
.ls13{letter-spacing:0.144000pt;}
.ls44{letter-spacing:0.144256pt;}
.ls1b{letter-spacing:0.148000pt;}
.ls2a{letter-spacing:0.152000pt;}
.ls14{letter-spacing:0.156000pt;}
.ls3{letter-spacing:0.158976pt;}
.ls4b{letter-spacing:0.159712pt;}
.ls20{letter-spacing:0.160000pt;}
.ls45{letter-spacing:0.164864pt;}
.ls4a{letter-spacing:0.170016pt;}
.lsc{letter-spacing:0.176640pt;}
.ls1c{letter-spacing:0.184000pt;}
.ls2f{letter-spacing:0.211968pt;}
.ls50{letter-spacing:0.231840pt;}
.ls2b{letter-spacing:0.284000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls22{letter-spacing:26.560000pt;}
.ls30{letter-spacing:40.000000pt;}
.ls15{letter-spacing:51.724608pt;}
.lsf{letter-spacing:89.600000pt;}
.ls0{letter-spacing:130.560000pt;}
.ls12{letter-spacing:131.840000pt;}
.ls21{letter-spacing:144.960000pt;}
.ws8{word-spacing:-52.160000pt;}
.ws9{word-spacing:-51.840000pt;}
.ws1{word-spacing:-18.057600pt;}
.ws0{word-spacing:-18.000000pt;}
.wse{word-spacing:-15.993600pt;}
.ws2{word-spacing:-14.788608pt;}
.ws42{word-spacing:-14.554400pt;}
.ws45{word-spacing:-14.317408pt;}
.ws4{word-spacing:-12.325056pt;}
.ws40{word-spacing:-12.311808pt;}
.ws5{word-spacing:-12.294144pt;}
.wsb{word-spacing:-12.236736pt;}
.wsc{word-spacing:-12.219072pt;}
.ws3{word-spacing:-12.038016pt;}
.wsd{word-spacing:-11.304000pt;}
.ws7{word-spacing:-11.272000pt;}
.ws41{word-spacing:-11.076000pt;}
.ws43{word-spacing:-11.072000pt;}
.ws46{word-spacing:-11.060000pt;}
.ws6{word-spacing:-11.048000pt;}
.ws44{word-spacing:-10.924000pt;}
.ws5c{word-spacing:-0.355488pt;}
.wsa{word-spacing:-0.324000pt;}
.ws17{word-spacing:-0.287040pt;}
.ws1c{word-spacing:-0.232000pt;}
.ws10{word-spacing:-0.194400pt;}
.ws1e{word-spacing:-0.185472pt;}
.ws24{word-spacing:-0.180608pt;}
.ws3e{word-spacing:-0.177600pt;}
.ws1a{word-spacing:-0.176640pt;}
.ws13{word-spacing:-0.172224pt;}
.ws22{word-spacing:-0.167808pt;}
.ws15{word-spacing:-0.163392pt;}
.ws16{word-spacing:-0.158976pt;}
.ws23{word-spacing:-0.128064pt;}
.ws5f{word-spacing:-0.082432pt;}
.ws59{word-spacing:-0.077280pt;}
.ws3d{word-spacing:-0.076000pt;}
.ws60{word-spacing:-0.072128pt;}
.ws3c{word-spacing:-0.072000pt;}
.ws21{word-spacing:-0.068000pt;}
.ws3b{word-spacing:-0.062400pt;}
.ws36{word-spacing:-0.060000pt;}
.ws57{word-spacing:-0.056672pt;}
.ws20{word-spacing:-0.056000pt;}
.ws56{word-spacing:-0.051520pt;}
.ws38{word-spacing:-0.048576pt;}
.ws54{word-spacing:-0.046368pt;}
.ws4d{word-spacing:-0.044800pt;}
.ws55{word-spacing:-0.041216pt;}
.ws47{word-spacing:-0.039744pt;}
.ws50{word-spacing:-0.038400pt;}
.ws11{word-spacing:-0.037184pt;}
.ws5e{word-spacing:-0.036064pt;}
.ws61{word-spacing:-0.030912pt;}
.ws39{word-spacing:-0.028000pt;}
.ws5a{word-spacing:-0.025760pt;}
.ws52{word-spacing:-0.025600pt;}
.ws5b{word-spacing:-0.020608pt;}
.ws2f{word-spacing:-0.019200pt;}
.ws2c{word-spacing:-0.012800pt;}
.ws26{word-spacing:-0.008512pt;}
.ws28{word-spacing:-0.006400pt;}
.wsf{word-spacing:0.000000pt;}
.ws29{word-spacing:0.006400pt;}
.ws37{word-spacing:0.009600pt;}
.ws2a{word-spacing:0.012800pt;}
.ws4a{word-spacing:0.019200pt;}
.ws2d{word-spacing:0.025600pt;}
.ws2e{word-spacing:0.032000pt;}
.ws33{word-spacing:0.038400pt;}
.ws1d{word-spacing:0.040000pt;}
.ws49{word-spacing:0.044800pt;}
.ws4b{word-spacing:0.051200pt;}
.ws5d{word-spacing:0.051520pt;}
.ws4c{word-spacing:0.064000pt;}
.ws12{word-spacing:0.072000pt;}
.ws62{word-spacing:0.072128pt;}
.ws27{word-spacing:0.076608pt;}
.ws34{word-spacing:0.083200pt;}
.ws31{word-spacing:0.089600pt;}
.ws32{word-spacing:0.096000pt;}
.ws4f{word-spacing:0.102400pt;}
.ws1f{word-spacing:0.105600pt;}
.ws4e{word-spacing:0.115200pt;}
.ws30{word-spacing:0.121600pt;}
.ws48{word-spacing:0.128064pt;}
.ws35{word-spacing:0.145728pt;}
.ws53{word-spacing:0.147200pt;}
.ws51{word-spacing:0.153600pt;}
.ws14{word-spacing:0.154560pt;}
.ws2b{word-spacing:0.172800pt;}
.ws19{word-spacing:0.185472pt;}
.ws58{word-spacing:0.195776pt;}
.ws3f{word-spacing:0.204800pt;}
.ws3a{word-spacing:0.208000pt;}
.ws1b{word-spacing:0.256128pt;}
.ws18{word-spacing:0.304704pt;}
.ws25{word-spacing:0.345600pt;}
._8{margin-left:-2595.840000pt;}
._4{margin-left:-52.160000pt;}
._5{margin-left:-51.200000pt;}
._6{margin-left:-40.000000pt;}
._1{margin-left:-1.084000pt;}
._0{width:0.947691pt;}
._2{width:16.800896pt;}
._7{width:72.068224pt;}
._3{width:80.584000pt;}
.fs5{font-size:40.000000pt;}
.fs2{font-size:44.160000pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:51.520000pt;}
.fs7{font-size:51.840000pt;}
.fs6{font-size:52.160000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:72.000000pt;}
.fs8{font-size:85.120000pt;}
.y83{bottom:-31.892933pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:2.320400pt;}
.y21{bottom:2.400400pt;}
.yca{bottom:2.800400pt;}
.y3b{bottom:3.440400pt;}
.y42{bottom:3.600400pt;}
.yb6{bottom:3.600533pt;}
.y6b{bottom:36.666667pt;}
.y6c{bottom:40.107067pt;}
.y38{bottom:43.227067pt;}
.y6a{bottom:57.867067pt;}
.y37{bottom:59.867664pt;}
.y36{bottom:72.187200pt;}
.y69{bottom:75.547067pt;}
.y35{bottom:85.707067pt;}
.y68{bottom:93.307067pt;}
.y34{bottom:102.266939pt;}
.y67{bottom:111.067067pt;}
.yc6{bottom:114.187067pt;}
.y33{bottom:126.986640pt;}
.yc4{bottom:128.266667pt;}
.y66{bottom:128.747067pt;}
.yc5{bottom:131.867067pt;}
.y32{bottom:139.147067pt;}
.y65{bottom:146.507067pt;}
.yc3{bottom:149.627067pt;}
.y31{bottom:150.427067pt;}
.y30{bottom:162.987067pt;}
.y64{bottom:164.187067pt;}
.yc2{bottom:167.387067pt;}
.y2f{bottom:179.787067pt;}
.yc0{bottom:181.466667pt;}
.y63{bottom:181.947067pt;}
.yc1{bottom:185.067067pt;}
.y2e{bottom:198.107067pt;}
.y62{bottom:199.627067pt;}
.ybf{bottom:202.827200pt;}
.y61{bottom:217.387067pt;}
.y2b{bottom:220.347067pt;}
.ybe{bottom:220.507200pt;}
.y2d{bottom:221.467067pt;}
.y60{bottom:235.067067pt;}
.y2c{bottom:237.627067pt;}
.ybd{bottom:238.267200pt;}
.y2a{bottom:238.667067pt;}
.y5f{bottom:252.827067pt;}
.ybc{bottom:255.947200pt;}
.y5e{bottom:270.587067pt;}
.ybb{bottom:273.707200pt;}
.y29{bottom:276.267067pt;}
.y5d{bottom:288.267067pt;}
.y28{bottom:289.707067pt;}
.yba{bottom:291.387200pt;}
.y5c{bottom:306.027067pt;}
.y27{bottom:307.467067pt;}
.yb9{bottom:309.147200pt;}
.y5b{bottom:323.707067pt;}
.yb8{bottom:326.907200pt;}
.y26{bottom:337.387067pt;}
.yb5{bottom:340.986667pt;}
.y5a{bottom:341.467067pt;}
.yb7{bottom:344.587200pt;}
.y25{bottom:354.027531pt;}
.yb3{bottom:358.746667pt;}
.y59{bottom:359.147067pt;}
.yb4{bottom:362.347067pt;}
.y24{bottom:366.347067pt;}
.y58{bottom:376.907067pt;}
.y23{bottom:379.867067pt;}
.yb2{bottom:380.027067pt;}
.y81{bottom:392.987200pt;}
.y20{bottom:394.106667pt;}
.y57{bottom:394.587067pt;}
.y22{bottom:396.507067pt;}
.yb1{bottom:397.787067pt;}
.yc7{bottom:400.427067pt;}
.y1f{bottom:408.827200pt;}
.y56{bottom:412.347067pt;}
.yb0{bottom:415.467067pt;}
.y1e{bottom:422.347067pt;}
.y80{bottom:424.107067pt;}
.yae{bottom:429.626667pt;}
.y55{bottom:430.107067pt;}
.ye9{bottom:430.667200pt;}
.yaf{bottom:433.227067pt;}
.y1d{bottom:438.907067pt;}
.ye8{bottom:443.708459pt;}
.y7f{bottom:443.867067pt;}
.y54{bottom:447.787067pt;}
.yad{bottom:450.907067pt;}
.y1c{bottom:452.427067pt;}
.ye7{bottom:459.707995pt;}
.y53{bottom:465.547067pt;}
.y1a{bottom:466.666667pt;}
.yac{bottom:468.667067pt;}
.y19{bottom:468.987067pt;}
.ye6{bottom:475.707531pt;}
.y7e{bottom:479.467067pt;}
.y18{bottom:481.387067pt;}
.y52{bottom:483.227067pt;}
.yab{bottom:486.427067pt;}
.ye5{bottom:491.707067pt;}
.y17{bottom:493.706939pt;}
.y50{bottom:497.386667pt;}
.ya9{bottom:500.506667pt;}
.y51{bottom:500.987067pt;}
.yaa{bottom:504.107067pt;}
.y16{bottom:506.107067pt;}
.ye4{bottom:507.227067pt;}
.y4f{bottom:518.667067pt;}
.y15{bottom:519.547067pt;}
.ya8{bottom:521.867067pt;}
.y4d{bottom:532.826667pt;}
.y14{bottom:536.187067pt;}
.y4e{bottom:536.427067pt;}
.ya7{bottom:539.547067pt;}
.ye3{bottom:547.227067pt;}
.y13{bottom:548.587067pt;}
.ya6{bottom:553.706667pt;}
.y4c{bottom:554.107067pt;}
.y8a{bottom:557.307067pt;}
.ye1{bottom:557.386667pt;}
.ye2{bottom:560.187067pt;}
.y12{bottom:562.027067pt;}
.y4b{bottom:571.867067pt;}
.ya5{bottom:574.987067pt;}
.ye0{bottom:576.187531pt;}
.y11{bottom:578.667531pt;}
.y7d{bottom:584.187067pt;}
.yde{bottom:589.386667pt;}
.y4a{bottom:589.627067pt;}
.y10{bottom:590.987067pt;}
.ydf{bottom:592.187067pt;}
.ya4{bottom:592.747067pt;}
.y48{bottom:603.706667pt;}
.yf{bottom:604.507067pt;}
.y7c{bottom:605.867067pt;}
.y49{bottom:607.307067pt;}
.ydd{bottom:607.707067pt;}
.ya3{bottom:610.427067pt;}
.ydc{bottom:622.667067pt;}
.y47{bottom:625.067067pt;}
.y7b{bottom:626.267067pt;}
.ya2{bottom:628.187067pt;}
.y7a{bottom:637.547067pt;}
.y46{bottom:642.747067pt;}
.ya1{bottom:645.947067pt;}
.y79{bottom:648.747067pt;}
.y78{bottom:660.267067pt;}
.y45{bottom:660.507067pt;}
.ya0{bottom:663.627067pt;}
.ydb{bottom:670.667067pt;}
.y77{bottom:676.827067pt;}
.y9e{bottom:677.786667pt;}
.y44{bottom:678.187067pt;}
.y9f{bottom:681.387067pt;}
.yda{bottom:683.707995pt;}
.y41{bottom:692.346667pt;}
.y76{bottom:695.147200pt;}
.y43{bottom:695.947067pt;}
.y9d{bottom:699.067067pt;}
.yd9{bottom:699.707531pt;}
.y40{bottom:713.627067pt;}
.y75{bottom:715.467067pt;}
.yd8{bottom:715.707067pt;}
.y9c{bottom:716.827067pt;}
.y74{bottom:726.747067pt;}
.yd7{bottom:731.227067pt;}
.y3f{bottom:731.387067pt;}
.y9b{bottom:734.507067pt;}
.y73{bottom:738.186939pt;}
.y72{bottom:750.587067pt;}
.y9a{bottom:752.267067pt;}
.y71{bottom:767.147200pt;}
.y3e{bottom:769.147083pt;}
.y99{bottom:769.947067pt;}
.yd6{bottom:771.227067pt;}
.yd4{bottom:781.386667pt;}
.yd5{bottom:784.187067pt;}
.y70{bottom:785.467067pt;}
.y98{bottom:787.707067pt;}
.y3d{bottom:792.987067pt;}
.ye{bottom:798.187067pt;}
.yd3{bottom:800.187995pt;}
.y97{bottom:805.467067pt;}
.y6f{bottom:805.867067pt;}
.yd{bottom:814.827067pt;}
.yd2{bottom:816.187531pt;}
.y6e{bottom:817.067067pt;}
.y96{bottom:823.147067pt;}
.y3c{bottom:825.947067pt;}
.yc{bottom:828.267067pt;}
.y6d{bottom:828.507067pt;}
.yd1{bottom:832.187067pt;}
.y3a{bottom:840.266667pt;}
.y95{bottom:840.907067pt;}
.y39{bottom:843.707067pt;}
.yb{bottom:845.067067pt;}
.yd0{bottom:847.707067pt;}
.y94{bottom:858.587067pt;}
.ycf{bottom:862.667067pt;}
.ya{bottom:863.387067pt;}
.y93{bottom:876.347067pt;}
.y9{bottom:880.506587pt;}
.y1{bottom:893.067067pt;}
.y92{bottom:894.027067pt;}
.y8{bottom:895.386827pt;}
.yce{bottom:902.667067pt;}
.y7{bottom:910.267067pt;}
.y91{bottom:911.787067pt;}
.ycd{bottom:915.707995pt;}
.y90{bottom:929.467067pt;}
.y2{bottom:930.907067pt;}
.y89{bottom:931.227067pt;}
.ycc{bottom:931.707531pt;}
.y8e{bottom:943.626667pt;}
.yc9{bottom:944.906667pt;}
.y6{bottom:946.587067pt;}
.y8f{bottom:947.227067pt;}
.ycb{bottom:947.707067pt;}
.y88{bottom:947.866427pt;}
.y87{bottom:960.187067pt;}
.yc8{bottom:963.147200pt;}
.y3{bottom:964.027067pt;}
.y8d{bottom:964.987067pt;}
.y5{bottom:965.066811pt;}
.y86{bottom:973.707067pt;}
.y8c{bottom:982.667067pt;}
.y85{bottom:990.266939pt;}
.y4{bottom:998.427067pt;}
.y8b{bottom:1000.427067pt;}
.y84{bottom:1002.667067pt;}
.y82{bottom:1072.427067pt;}
.h14{height:-17.572880pt;}
.h9{height:12.560000pt;}
.ha{height:12.640000pt;}
.h17{height:14.320000pt;}
.h10{height:17.680000pt;}
.h13{height:17.840000pt;}
.h12{height:18.000000pt;}
.hd{height:41.718750pt;}
.hc{height:42.680000pt;}
.h3{height:44.505000pt;}
.h8{height:46.057500pt;}
.hf{height:46.058012pt;}
.he{height:46.058033pt;}
.h15{height:46.060060pt;}
.hb{height:48.920000pt;}
.h7{height:50.062500pt;}
.h16{height:53.733750pt;}
.h6{height:55.402500pt;}
.h5{height:56.679040pt;}
.h1{height:62.812500pt;}
.h2{height:66.750000pt;}
.h4{height:72.562500pt;}
.h11{height:88.777500pt;}
.h0{height:1062.666667pt;}
.w1{width:-60.960000pt;}
.w2{width:-35.120000pt;}
.w12{width:-12.666667pt;}
.w3{width:41.760000pt;}
.wf{width:180.400000pt;}
.w9{width:201.040000pt;}
.w7{width:250.560000pt;}
.wb{width:254.640000pt;}
.wc{width:272.400000pt;}
.wd{width:279.520000pt;}
.w11{width:283.920000pt;}
.w4{width:299.840000pt;}
.w6{width:312.800000pt;}
.w8{width:318.640000pt;}
.wa{width:320.400000pt;}
.we{width:326.160000pt;}
.w10{width:327.040000pt;}
.w5{width:335.040000pt;}
.w0{width:349.333333pt;}
.xb{left:-128.000000pt;}
.x10{left:-124.960000pt;}
.xa{left:-124.000000pt;}
.x13{left:-111.440000pt;}
.x11{left:-106.320000pt;}
.xc{left:-94.800000pt;}
.x14{left:-91.120000pt;}
.xd{left:-88.080000pt;}
.xe{left:-64.640000pt;}
.xf{left:-60.960000pt;}
.x1{left:-35.520000pt;}
.x1e{left:-32.960000pt;}
.x12{left:-31.760000pt;}
.x1f{left:-24.880000pt;}
.x2{left:-2.000000pt;}
.x0{left:0.000000pt;}
.x15{left:10.000000pt;}
.x19{left:18.000000pt;}
.x24{left:21.520000pt;}
.x17{left:25.760000pt;}
.x20{left:94.640000pt;}
.x21{left:102.640000pt;}
.x3{left:156.160000pt;}
.x22{left:249.280000pt;}
.x16{left:255.680000pt;}
.x23{left:264.640000pt;}
.x18{left:289.440000pt;}
.x1b{left:357.040000pt;}
.x4{left:358.960000pt;}
.x25{left:362.000000pt;}
.x1a{left:363.040000pt;}
.x7{left:364.160000pt;}
.x27{left:369.200000pt;}
.x26{left:370.560000pt;}
.x8{left:384.400048pt;}
.x6{left:400.880000pt;}
.x9{left:408.079616pt;}
.x5{left:436.959632pt;}
.x1d{left:442.320000pt;}
.x1c{left:444.560000pt;}
}




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