
    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_91ca2b81e7ba4f5e0bca8d86.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.715000;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_d4ea3cd84ee9d2a7826f4a5e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_81c06c26abffb2caee5ca796.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091309;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_17a8507e94d7392f7a0e35ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_bd05bf6e08069f860e15f3af.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.051758;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_79f6bafd1be2ae2c25c5579e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.860840;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_d22cbd43880a64f3a31a1a5a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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);}
.v2{vertical-align:-17.280000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.888000px;}
.ls1e{letter-spacing:-1.165824px;}
.ls20{letter-spacing:-1.161216px;}
.ls24{letter-spacing:-1.112832px;}
.ls23{letter-spacing:-0.774144px;}
.ls22{letter-spacing:-0.725760px;}
.ls18{letter-spacing:-0.633600px;}
.ls1c{letter-spacing:-0.582912px;}
.ls25{letter-spacing:-0.518400px;}
.ls19{letter-spacing:-0.476928px;}
.ls2e{letter-spacing:-0.403200px;}
.ls21{letter-spacing:-0.387072px;}
.ls1a{letter-spacing:-0.370944px;}
.ls16{letter-spacing:-0.230400px;}
.ls15{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.096000px;}
.ls1b{letter-spacing:0.105984px;}
.ls29{letter-spacing:0.114600px;}
.ls26{letter-spacing:0.115200px;}
.ls1d{letter-spacing:0.211968px;}
.ls1f{letter-spacing:0.231552px;}
.ls2f{letter-spacing:0.317952px;}
.lsa{letter-spacing:0.338688px;}
.ls17{letter-spacing:0.345600px;}
.ls3{letter-spacing:0.518400px;}
.ls2b{letter-spacing:0.575400px;}
.ls5{letter-spacing:0.576000px;}
.ls2d{letter-spacing:0.576600px;}
.ls2{letter-spacing:1.728000px;}
.ls2c{letter-spacing:2.880000px;}
.ls0{letter-spacing:5.184000px;}
.ls1{letter-spacing:6.336000px;}
.ls7{letter-spacing:8.640000px;}
.ls6{letter-spacing:8.640600px;}
.ls28{letter-spacing:11.923200px;}
.ls9{letter-spacing:12.096000px;}
.ls8{letter-spacing:12.241152px;}
.lsc{letter-spacing:13.708800px;}
.lsd{letter-spacing:13.824000px;}
.ls11{letter-spacing:13.939200px;}
.ls4{letter-spacing:15.552000px;}
.ls27{letter-spacing:15.897600px;}
.lsf{letter-spacing:15.955200px;}
.lsb{letter-spacing:16.070400px;}
.ls10{letter-spacing:16.185600px;}
.lse{letter-spacing:17.222400px;}
.ls14{letter-spacing:22.579200px;}
.ls13{letter-spacing:40.262400px;}
.ls12{letter-spacing:40.377600px;}
.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;}
}
.ws94{word-spacing:-57.600000px;}
.ws2{word-spacing:-14.745600px;}
.ws95{word-spacing:-14.515200px;}
.ws1{word-spacing:-14.400000px;}
.ws0{word-spacing:-14.169600px;}
.ws34{word-spacing:-13.881600px;}
.ws3{word-spacing:-13.766400px;}
.ws4{word-spacing:-13.248000px;}
.ws5{word-spacing:-12.771072px;}
.ws6{word-spacing:-12.082176px;}
.ws7{word-spacing:-9.504000px;}
.ws76{word-spacing:-4.550400px;}
.ws77{word-spacing:-3.456000px;}
.ws75{word-spacing:-3.283200px;}
.ws35{word-spacing:-2.995200px;}
.ws36{word-spacing:-2.880000px;}
.ws33{word-spacing:-2.764800px;}
.ws7d{word-spacing:-2.476800px;}
.ws7e{word-spacing:-1.958400px;}
.ws6d{word-spacing:-1.843200px;}
.ws3c{word-spacing:-1.785600px;}
.ws39{word-spacing:-1.728000px;}
.ws3a{word-spacing:-1.612800px;}
.ws81{word-spacing:-1.324800px;}
.ws82{word-spacing:-1.152000px;}
.ws6c{word-spacing:-1.094400px;}
.ws80{word-spacing:-0.979200px;}
.ws66{word-spacing:-0.919296px;}
.ws7f{word-spacing:-0.864000px;}
.ws7c{word-spacing:-0.806400px;}
.ws53{word-spacing:-0.794880px;}
.ws69{word-spacing:-0.748800px;}
.ws41{word-spacing:-0.691200px;}
.ws5c{word-spacing:-0.628992px;}
.ws57{word-spacing:-0.617472px;}
.ws4e{word-spacing:-0.582912px;}
.ws8{word-spacing:-0.580608px;}
.ws42{word-spacing:-0.576000px;}
.ws5d{word-spacing:-0.532224px;}
.ws6a{word-spacing:-0.518400px;}
.ws3b{word-spacing:-0.460800px;}
.ws5f{word-spacing:-0.435456px;}
.ws8c{word-spacing:-0.403200px;}
.ws58{word-spacing:-0.385920px;}
.ws67{word-spacing:-0.338688px;}
.ws9a{word-spacing:-0.317952px;}
.ws5e{word-spacing:-0.241920px;}
.ws56{word-spacing:-0.231552px;}
.ws51{word-spacing:-0.211968px;}
.ws61{word-spacing:-0.193536px;}
.ws50{word-spacing:-0.105984px;}
.ws60{word-spacing:-0.048384px;}
.ws45{word-spacing:0.000000px;}
.ws63{word-spacing:0.193536px;}
.ws70{word-spacing:0.230400px;}
.ws96{word-spacing:0.259200px;}
.ws59{word-spacing:0.288000px;}
.ws54{word-spacing:0.317952px;}
.ws2e{word-spacing:0.403200px;}
.ws5a{word-spacing:0.460800px;}
.ws4d{word-spacing:0.476928px;}
.ws2d{word-spacing:0.518400px;}
.ws4b{word-spacing:0.529920px;}
.ws68{word-spacing:0.532224px;}
.ws52{word-spacing:0.582912px;}
.ws5b{word-spacing:0.633600px;}
.ws9{word-spacing:0.677376px;}
.ws65{word-spacing:0.725760px;}
.ws97{word-spacing:0.748800px;}
.ws7b{word-spacing:0.864000px;}
.ws4f{word-spacing:0.900864px;}
.ws7a{word-spacing:0.921600px;}
.ws4c{word-spacing:1.006848px;}
.ws6b{word-spacing:1.036800px;}
.ws55{word-spacing:1.112832px;}
.ws78{word-spacing:1.152000px;}
.ws62{word-spacing:1.354752px;}
.ws8e{word-spacing:1.382400px;}
.ws89{word-spacing:1.440000px;}
.ws8d{word-spacing:1.497600px;}
.ws38{word-spacing:1.555200px;}
.ws2f{word-spacing:1.670400px;}
.ws9b{word-spacing:1.695744px;}
.ws22{word-spacing:1.741824px;}
.ws37{word-spacing:1.785600px;}
.ws79{word-spacing:1.958400px;}
.ws71{word-spacing:2.073600px;}
.ws23{word-spacing:2.119219px;}
.wsc{word-spacing:2.182118px;}
.ws6f{word-spacing:2.188800px;}
.ws72{word-spacing:2.246400px;}
.ws8b{word-spacing:2.304000px;}
.ws10{word-spacing:2.515968px;}
.ws20{word-spacing:2.574029px;}
.ws8a{word-spacing:2.592000px;}
.ws30{word-spacing:2.707200px;}
.ws1e{word-spacing:2.801434px;}
.wsd{word-spacing:2.815949px;}
.ws47{word-spacing:2.822400px;}
.ws64{word-spacing:2.854656px;}
.wsa{word-spacing:3.212698px;}
.ws6e{word-spacing:3.340800px;}
.ws3d{word-spacing:3.859200px;}
.ws40{word-spacing:3.974400px;}
.wsf{word-spacing:4.030387px;}
.ws21{word-spacing:4.257792px;}
.ws92{word-spacing:4.492800px;}
.ws46{word-spacing:5.126400px;}
.wse{word-spacing:5.177088px;}
.ws98{word-spacing:5.356800px;}
.ws83{word-spacing:5.472000px;}
.ws11{word-spacing:5.568998px;}
.ws1f{word-spacing:5.573837px;}
.wsb{word-spacing:5.718989px;}
.ws48{word-spacing:6.278400px;}
.ws49{word-spacing:6.393600px;}
.ws91{word-spacing:6.451200px;}
.ws8f{word-spacing:7.430400px;}
.ws90{word-spacing:7.891200px;}
.ws93{word-spacing:8.467200px;}
.ws43{word-spacing:8.582400px;}
.ws25{word-spacing:8.636544px;}
.ws29{word-spacing:8.660736px;}
.ws44{word-spacing:8.697600px;}
.ws2a{word-spacing:8.999424px;}
.ws2c{word-spacing:9.038131px;}
.ws24{word-spacing:9.125222px;}
.ws28{word-spacing:9.338112px;}
.ws26{word-spacing:9.730022px;}
.ws4a{word-spacing:9.734400px;}
.ws1a{word-spacing:9.773568px;}
.ws18{word-spacing:9.783245px;}
.ws1b{word-spacing:9.821952px;}
.ws19{word-spacing:10.170317px;}
.ws16{word-spacing:10.209024px;}
.ws13{word-spacing:10.654157px;}
.ws2b{word-spacing:10.886400px;}
.ws27{word-spacing:10.896077px;}
.ws1d{word-spacing:11.999232px;}
.ws12{word-spacing:12.245990px;}
.ws15{word-spacing:12.439526px;}
.ws1c{word-spacing:12.579840px;}
.ws14{word-spacing:12.729830px;}
.ws17{word-spacing:13.649126px;}
.ws73{word-spacing:14.227200px;}
.ws74{word-spacing:14.342400px;}
.ws84{word-spacing:15.091200px;}
.ws31{word-spacing:15.494400px;}
.ws32{word-spacing:15.552000px;}
.ws85{word-spacing:15.609600px;}
.ws3f{word-spacing:16.531200px;}
.ws3e{word-spacing:16.646400px;}
.ws99{word-spacing:22.406400px;}
.ws88{word-spacing:25.228800px;}
.ws87{word-spacing:25.459200px;}
.ws86{word-spacing:26.380800px;}
._3{margin-left:-2.764800px;}
._1{margin-left:-1.324800px;}
._2{width:1.190400px;}
._4{width:2.236800px;}
._b{width:4.137600px;}
._0{width:6.115200px;}
._8{width:10.441728px;}
._5{width:12.519936px;}
._9{width:14.515200px;}
._6{width:16.043213px;}
._a{width:19.017600px;}
._7{width:22.767667px;}
.fc5{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(25,27,31);}
.fc2{color:rgb(255,0,0);}
.fc0{color:rgb(29,29,27);}
.fs5{font-size:31.104000px;}
.fs4{font-size:38.016000px;}
.fs6{font-size:48.384000px;}
.fs2{font-size:52.992000px;}
.fs1{font-size:57.600000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:77.184000px;}
.yea{bottom:-13.248150px;}
.y0{bottom:0.000000px;}
.ye5{bottom:2.879850px;}
.yf4{bottom:3.167850px;}
.yf2{bottom:3.168000px;}
.yed{bottom:3.455850px;}
.ye9{bottom:3.456000px;}
.ye7{bottom:3.492000px;}
.y2{bottom:10.168500px;}
.y1{bottom:35.078700px;}
.ya9{bottom:88.127850px;}
.yca{bottom:95.932650px;}
.ye2{bottom:98.284350px;}
.y61{bottom:102.028500px;}
.ya8{bottom:104.860650px;}
.y91{bottom:106.048500px;}
.yc9{bottom:112.924650px;}
.y12a{bottom:114.076650px;}
.ye1{bottom:115.017150px;}
.y60{bottom:118.602900px;}
.y33{bottom:120.407850px;}
.ya7{bottom:121.271850px;}
.y90{bottom:123.040500px;}
.y104{bottom:124.233150px;}
.y11b{bottom:128.759850px;}
.yc8{bottom:129.335850px;}
.y129{bottom:130.487850px;}
.ye0{bottom:131.433150px;}
.y5f{bottom:135.177300px;}
.y32{bottom:135.671850px;}
.ya6{bottom:137.975850px;}
.y141{bottom:138.928350px;}
.y8f{bottom:139.456500px;}
.y103{bottom:140.649150px;}
.y11a{bottom:144.311850px;}
.yc7{bottom:146.039850px;}
.y128{bottom:147.191850px;}
.ydf{bottom:148.137150px;}
.y31{bottom:150.935850px;}
.y5e{bottom:151.751700px;}
.ya5{bottom:154.391850px;}
.y140{bottom:154.480350px;}
.y8e{bottom:156.160500px;}
.y102{bottom:157.353150px;}
.y119{bottom:160.439850px;}
.yc6{bottom:162.455850px;}
.y127{bottom:163.607850px;}
.yde{bottom:164.553150px;}
.y30{bottom:165.911850px;}
.y5d{bottom:168.326100px;}
.y13f{bottom:170.629758px;}
.ya4{bottom:171.095850px;}
.y8d{bottom:172.576500px;}
.y101{bottom:173.769150px;}
.y118{bottom:175.703850px;}
.yc5{bottom:179.159850px;}
.y126{bottom:180.311850px;}
.y2f{bottom:181.175850px;}
.ydd{bottom:181.257150px;}
.y5c{bottom:184.900500px;}
.y13e{bottom:185.891454px;}
.ya3{bottom:187.547850px;}
.y8c{bottom:189.280500px;}
.y100{bottom:190.473150px;}
.y117{bottom:191.003850px;}
.y2e{bottom:196.475850px;}
.y125{bottom:196.763850px;}
.ydc{bottom:197.716350px;}
.y13d{bottom:201.192894px;}
.y5b{bottom:201.474900px;}
.ya2{bottom:204.251850px;}
.y116{bottom:205.979850px;}
.yff{bottom:206.932350px;}
.yc4{bottom:209.723850px;}
.y2d{bottom:211.451850px;}
.y124{bottom:213.467850px;}
.ydb{bottom:214.420350px;}
.y13c{bottom:216.163134px;}
.y5a{bottom:218.049300px;}
.y8b{bottom:219.851700px;}
.ya1{bottom:220.667850px;}
.y115{bottom:221.243850px;}
.yfe{bottom:223.636350px;}
.y2c{bottom:226.715850px;}
.yda{bottom:230.836350px;}
.y13b{bottom:231.424830px;}
.y59{bottom:234.623700px;}
.y114{bottom:236.507850px;}
.y123{bottom:236.795850px;}
.y8a{bottom:236.843700px;}
.ya0{bottom:237.371850px;}
.y2b{bottom:241.979850px;}
.yc3{bottom:243.131850px;}
.y13a{bottom:246.686526px;}
.yfd{bottom:246.966654px;}
.yd9{bottom:247.540350px;}
.y58{bottom:251.198100px;}
.y113{bottom:251.483850px;}
.y122{bottom:252.059850px;}
.y89{bottom:253.259700px;}
.y9f{bottom:253.787850px;}
.y2a{bottom:257.243850px;}
.yc2{bottom:259.547850px;}
.y139{bottom:261.656766px;}
.yfc{bottom:262.228350px;}
.yd8{bottom:263.956350px;}
.y112{bottom:266.747850px;}
.y57{bottom:267.772500px;}
.y88{bottom:269.675700px;}
.y29{bottom:272.219850px;}
.y138{bottom:276.918462px;}
.y9e{bottom:277.403850px;}
.yc1{bottom:281.147850px;}
.y111{bottom:282.011850px;}
.y56{bottom:284.346900px;}
.y28{bottom:287.507850px;}
.yd7{bottom:287.572350px;}
.y87{bottom:291.275700px;}
.y137{bottom:292.180158px;}
.y110{bottom:297.299850px;}
.yc0{bottom:297.587850px;}
.y55{bottom:300.921300px;}
.y27{bottom:302.771850px;}
.y136{bottom:307.468350px;}
.y86{bottom:307.720500px;}
.y9d{bottom:307.955850px;}
.ybf{bottom:314.291850px;}
.y10f{bottom:316.019850px;}
.y54{bottom:317.495700px;}
.y26{bottom:317.747850px;}
.yd6{bottom:318.120798px;}
.y85{bottom:324.424500px;}
.y135{bottom:326.152500px;}
.ybe{bottom:330.707850px;}
.y25{bottom:333.011850px;}
.y53{bottom:334.070100px;}
.y84{bottom:340.840500px;}
.ybd{bottom:347.411850px;}
.y24{bottom:348.275850px;}
.y52{bottom:350.644500px;}
.y83{bottom:357.544500px;}
.y23{bottom:363.539850px;}
.ybc{bottom:363.827850px;}
.y51{bottom:367.218900px;}
.y82{bottom:373.960500px;}
.y22{bottom:378.515850px;}
.ybb{bottom:380.531850px;}
.y50{bottom:383.793300px;}
.y81{bottom:390.664500px;}
.y21{bottom:393.815850px;}
.yba{bottom:396.983850px;}
.y4f{bottom:400.367700px;}
.y80{bottom:407.123700px;}
.y20{bottom:409.079850px;}
.yb9{bottom:413.687850px;}
.y4e{bottom:416.942100px;}
.y7f{bottom:423.827700px;}
.y1f{bottom:424.055850px;}
.yb8{bottom:430.104000px;}
.y4d{bottom:436.814100px;}
.y1e{bottom:439.319850px;}
.y7e{bottom:440.243700px;}
.yb7{bottom:446.807850px;}
.y1d{bottom:454.583850px;}
.y7d{bottom:456.947700px;}
.yb6{bottom:463.223850px;}
.y4c{bottom:467.306676px;}
.y1c{bottom:469.559850px;}
.y7c{bottom:473.363700px;}
.yb5{bottom:479.951850px;}
.y4b{bottom:481.108212px;}
.y1b{bottom:484.848000px;}
.y7b{bottom:490.096500px;}
.y4a{bottom:494.909748px;}
.yb4{bottom:496.367850px;}
.y1a{bottom:500.112000px;}
.y7a{bottom:506.512500px;}
.y49{bottom:508.711284px;}
.yb3{bottom:513.071850px;}
.y19{bottom:515.375850px;}
.y48{bottom:522.512820px;}
.y79{bottom:523.216500px;}
.yb2{bottom:529.487850px;}
.y18{bottom:530.351850px;}
.y47{bottom:536.314356px;}
.y78{bottom:539.632500px;}
.y17{bottom:545.615850px;}
.yb1{bottom:546.192000px;}
.y46{bottom:550.115892px;}
.y77{bottom:556.336500px;}
.yb0{bottom:562.607850px;}
.y45{bottom:563.917428px;}
.y16{bottom:564.623850px;}
.y76{bottom:572.752500px;}
.y44{bottom:577.718964px;}
.yaf{bottom:579.335850px;}
.y121{bottom:586.535850px;}
.y75{bottom:589.485300px;}
.y43{bottom:591.520500px;}
.y15{bottom:595.751850px;}
.yfb{bottom:596.704350px;}
.y120{bottom:603.239850px;}
.y74{bottom:605.901300px;}
.y42{bottom:605.920500px;}
.y14{bottom:612.455850px;}
.yfa{bottom:613.408350px;}
.y11f{bottom:619.655850px;}
.y73{bottom:622.605300px;}
.y13{bottom:628.871850px;}
.yf9{bottom:629.824350px;}
.y11e{bottom:636.359850px;}
.y72{bottom:639.021300px;}
.y41{bottom:643.362228px;}
.yae{bottom:645.575850px;}
.yf8{bottom:646.528350px;}
.y12{bottom:648.743850px;}
.y11d{bottom:652.775850px;}
.y71{bottom:655.725300px;}
.y40{bottom:659.341044px;}
.yad{bottom:661.991850px;}
.yf7{bottom:662.944350px;}
.y9c{bottom:668.615850px;}
.y70{bottom:672.141300px;}
.y3f{bottom:676.797300px;}
.yac{bottom:678.731850px;}
.yd5{bottom:678.784350px;}
.y11{bottom:680.171850px;}
.y6f{bottom:688.888500px;}
.yf6{bottom:692.356500px;}
.yab{bottom:695.147850px;}
.y10{bottom:696.587850px;}
.y9b{bottom:698.603850px;}
.y3e{bottom:699.266772px;}
.y6e{bottom:705.304500px;}
.yd4{bottom:708.760500px;}
.yf5{bottom:710.788500px;}
.y10e{bottom:711.852000px;}
.yf{bottom:713.291850px;}
.yaa{bottom:715.019850px;}
.y9a{bottom:715.308000px;}
.y3d{bottom:721.041300px;}
.y134{bottom:722.008500px;}
.y6d{bottom:725.176500px;}
.yd3{bottom:725.464500px;}
.y10d{bottom:728.268000px;}
.yf3{bottom:729.220500px;}
.ye{bottom:729.707850px;}
.y99{bottom:732.012000px;}
.y133{bottom:738.424500px;}
.y3c{bottom:741.314772px;}
.yd2{bottom:742.168500px;}
.y10c{bottom:744.971850px;}
.yd{bottom:746.411850px;}
.yf1{bottom:747.652500px;}
.y98{bottom:748.427850px;}
.y132{bottom:755.128500px;}
.y6c{bottom:756.568500px;}
.yd1{bottom:758.584500px;}
.y10b{bottom:761.387850px;}
.yc{bottom:762.827850px;}
.y3b{bottom:763.089300px;}
.y97{bottom:765.131850px;}
.yf0{bottom:765.796500px;}
.y131{bottom:771.544500px;}
.y6b{bottom:772.984500px;}
.yd0{bottom:775.288500px;}
.y10a{bottom:778.115850px;}
.yb{bottom:779.556000px;}
.y96{bottom:781.572000px;}
.y3a{bottom:783.381438px;}
.yef{bottom:784.252500px;}
.y130{bottom:788.277300px;}
.y6a{bottom:789.717300px;}
.ycf{bottom:791.733300px;}
.y109{bottom:794.531850px;}
.ya{bottom:795.971850px;}
.y95{bottom:798.276000px;}
.y39{bottom:799.227198px;}
.yee{bottom:802.684500px;}
.y12f{bottom:804.693300px;}
.y69{bottom:806.133300px;}
.yce{bottom:808.437300px;}
.y108{bottom:811.236000px;}
.y9{bottom:812.675850px;}
.y94{bottom:814.691850px;}
.y38{bottom:816.393150px;}
.yec{bottom:821.116500px;}
.y12e{bottom:821.397300px;}
.y68{bottom:822.837300px;}
.ycd{bottom:824.853300px;}
.y107{bottom:827.651850px;}
.y8{bottom:829.091850px;}
.y93{bottom:831.396000px;}
.y12d{bottom:837.813300px;}
.y67{bottom:839.253300px;}
.yeb{bottom:839.548500px;}
.y37{bottom:839.836350px;}
.ycc{bottom:841.557300px;}
.y106{bottom:844.355850px;}
.y7{bottom:845.795850px;}
.y12c{bottom:854.517300px;}
.y66{bottom:855.957300px;}
.y36{bottom:856.252500px;}
.ye8{bottom:857.980500px;}
.y92{bottom:861.924000px;}
.y6{bottom:862.212000px;}
.y105{bottom:864.228000px;}
.ycb{bottom:872.085300px;}
.y65{bottom:872.373300px;}
.y12b{bottom:874.389300px;}
.ye6{bottom:876.412500px;}
.y5{bottom:878.951850px;}
.y64{bottom:889.120500px;}
.ye4{bottom:894.880500px;}
.y35{bottom:895.173246px;}
.y4{bottom:895.368000px;}
.y63{bottom:905.536500px;}
.y3{bottom:912.072000px;}
.y11c{bottom:912.936000px;}
.y34{bottom:917.344350px;}
.y62{bottom:922.240500px;}
.ye3{bottom:923.104500px;}
.hd{height:16.416000px;}
.h10{height:16.704000px;}
.h11{height:16.705500px;}
.hf{height:16.732500px;}
.ha{height:26.001000px;}
.hc{height:36.276750px;}
.h6{height:39.431250px;}
.he{height:40.246875px;}
.hb{height:42.454125px;}
.h2{height:46.200000px;}
.h7{height:46.497375px;}
.h5{height:50.428125px;}
.h4{height:50.540625px;}
.h9{height:55.244813px;}
.h8{height:67.724437px;}
.h3{height:1010.304000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w7{width:-127.812000px;}
.w8{width:-67.597500px;}
.w6{width:-67.596000px;}
.w2{width:17.107500px;}
.w5{width:59.068500px;}
.w4{width:484.044000px;}
.w3{width:544.258500px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x2{left:-612.432600px;}
.x2a{left:-609.552600px;}
.x33{left:-596.880600px;}
.x3{left:-595.440600px;}
.x2c{left:-571.217400px;}
.x27{left:-548.465400px;}
.x32{left:-493.145400px;}
.x2f{left:-453.977400px;}
.x31{left:-418.229400px;}
.x28{left:-392.885400px;}
.x35{left:-369.557400px;}
.x2d{left:-187.745400px;}
.x2b{left:-174.209400px;}
.x2e{left:-119.465400px;}
.x34{left:-115.721400px;}
.x30{left:-111.689400px;}
.x29{left:-107.945400px;}
.x0{left:0.000000px;}
.x1a{left:2.303850px;}
.x1f{left:7.199550px;}
.x24{left:10.943550px;}
.x21{left:14.975550px;}
.x1e{left:16.703850px;}
.x19{left:18.719550px;}
.x1c{left:40.639050px;}
.xf{left:67.882350px;}
.x4{left:71.338200px;}
.x9{left:74.220846px;}
.x6{left:78.498600px;}
.x11{left:84.990300px;}
.x26{left:101.982300px;}
.x23{left:118.711050px;}
.xc{left:127.236312px;}
.x5{left:128.917464px;}
.x16{left:131.849550px;}
.x20{left:157.879050px;}
.x22{left:193.627050px;}
.x17{left:218.971050px;}
.x14{left:253.733400px;}
.x7{left:262.247400px;}
.x12{left:270.841500px;}
.xd{left:279.365550px;}
.xa{left:280.518126px;}
.xe{left:285.413550px;}
.xb{left:291.173400px;}
.x8{left:300.101400px;}
.x25{left:310.751022px;}
.x1{left:328.277550px;}
.x15{left:340.163352px;}
.x13{left:357.265350px;}
.x1d{left:424.111050px;}
.x1b{left:437.647050px;}
.x18{left:553.650000px;}
.x10{left:663.207000px;}
@media print{
.v2{vertical-align:-15.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.456000pt;}
.ls1e{letter-spacing:-1.036288pt;}
.ls20{letter-spacing:-1.032192pt;}
.ls24{letter-spacing:-0.989184pt;}
.ls23{letter-spacing:-0.688128pt;}
.ls22{letter-spacing:-0.645120pt;}
.ls18{letter-spacing:-0.563200pt;}
.ls1c{letter-spacing:-0.518144pt;}
.ls25{letter-spacing:-0.460800pt;}
.ls19{letter-spacing:-0.423936pt;}
.ls2e{letter-spacing:-0.358400pt;}
.ls21{letter-spacing:-0.344064pt;}
.ls1a{letter-spacing:-0.329728pt;}
.ls16{letter-spacing:-0.204800pt;}
.ls15{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.085333pt;}
.ls1b{letter-spacing:0.094208pt;}
.ls29{letter-spacing:0.101867pt;}
.ls26{letter-spacing:0.102400pt;}
.ls1d{letter-spacing:0.188416pt;}
.ls1f{letter-spacing:0.205824pt;}
.ls2f{letter-spacing:0.282624pt;}
.lsa{letter-spacing:0.301056pt;}
.ls17{letter-spacing:0.307200pt;}
.ls3{letter-spacing:0.460800pt;}
.ls2b{letter-spacing:0.511467pt;}
.ls5{letter-spacing:0.512000pt;}
.ls2d{letter-spacing:0.512533pt;}
.ls2{letter-spacing:1.536000pt;}
.ls2c{letter-spacing:2.560000pt;}
.ls0{letter-spacing:4.608000pt;}
.ls1{letter-spacing:5.632000pt;}
.ls7{letter-spacing:7.680000pt;}
.ls6{letter-spacing:7.680533pt;}
.ls28{letter-spacing:10.598400pt;}
.ls9{letter-spacing:10.752000pt;}
.ls8{letter-spacing:10.881024pt;}
.lsc{letter-spacing:12.185600pt;}
.lsd{letter-spacing:12.288000pt;}
.ls11{letter-spacing:12.390400pt;}
.ls4{letter-spacing:13.824000pt;}
.ls27{letter-spacing:14.131200pt;}
.lsf{letter-spacing:14.182400pt;}
.lsb{letter-spacing:14.284800pt;}
.ls10{letter-spacing:14.387200pt;}
.lse{letter-spacing:15.308800pt;}
.ls14{letter-spacing:20.070400pt;}
.ls13{letter-spacing:35.788800pt;}
.ls12{letter-spacing:35.891200pt;}
.ws94{word-spacing:-51.200000pt;}
.ws2{word-spacing:-13.107200pt;}
.ws95{word-spacing:-12.902400pt;}
.ws1{word-spacing:-12.800000pt;}
.ws0{word-spacing:-12.595200pt;}
.ws34{word-spacing:-12.339200pt;}
.ws3{word-spacing:-12.236800pt;}
.ws4{word-spacing:-11.776000pt;}
.ws5{word-spacing:-11.352064pt;}
.ws6{word-spacing:-10.739712pt;}
.ws7{word-spacing:-8.448000pt;}
.ws76{word-spacing:-4.044800pt;}
.ws77{word-spacing:-3.072000pt;}
.ws75{word-spacing:-2.918400pt;}
.ws35{word-spacing:-2.662400pt;}
.ws36{word-spacing:-2.560000pt;}
.ws33{word-spacing:-2.457600pt;}
.ws7d{word-spacing:-2.201600pt;}
.ws7e{word-spacing:-1.740800pt;}
.ws6d{word-spacing:-1.638400pt;}
.ws3c{word-spacing:-1.587200pt;}
.ws39{word-spacing:-1.536000pt;}
.ws3a{word-spacing:-1.433600pt;}
.ws81{word-spacing:-1.177600pt;}
.ws82{word-spacing:-1.024000pt;}
.ws6c{word-spacing:-0.972800pt;}
.ws80{word-spacing:-0.870400pt;}
.ws66{word-spacing:-0.817152pt;}
.ws7f{word-spacing:-0.768000pt;}
.ws7c{word-spacing:-0.716800pt;}
.ws53{word-spacing:-0.706560pt;}
.ws69{word-spacing:-0.665600pt;}
.ws41{word-spacing:-0.614400pt;}
.ws5c{word-spacing:-0.559104pt;}
.ws57{word-spacing:-0.548864pt;}
.ws4e{word-spacing:-0.518144pt;}
.ws8{word-spacing:-0.516096pt;}
.ws42{word-spacing:-0.512000pt;}
.ws5d{word-spacing:-0.473088pt;}
.ws6a{word-spacing:-0.460800pt;}
.ws3b{word-spacing:-0.409600pt;}
.ws5f{word-spacing:-0.387072pt;}
.ws8c{word-spacing:-0.358400pt;}
.ws58{word-spacing:-0.343040pt;}
.ws67{word-spacing:-0.301056pt;}
.ws9a{word-spacing:-0.282624pt;}
.ws5e{word-spacing:-0.215040pt;}
.ws56{word-spacing:-0.205824pt;}
.ws51{word-spacing:-0.188416pt;}
.ws61{word-spacing:-0.172032pt;}
.ws50{word-spacing:-0.094208pt;}
.ws60{word-spacing:-0.043008pt;}
.ws45{word-spacing:0.000000pt;}
.ws63{word-spacing:0.172032pt;}
.ws70{word-spacing:0.204800pt;}
.ws96{word-spacing:0.230400pt;}
.ws59{word-spacing:0.256000pt;}
.ws54{word-spacing:0.282624pt;}
.ws2e{word-spacing:0.358400pt;}
.ws5a{word-spacing:0.409600pt;}
.ws4d{word-spacing:0.423936pt;}
.ws2d{word-spacing:0.460800pt;}
.ws4b{word-spacing:0.471040pt;}
.ws68{word-spacing:0.473088pt;}
.ws52{word-spacing:0.518144pt;}
.ws5b{word-spacing:0.563200pt;}
.ws9{word-spacing:0.602112pt;}
.ws65{word-spacing:0.645120pt;}
.ws97{word-spacing:0.665600pt;}
.ws7b{word-spacing:0.768000pt;}
.ws4f{word-spacing:0.800768pt;}
.ws7a{word-spacing:0.819200pt;}
.ws4c{word-spacing:0.894976pt;}
.ws6b{word-spacing:0.921600pt;}
.ws55{word-spacing:0.989184pt;}
.ws78{word-spacing:1.024000pt;}
.ws62{word-spacing:1.204224pt;}
.ws8e{word-spacing:1.228800pt;}
.ws89{word-spacing:1.280000pt;}
.ws8d{word-spacing:1.331200pt;}
.ws38{word-spacing:1.382400pt;}
.ws2f{word-spacing:1.484800pt;}
.ws9b{word-spacing:1.507328pt;}
.ws22{word-spacing:1.548288pt;}
.ws37{word-spacing:1.587200pt;}
.ws79{word-spacing:1.740800pt;}
.ws71{word-spacing:1.843200pt;}
.ws23{word-spacing:1.883750pt;}
.wsc{word-spacing:1.939661pt;}
.ws6f{word-spacing:1.945600pt;}
.ws72{word-spacing:1.996800pt;}
.ws8b{word-spacing:2.048000pt;}
.ws10{word-spacing:2.236416pt;}
.ws20{word-spacing:2.288026pt;}
.ws8a{word-spacing:2.304000pt;}
.ws30{word-spacing:2.406400pt;}
.ws1e{word-spacing:2.490163pt;}
.wsd{word-spacing:2.503066pt;}
.ws47{word-spacing:2.508800pt;}
.ws64{word-spacing:2.537472pt;}
.wsa{word-spacing:2.855731pt;}
.ws6e{word-spacing:2.969600pt;}
.ws3d{word-spacing:3.430400pt;}
.ws40{word-spacing:3.532800pt;}
.wsf{word-spacing:3.582566pt;}
.ws21{word-spacing:3.784704pt;}
.ws92{word-spacing:3.993600pt;}
.ws46{word-spacing:4.556800pt;}
.wse{word-spacing:4.601856pt;}
.ws98{word-spacing:4.761600pt;}
.ws83{word-spacing:4.864000pt;}
.ws11{word-spacing:4.950221pt;}
.ws1f{word-spacing:4.954522pt;}
.wsb{word-spacing:5.083546pt;}
.ws48{word-spacing:5.580800pt;}
.ws49{word-spacing:5.683200pt;}
.ws91{word-spacing:5.734400pt;}
.ws8f{word-spacing:6.604800pt;}
.ws90{word-spacing:7.014400pt;}
.ws93{word-spacing:7.526400pt;}
.ws43{word-spacing:7.628800pt;}
.ws25{word-spacing:7.676928pt;}
.ws29{word-spacing:7.698432pt;}
.ws44{word-spacing:7.731200pt;}
.ws2a{word-spacing:7.999488pt;}
.ws2c{word-spacing:8.033894pt;}
.ws24{word-spacing:8.111309pt;}
.ws28{word-spacing:8.300544pt;}
.ws26{word-spacing:8.648909pt;}
.ws4a{word-spacing:8.652800pt;}
.ws1a{word-spacing:8.687616pt;}
.ws18{word-spacing:8.696218pt;}
.ws1b{word-spacing:8.730624pt;}
.ws19{word-spacing:9.040282pt;}
.ws16{word-spacing:9.074688pt;}
.ws13{word-spacing:9.470362pt;}
.ws2b{word-spacing:9.676800pt;}
.ws27{word-spacing:9.685402pt;}
.ws1d{word-spacing:10.665984pt;}
.ws12{word-spacing:10.885325pt;}
.ws15{word-spacing:11.057357pt;}
.ws1c{word-spacing:11.182080pt;}
.ws14{word-spacing:11.315405pt;}
.ws17{word-spacing:12.132557pt;}
.ws73{word-spacing:12.646400pt;}
.ws74{word-spacing:12.748800pt;}
.ws84{word-spacing:13.414400pt;}
.ws31{word-spacing:13.772800pt;}
.ws32{word-spacing:13.824000pt;}
.ws85{word-spacing:13.875200pt;}
.ws3f{word-spacing:14.694400pt;}
.ws3e{word-spacing:14.796800pt;}
.ws99{word-spacing:19.916800pt;}
.ws88{word-spacing:22.425600pt;}
.ws87{word-spacing:22.630400pt;}
.ws86{word-spacing:23.449600pt;}
._3{margin-left:-2.457600pt;}
._1{margin-left:-1.177600pt;}
._2{width:1.058133pt;}
._4{width:1.988267pt;}
._b{width:3.677867pt;}
._0{width:5.435733pt;}
._8{width:9.281536pt;}
._5{width:11.128832pt;}
._9{width:12.902400pt;}
._6{width:14.260634pt;}
._a{width:16.904533pt;}
._7{width:20.237926pt;}
.fs5{font-size:27.648000pt;}
.fs4{font-size:33.792000pt;}
.fs6{font-size:43.008000pt;}
.fs2{font-size:47.104000pt;}
.fs1{font-size:51.200000pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:68.608000pt;}
.yea{bottom:-11.776133pt;}
.y0{bottom:0.000000pt;}
.ye5{bottom:2.559867pt;}
.yf4{bottom:2.815867pt;}
.yf2{bottom:2.816000pt;}
.yed{bottom:3.071867pt;}
.ye9{bottom:3.072000pt;}
.ye7{bottom:3.104000pt;}
.y2{bottom:9.038667pt;}
.y1{bottom:31.181067pt;}
.ya9{bottom:78.335867pt;}
.yca{bottom:85.273467pt;}
.ye2{bottom:87.363867pt;}
.y61{bottom:90.692000pt;}
.ya8{bottom:93.209467pt;}
.y91{bottom:94.265333pt;}
.yc9{bottom:100.377467pt;}
.y12a{bottom:101.401467pt;}
.ye1{bottom:102.237467pt;}
.y60{bottom:105.424800pt;}
.y33{bottom:107.029200pt;}
.ya7{bottom:107.797200pt;}
.y90{bottom:109.369333pt;}
.y104{bottom:110.429467pt;}
.y11b{bottom:114.453200pt;}
.yc8{bottom:114.965200pt;}
.y129{bottom:115.989200pt;}
.ye0{bottom:116.829467pt;}
.y5f{bottom:120.157600pt;}
.y32{bottom:120.597200pt;}
.ya6{bottom:122.645200pt;}
.y141{bottom:123.491867pt;}
.y8f{bottom:123.961333pt;}
.y103{bottom:125.021467pt;}
.y11a{bottom:128.277200pt;}
.yc7{bottom:129.813200pt;}
.y128{bottom:130.837200pt;}
.ydf{bottom:131.677467pt;}
.y31{bottom:134.165200pt;}
.y5e{bottom:134.890400pt;}
.ya5{bottom:137.237200pt;}
.y140{bottom:137.315867pt;}
.y8e{bottom:138.809333pt;}
.y102{bottom:139.869467pt;}
.y119{bottom:142.613200pt;}
.yc6{bottom:144.405200pt;}
.y127{bottom:145.429200pt;}
.yde{bottom:146.269467pt;}
.y30{bottom:147.477200pt;}
.y5d{bottom:149.623200pt;}
.y13f{bottom:151.670896pt;}
.ya4{bottom:152.085200pt;}
.y8d{bottom:153.401333pt;}
.y101{bottom:154.461467pt;}
.y118{bottom:156.181200pt;}
.yc5{bottom:159.253200pt;}
.y126{bottom:160.277200pt;}
.y2f{bottom:161.045200pt;}
.ydd{bottom:161.117467pt;}
.y5c{bottom:164.356000pt;}
.y13e{bottom:165.236848pt;}
.ya3{bottom:166.709200pt;}
.y8c{bottom:168.249333pt;}
.y100{bottom:169.309467pt;}
.y117{bottom:169.781200pt;}
.y2e{bottom:174.645200pt;}
.y125{bottom:174.901200pt;}
.ydc{bottom:175.747867pt;}
.y13d{bottom:178.838128pt;}
.y5b{bottom:179.088800pt;}
.ya2{bottom:181.557200pt;}
.y116{bottom:183.093200pt;}
.yff{bottom:183.939867pt;}
.yc4{bottom:186.421200pt;}
.y2d{bottom:187.957200pt;}
.y124{bottom:189.749200pt;}
.ydb{bottom:190.595867pt;}
.y13c{bottom:192.145008pt;}
.y5a{bottom:193.821600pt;}
.y8b{bottom:195.423733pt;}
.ya1{bottom:196.149200pt;}
.y115{bottom:196.661200pt;}
.yfe{bottom:198.787867pt;}
.y2c{bottom:201.525200pt;}
.yda{bottom:205.187867pt;}
.y13b{bottom:205.710960pt;}
.y59{bottom:208.554400pt;}
.y114{bottom:210.229200pt;}
.y123{bottom:210.485200pt;}
.y8a{bottom:210.527733pt;}
.ya0{bottom:210.997200pt;}
.y2b{bottom:215.093200pt;}
.yc3{bottom:216.117200pt;}
.y13a{bottom:219.276912pt;}
.yfd{bottom:219.525915pt;}
.yd9{bottom:220.035867pt;}
.y58{bottom:223.287200pt;}
.y113{bottom:223.541200pt;}
.y122{bottom:224.053200pt;}
.y89{bottom:225.119733pt;}
.y9f{bottom:225.589200pt;}
.y2a{bottom:228.661200pt;}
.yc2{bottom:230.709200pt;}
.y139{bottom:232.583792pt;}
.yfc{bottom:233.091867pt;}
.yd8{bottom:234.627867pt;}
.y112{bottom:237.109200pt;}
.y57{bottom:238.020000pt;}
.y88{bottom:239.711733pt;}
.y29{bottom:241.973200pt;}
.y138{bottom:246.149744pt;}
.y9e{bottom:246.581200pt;}
.yc1{bottom:249.909200pt;}
.y111{bottom:250.677200pt;}
.y56{bottom:252.752800pt;}
.y28{bottom:255.562533pt;}
.yd7{bottom:255.619867pt;}
.y87{bottom:258.911733pt;}
.y137{bottom:259.715696pt;}
.y110{bottom:264.266533pt;}
.yc0{bottom:264.522533pt;}
.y55{bottom:267.485600pt;}
.y27{bottom:269.130533pt;}
.y136{bottom:273.305200pt;}
.y86{bottom:273.529333pt;}
.y9d{bottom:273.738533pt;}
.ybf{bottom:279.370533pt;}
.y10f{bottom:280.906533pt;}
.y54{bottom:282.218400pt;}
.y26{bottom:282.442533pt;}
.yd6{bottom:282.774043pt;}
.y85{bottom:288.377333pt;}
.y135{bottom:289.913333pt;}
.ybe{bottom:293.962533pt;}
.y25{bottom:296.010533pt;}
.y53{bottom:296.951200pt;}
.y84{bottom:302.969333pt;}
.ybd{bottom:308.810533pt;}
.y24{bottom:309.578533pt;}
.y52{bottom:311.684000pt;}
.y83{bottom:317.817333pt;}
.y23{bottom:323.146533pt;}
.ybc{bottom:323.402533pt;}
.y51{bottom:326.416800pt;}
.y82{bottom:332.409333pt;}
.y22{bottom:336.458533pt;}
.ybb{bottom:338.250533pt;}
.y50{bottom:341.149600pt;}
.y81{bottom:347.257333pt;}
.y21{bottom:350.058533pt;}
.yba{bottom:352.874533pt;}
.y4f{bottom:355.882400pt;}
.y80{bottom:361.887733pt;}
.y20{bottom:363.626533pt;}
.yb9{bottom:367.722533pt;}
.y4e{bottom:370.615200pt;}
.y7f{bottom:376.735733pt;}
.y1f{bottom:376.938533pt;}
.yb8{bottom:382.314667pt;}
.y4d{bottom:388.279200pt;}
.y1e{bottom:390.506533pt;}
.y7e{bottom:391.327733pt;}
.yb7{bottom:397.162533pt;}
.y1d{bottom:404.074533pt;}
.y7d{bottom:406.175733pt;}
.yb6{bottom:411.754533pt;}
.y4c{bottom:415.383712pt;}
.y1c{bottom:417.386533pt;}
.y7c{bottom:420.767733pt;}
.yb5{bottom:426.623867pt;}
.y4b{bottom:427.651744pt;}
.y1b{bottom:430.976000pt;}
.y7b{bottom:435.641333pt;}
.y4a{bottom:439.919776pt;}
.yb4{bottom:441.215867pt;}
.y1a{bottom:444.544000pt;}
.y7a{bottom:450.233333pt;}
.y49{bottom:452.187808pt;}
.yb3{bottom:456.063867pt;}
.y19{bottom:458.111867pt;}
.y48{bottom:464.455840pt;}
.y79{bottom:465.081333pt;}
.yb2{bottom:470.655867pt;}
.y18{bottom:471.423867pt;}
.y47{bottom:476.723872pt;}
.y78{bottom:479.673333pt;}
.y17{bottom:484.991867pt;}
.yb1{bottom:485.504000pt;}
.y46{bottom:488.991904pt;}
.y77{bottom:494.521333pt;}
.yb0{bottom:500.095867pt;}
.y45{bottom:501.259936pt;}
.y16{bottom:501.887867pt;}
.y76{bottom:509.113333pt;}
.y44{bottom:513.527968pt;}
.yaf{bottom:514.965200pt;}
.y121{bottom:521.365200pt;}
.y75{bottom:523.986933pt;}
.y43{bottom:525.796000pt;}
.y15{bottom:529.557200pt;}
.yfb{bottom:530.403867pt;}
.y120{bottom:536.213200pt;}
.y74{bottom:538.578933pt;}
.y42{bottom:538.596000pt;}
.y14{bottom:544.405200pt;}
.yfa{bottom:545.251867pt;}
.y11f{bottom:550.805200pt;}
.y73{bottom:553.426933pt;}
.y13{bottom:558.997200pt;}
.yf9{bottom:559.843867pt;}
.y11e{bottom:565.653200pt;}
.y72{bottom:568.018933pt;}
.y41{bottom:571.877536pt;}
.yae{bottom:573.845200pt;}
.yf8{bottom:574.691867pt;}
.y12{bottom:576.661200pt;}
.y11d{bottom:580.245200pt;}
.y71{bottom:582.866933pt;}
.y40{bottom:586.080928pt;}
.yad{bottom:588.437200pt;}
.yf7{bottom:589.283867pt;}
.y9c{bottom:594.325200pt;}
.y70{bottom:597.458933pt;}
.y3f{bottom:601.597600pt;}
.yac{bottom:603.317200pt;}
.yd5{bottom:603.363867pt;}
.y11{bottom:604.597200pt;}
.y6f{bottom:612.345333pt;}
.yf6{bottom:615.428000pt;}
.yab{bottom:617.909200pt;}
.y10{bottom:619.189200pt;}
.y9b{bottom:620.981200pt;}
.y3e{bottom:621.570464pt;}
.y6e{bottom:626.937333pt;}
.yd4{bottom:630.009333pt;}
.yf5{bottom:631.812000pt;}
.y10e{bottom:632.757333pt;}
.yf{bottom:634.037200pt;}
.yaa{bottom:635.573200pt;}
.y9a{bottom:635.829333pt;}
.y3d{bottom:640.925600pt;}
.y134{bottom:641.785333pt;}
.y6d{bottom:644.601333pt;}
.yd3{bottom:644.857333pt;}
.y10d{bottom:647.349333pt;}
.yf3{bottom:648.196000pt;}
.ye{bottom:648.629200pt;}
.y99{bottom:650.677333pt;}
.y133{bottom:656.377333pt;}
.y3c{bottom:658.946464pt;}
.yd2{bottom:659.705333pt;}
.y10c{bottom:662.197200pt;}
.yd{bottom:663.477200pt;}
.yf1{bottom:664.580000pt;}
.y98{bottom:665.269200pt;}
.y132{bottom:671.225333pt;}
.y6c{bottom:672.505333pt;}
.yd1{bottom:674.297333pt;}
.y10b{bottom:676.789200pt;}
.yc{bottom:678.069200pt;}
.y3b{bottom:678.301600pt;}
.y97{bottom:680.117200pt;}
.yf0{bottom:680.708000pt;}
.y131{bottom:685.817333pt;}
.y6b{bottom:687.097333pt;}
.yd0{bottom:689.145333pt;}
.y10a{bottom:691.658533pt;}
.yb{bottom:692.938667pt;}
.y96{bottom:694.730667pt;}
.y3a{bottom:696.339056pt;}
.yef{bottom:697.113333pt;}
.y130{bottom:700.690933pt;}
.y6a{bottom:701.970933pt;}
.ycf{bottom:703.762933pt;}
.y109{bottom:706.250533pt;}
.ya{bottom:707.530533pt;}
.y95{bottom:709.578667pt;}
.y39{bottom:710.424176pt;}
.yee{bottom:713.497333pt;}
.y12f{bottom:715.282933pt;}
.y69{bottom:716.562933pt;}
.yce{bottom:718.610933pt;}
.y108{bottom:721.098667pt;}
.y9{bottom:722.378533pt;}
.y94{bottom:724.170533pt;}
.y38{bottom:725.682800pt;}
.yec{bottom:729.881333pt;}
.y12e{bottom:730.130933pt;}
.y68{bottom:731.410933pt;}
.ycd{bottom:733.202933pt;}
.y107{bottom:735.690533pt;}
.y8{bottom:736.970533pt;}
.y93{bottom:739.018667pt;}
.y12d{bottom:744.722933pt;}
.y67{bottom:746.002933pt;}
.yeb{bottom:746.265333pt;}
.y37{bottom:746.521200pt;}
.ycc{bottom:748.050933pt;}
.y106{bottom:750.538533pt;}
.y7{bottom:751.818533pt;}
.y12c{bottom:759.570933pt;}
.y66{bottom:760.850933pt;}
.y36{bottom:761.113333pt;}
.ye8{bottom:762.649333pt;}
.y92{bottom:766.154667pt;}
.y6{bottom:766.410667pt;}
.y105{bottom:768.202667pt;}
.ycb{bottom:775.186933pt;}
.y65{bottom:775.442933pt;}
.y12b{bottom:777.234933pt;}
.ye6{bottom:779.033333pt;}
.y5{bottom:781.290533pt;}
.y64{bottom:790.329333pt;}
.ye4{bottom:795.449333pt;}
.y35{bottom:795.709552pt;}
.y4{bottom:795.882667pt;}
.y63{bottom:804.921333pt;}
.y3{bottom:810.730667pt;}
.y11c{bottom:811.498667pt;}
.y34{bottom:815.417200pt;}
.y62{bottom:819.769333pt;}
.ye3{bottom:820.537333pt;}
.hd{height:14.592000pt;}
.h10{height:14.848000pt;}
.h11{height:14.849333pt;}
.hf{height:14.873333pt;}
.ha{height:23.112000pt;}
.hc{height:32.246000pt;}
.h6{height:35.050000pt;}
.he{height:35.775000pt;}
.hb{height:37.737000pt;}
.h2{height:41.066667pt;}
.h7{height:41.331000pt;}
.h5{height:44.825000pt;}
.h4{height:44.925000pt;}
.h9{height:49.106500pt;}
.h8{height:60.199500pt;}
.h3{height:898.048000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w7{width:-113.610667pt;}
.w8{width:-60.086667pt;}
.w6{width:-60.085333pt;}
.w2{width:15.206667pt;}
.w5{width:52.505333pt;}
.w4{width:430.261333pt;}
.w3{width:483.785333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x2{left:-544.384533pt;}
.x2a{left:-541.824533pt;}
.x33{left:-530.560533pt;}
.x3{left:-529.280533pt;}
.x2c{left:-507.748800pt;}
.x27{left:-487.524800pt;}
.x32{left:-438.351467pt;}
.x2f{left:-403.535467pt;}
.x31{left:-371.759467pt;}
.x28{left:-349.231467pt;}
.x35{left:-328.495467pt;}
.x2d{left:-166.884800pt;}
.x2b{left:-154.852800pt;}
.x2e{left:-106.191467pt;}
.x34{left:-102.863467pt;}
.x30{left:-99.279467pt;}
.x29{left:-95.951467pt;}
.x0{left:0.000000pt;}
.x1a{left:2.047867pt;}
.x1f{left:6.399600pt;}
.x24{left:9.727600pt;}
.x21{left:13.311600pt;}
.x1e{left:14.847867pt;}
.x19{left:16.639600pt;}
.x1c{left:36.123600pt;}
.xf{left:60.339867pt;}
.x4{left:63.411733pt;}
.x9{left:65.974085pt;}
.x6{left:69.776533pt;}
.x11{left:75.546933pt;}
.x26{left:90.650933pt;}
.x23{left:105.520933pt;}
.xc{left:113.098944pt;}
.x5{left:114.593301pt;}
.x16{left:117.199600pt;}
.x20{left:140.336933pt;}
.x22{left:172.112933pt;}
.x17{left:194.640933pt;}
.x14{left:225.540800pt;}
.x7{left:233.108800pt;}
.x12{left:240.748000pt;}
.xd{left:248.324933pt;}
.xa{left:249.349445pt;}
.xe{left:253.700933pt;}
.xb{left:258.820800pt;}
.x8{left:266.756800pt;}
.x25{left:276.223131pt;}
.x1{left:291.802267pt;}
.x15{left:302.367424pt;}
.x13{left:317.569200pt;}
.x1d{left:376.987600pt;}
.x1b{left:389.019600pt;}
.x18{left:492.133333pt;}
.x10{left:589.517333pt;}
}




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