
    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_1e307fb4bd0ce42f9138677b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_21e4c8185a032b462d60f45c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.053223;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_fb16962aeb30b81ae2d1c431.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_ee352e228c2b9b2f7fb71226.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.727539;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_fa93ca62c4e2d5233bd7b052.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_2ed7abe1d7dddf69636d2893.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c1ace070f47006cff0cda0a5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.030762;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_88822239b8dace9be84b8377.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.756836;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_8fadb87baee36f45a63322d3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.128906;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_e6fdfcf07d8d4b2be81ea430.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727539;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);}
.v6{vertical-align:-149.904000px;}
.v7{vertical-align:-102.960000px;}
.v3{vertical-align:-81.360000px;}
.v4{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:27.480000px;}
.v2{vertical-align:43.200000px;}
.v1{vertical-align:46.800000px;}
.ls5{letter-spacing:-6.720000px;}
.ls21{letter-spacing:-6.180000px;}
.ls2a{letter-spacing:-5.814000px;}
.ls4{letter-spacing:-5.610000px;}
.ls2c{letter-spacing:-4.212000px;}
.ls19{letter-spacing:-0.580200px;}
.ls15{letter-spacing:-0.514200px;}
.ls45{letter-spacing:-0.415800px;}
.ls23{letter-spacing:-0.391800px;}
.ls25{letter-spacing:-0.366600px;}
.ls44{letter-spacing:-0.349800px;}
.ls48{letter-spacing:-0.302400px;}
.ls1c{letter-spacing:-0.295800px;}
.ls3b{letter-spacing:-0.289200px;}
.ls49{letter-spacing:-0.280200px;}
.ls3d{letter-spacing:-0.252000px;}
.ls4c{letter-spacing:-0.228000px;}
.ls46{letter-spacing:-0.208200px;}
.ls6{letter-spacing:-0.180000px;}
.ls26{letter-spacing:-0.129000px;}
.ls4f{letter-spacing:-0.094800px;}
.ls24{letter-spacing:-0.085200px;}
.ls4e{letter-spacing:-0.057600px;}
.lsf{letter-spacing:-0.032400px;}
.ls3{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.006060px;}
.ls43{letter-spacing:0.032400px;}
.ls0{letter-spacing:0.034560px;}
.ls20{letter-spacing:0.051120px;}
.ls1{letter-spacing:0.061800px;}
.ls27{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.139800px;}
.ls42{letter-spacing:0.142800px;}
.ls18{letter-spacing:0.157200px;}
.ls4a{letter-spacing:0.169800px;}
.ls40{letter-spacing:0.169920px;}
.ls47{letter-spacing:0.175200px;}
.ls7{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.205800px;}
.ls11{letter-spacing:0.212400px;}
.ls39{letter-spacing:0.216000px;}
.lse{letter-spacing:0.231000px;}
.ls50{letter-spacing:0.232560px;}
.ls13{letter-spacing:0.289200px;}
.ls4d{letter-spacing:0.306000px;}
.ls3e{letter-spacing:0.324000px;}
.ls2b{letter-spacing:0.360000px;}
.ls4b{letter-spacing:0.370200px;}
.ls33{letter-spacing:0.774000px;}
.ls1b{letter-spacing:0.858000px;}
.ls14{letter-spacing:0.924000px;}
.ls3c{letter-spacing:0.948000px;}
.ls34{letter-spacing:1.008000px;}
.ls35{letter-spacing:1.134000px;}
.ls38{letter-spacing:3.780000px;}
.ls30{letter-spacing:4.701600px;}
.ls41{letter-spacing:5.346000px;}
.ls16{letter-spacing:13.341600px;}
.lsa{letter-spacing:22.014000px;}
.ls3f{letter-spacing:24.786000px;}
.ls17{letter-spacing:29.901600px;}
.lsd{letter-spacing:32.094000px;}
.ls2f{letter-spacing:51.534000px;}
.ls36{letter-spacing:79.581600px;}
.ls1d{letter-spacing:112.116000px;}
.ls29{letter-spacing:119.253600px;}
.ls1f{letter-spacing:119.265600px;}
.ls28{letter-spacing:119.304000px;}
.ls1e{letter-spacing:119.316000px;}
.ls22{letter-spacing:119.373600px;}
.lsc{letter-spacing:119.424000px;}
.ls8{letter-spacing:159.624000px;}
.ls10{letter-spacing:166.053600px;}
.ls12{letter-spacing:166.104000px;}
.ls2d{letter-spacing:191.394000px;}
.ls2e{letter-spacing:206.373600px;}
.ls31{letter-spacing:206.424000px;}
.ls37{letter-spacing:244.026000px;}
.ls32{letter-spacing:340.445280px;}
.ls3a{letter-spacing:436.061280px;}
.ls2{letter-spacing:2155.101600px;}
.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;}
}
.ws35{word-spacing:-40.532400px;}
.ws20{word-spacing:-38.754000px;}
.ws22{word-spacing:-38.726400px;}
.ws10{word-spacing:-38.670000px;}
.ws15{word-spacing:-38.636400px;}
.ws1e{word-spacing:-38.520000px;}
.ws1c{word-spacing:-38.106000px;}
.wse{word-spacing:-38.035200px;}
.wsa{word-spacing:-38.009400px;}
.wsf{word-spacing:-37.958400px;}
.wsb{word-spacing:-37.951800px;}
.ws14{word-spacing:-37.935600px;}
.ws9{word-spacing:-37.918200px;}
.ws1f{word-spacing:-37.797120px;}
.ws13{word-spacing:-37.784460px;}
.wsd{word-spacing:-37.746000px;}
.wsc{word-spacing:-37.713600px;}
.ws18{word-spacing:-37.693200px;}
.ws1a{word-spacing:-37.617000px;}
.ws21{word-spacing:-37.456800px;}
.ws16{word-spacing:-37.450200px;}
.ws17{word-spacing:-37.386600px;}
.ws19{word-spacing:-37.379400px;}
.ws11{word-spacing:-37.231800px;}
.ws12{word-spacing:-37.198200px;}
.ws36{word-spacing:-32.400000px;}
.ws2f{word-spacing:-27.424200px;}
.ws32{word-spacing:-27.266400px;}
.ws2b{word-spacing:-27.229200px;}
.ws2e{word-spacing:-27.223800px;}
.ws26{word-spacing:-27.196800px;}
.ws27{word-spacing:-27.086400px;}
.ws30{word-spacing:-27.054000px;}
.ws33{word-spacing:-26.996400px;}
.ws34{word-spacing:-26.959200px;}
.ws2a{word-spacing:-26.878200px;}
.ws31{word-spacing:-26.858400px;}
.ws2d{word-spacing:-26.773800px;}
.ws2c{word-spacing:-26.751600px;}
.ws28{word-spacing:-26.704200px;}
.ws29{word-spacing:-26.670600px;}
.ws37{word-spacing:-25.920000px;}
.ws25{word-spacing:-24.624000px;}
.ws24{word-spacing:-24.516000px;}
.ws1{word-spacing:-24.332400px;}
.ws23{word-spacing:-24.048000px;}
.ws1b{word-spacing:-23.525520px;}
.ws2{word-spacing:-23.328000px;}
.ws3{word-spacing:-21.607800px;}
.ws7{word-spacing:-20.430000px;}
.ws5{word-spacing:-20.070000px;}
.ws1d{word-spacing:-19.206720px;}
.ws0{word-spacing:-18.722400px;}
.ws6{word-spacing:-13.478400px;}
.ws4{word-spacing:-13.446000px;}
.ws8{word-spacing:0.000000px;}
._36{margin-left:-51.095376px;}
._15{margin-left:-31.207680px;}
._3f{margin-left:-22.273152px;}
._2a{margin-left:-21.142176px;}
._41{margin-left:-19.582176px;}
._b{margin-left:-17.016144px;}
._5{margin-left:-14.833440px;}
._4{margin-left:-13.682880px;}
._3{margin-left:-11.438640px;}
._7{margin-left:-9.845136px;}
._1{margin-left:-7.719840px;}
._0{margin-left:-6.012000px;}
._2{margin-left:-4.914000px;}
._a{margin-left:-3.350400px;}
._6{margin-left:-1.782768px;}
._c{width:1.241184px;}
._9{width:2.392560px;}
._d{width:3.520224px;}
._8{width:5.468400px;}
._3b{width:8.454720px;}
._38{width:9.717168px;}
._40{width:11.205552px;}
._1c{width:12.990720px;}
._18{width:14.664720px;}
._19{width:15.734304px;}
._1f{width:17.224416px;}
._1a{width:18.681072px;}
._1b{width:19.699200px;}
._12{width:21.555216px;}
._11{width:22.625424px;}
._3e{width:24.530880px;}
._22{width:25.634880px;}
._20{width:27.546096px;}
._21{width:28.692576px;}
._1d{width:29.791776px;}
._1e{width:30.869616px;}
._16{width:32.228880px;}
._37{width:33.391152px;}
._2b{width:34.940256px;}
._39{width:36.146400px;}
._3a{width:38.770512px;}
._24{width:45.003648px;}
._e{width:46.368000px;}
._35{width:51.321600px;}
._34{width:52.505616px;}
._26{width:53.957664px;}
._25{width:55.091520px;}
._17{width:56.694240px;}
._29{width:58.219200px;}
._2d{width:61.584048px;}
._14{width:62.613888px;}
._13{width:63.780480px;}
._2f{width:65.600592px;}
._2e{width:66.968736px;}
._f{width:74.659584px;}
._10{width:75.766128px;}
._3c{width:79.501968px;}
._28{width:80.717232px;}
._27{width:81.747888px;}
._33{width:91.719624px;}
._32{width:93.390576px;}
._23{width:109.874880px;}
._2c{width:171.666816px;}
._31{width:191.432640px;}
._30{width:192.673440px;}
._3d{width:244.026000px;}
.fcb{color:rgb(53,70,117);}
.fca{color:rgb(255,204,0);}
.fc9{color:rgb(112,48,160);}
.fc4{color:transparent;}
.fc3{color:rgb(87,87,110);}
.fc2{color:rgb(165,57,38);}
.fc8{color:rgb(255,0,0);}
.fc6{color:rgb(253,160,35);}
.fc1{color:rgb(41,41,52);}
.fcc{color:rgb(64,64,64);}
.fc7{color:rgb(137,137,137);}
.fc5{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:48.240000px;}
.fs1d{font-size:48.384000px;}
.fs1a{font-size:54.000000px;}
.fs11{font-size:59.760000px;}
.fs14{font-size:59.904000px;}
.fse{font-size:72.000000px;}
.fs16{font-size:84.240000px;}
.fsd{font-size:87.840000px;}
.fs12{font-size:90.000000px;}
.fs13{font-size:90.144000px;}
.fsa{font-size:95.760000px;}
.fs9{font-size:103.680000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fs24{font-size:115.200000px;}
.fs2{font-size:120.240000px;}
.fs3{font-size:120.384000px;}
.fsc{font-size:131.760000px;}
.fsb{font-size:131.904000px;}
.fs15{font-size:142.560000px;}
.fs17{font-size:142.704000px;}
.fs7{font-size:144.000000px;}
.fs6{font-size:144.144000px;}
.fs20{font-size:149.760000px;}
.fs1f{font-size:149.904000px;}
.fs8{font-size:156.240000px;}
.fs1e{font-size:156.384000px;}
.fs0{font-size:167.760000px;}
.fs1{font-size:167.904000px;}
.fs1c{font-size:180.000000px;}
.fs1b{font-size:180.144000px;}
.fsf{font-size:192.240000px;}
.fs10{font-size:192.384000px;}
.fs21{font-size:360.144000px;}
.fs22{font-size:383.904000px;}
.fs23{font-size:432.144000px;}
.fs19{font-size:672.060000px;}
.yf0{bottom:-622.980000px;}
.yef{bottom:-464.190000px;}
.yee{bottom:-318.525000px;}
.y78{bottom:-197.535000px;}
.y109{bottom:-196.845000px;}
.yed{bottom:-174.855000px;}
.y108{bottom:-164.415000px;}
.y107{bottom:-132.012000px;}
.y106{bottom:-99.612000px;}
.y45{bottom:-87.516000px;}
.y105{bottom:-67.212000px;}
.y60{bottom:-65.916000px;}
.y6a{bottom:-51.696000px;}
.y77{bottom:-38.916000px;}
.yec{bottom:-36.216000px;}
.y104{bottom:-34.776000px;}
.y44{bottom:-27.036000px;}
.yd2{bottom:-17.352000px;}
.y35{bottom:-15.516000px;}
.y103{bottom:-2.376000px;}
.y0{bottom:0.000000px;}
.y76{bottom:11.484000px;}
.y102{bottom:30.024000px;}
.y4d{bottom:32.760000px;}
.y43{bottom:33.480000px;}
.y1e{bottom:33.660000px;}
.y5f{bottom:34.884000px;}
.y34{bottom:36.360000px;}
.yd1{bottom:57.564000px;}
.y75{bottom:61.884000px;}
.y101{bottom:62.424000px;}
.y1d{bottom:71.280000px;}
.ye6{bottom:79.884000px;}
.y5e{bottom:85.320000px;}
.y33{bottom:88.200000px;}
.y4c{bottom:88.740000px;}
.y11a{bottom:89.316000px;}
.y100{bottom:94.824000px;}
.y42{bottom:98.820000px;}
.y74{bottom:102.060000px;}
.yeb{bottom:102.420000px;}
.yd0{bottom:104.184000px;}
.ye5{bottom:106.164000px;}
.y69{bottom:106.920000px;}
.y1c{bottom:108.540000px;}
.y73{bottom:126.720000px;}
.yff{bottom:127.260000px;}
.yb5{bottom:127.368000px;}
.ya8{bottom:127.620000px;}
.y5d{bottom:135.720000px;}
.ye4{bottom:136.224000px;}
.y4b{bottom:139.140000px;}
.ycf{bottom:141.984000px;}
.y32{bottom:146.340000px;}
.y1b{bottom:153.720000px;}
.y9e{bottom:155.235000px;}
.y27{bottom:155.775000px;}
.y68{bottom:157.320000px;}
.y41{bottom:159.330000px;}
.yfe{bottom:159.660000px;}
.ye3{bottom:162.150000px;}
.ybe{bottom:168.405000px;}
.yce{bottom:172.230000px;}
.y72{bottom:177.120000px;}
.y95{bottom:183.420000px;}
.y5c{bottom:186.120000px;}
.yb4{bottom:187.845000px;}
.ya7{bottom:188.100000px;}
.y4a{bottom:189.570000px;}
.y26{bottom:189.615000px;}
.yfd{bottom:193.140000px;}
.y1a{bottom:193.350000px;}
.y31{bottom:196.770000px;}
.y7d{bottom:199.650000px;}
.y8a{bottom:200.700000px;}
.ycd{bottom:202.500000px;}
.y67{bottom:203.580000px;}
.y9d{bottom:206.895000px;}
.y40{bottom:209.730000px;}
.y25{bottom:209.775000px;}
.ye2{bottom:214.020000px;}
.y71{bottom:223.380000px;}
.y5b{bottom:226.290000px;}
.ybd{bottom:228.930000px;}
.yfc{bottom:229.140000px;}
.ycc{bottom:232.740000px;}
.y19{bottom:232.950000px;}
.y94{bottom:233.850000px;}
.ye1{bottom:235.800000px;}
.yb3{bottom:238.290000px;}
.y66{bottom:239.610000px;}
.y5a{bottom:240.690000px;}
.yea{bottom:241.050000px;}
.y24{bottom:243.645000px;}
.ye0{bottom:247.320000px;}
.ya6{bottom:248.610000px;}
.y49{bottom:250.050000px;}
.y30{bottom:257.250000px;}
.ydf{bottom:258.840000px;}
.y70{bottom:259.410000px;}
.y3f{bottom:260.130000px;}
.y89{bottom:261.210000px;}
.yfb{bottom:265.170000px;}
.y59{bottom:265.350000px;}
.y9c{bottom:267.405000px;}
.y23{bottom:270.645000px;}
.ycb{bottom:271.980000px;}
.y18{bottom:272.550000px;}
.yde{bottom:275.220000px;}
.ybc{bottom:279.330000px;}
.y65{bottom:279.750000px;}
.y93{bottom:284.070000px;}
.yb2{bottom:288.510000px;}
.y22{bottom:297.645000px;}
.y6f{bottom:299.550000px;}
.y7c{bottom:300.450000px;}
.yfa{bottom:301.170000px;}
.ya5{bottom:309.090000px;}
.y3e{bottom:310.575000px;}
.y119{bottom:310.605000px;}
.yca{bottom:311.220000px;}
.y88{bottom:311.610000px;}
.y17{bottom:312.150000px;}
.ydd{bottom:312.300000px;}
.y58{bottom:315.750000px;}
.yb1{bottom:316.050000px;}
.y2f{bottom:317.775000px;}
.y9b{bottom:317.805000px;}
.y64{bottom:319.890000px;}
.y21{bottom:321.945000px;}
.y110{bottom:328.170000px;}
.ybb{bottom:330.090000px;}
.y63{bottom:334.290000px;}
.yf9{bottom:337.170000px;}
.y6e{bottom:339.690000px;}
.yc9{bottom:341.490000px;}
.ydc{bottom:342.570000px;}
.y118{bottom:343.005000px;}
.yba{bottom:348.990000px;}
.y16{bottom:353.775000px;}
.y6d{bottom:354.090000px;}
.y57{bottom:355.890000px;}
.y62{bottom:358.950000px;}
.y48{bottom:360.975000px;}
.y87{bottom:361.875000px;}
.y92{bottom:362.055000px;}
.y10f{bottom:366.375000px;}
.yb0{bottom:366.450000px;}
.y2e{bottom:368.175000px;}
.y9a{bottom:368.205000px;}
.ya4{bottom:369.570000px;}
.y56{bottom:370.335000px;}
.y3d{bottom:371.055000px;}
.yc8{bottom:371.730000px;}
.ydb{bottom:372.810000px;}
.yf8{bottom:373.170000px;}
.yb9{bottom:376.560000px;}
.y117{bottom:376.845000px;}
.y6c{bottom:378.795000px;}
.ye9{bottom:379.695000px;}
.y86{bottom:389.415000px;}
.y55{bottom:394.995000px;}
.y15{bottom:399.495000px;}
.yda{bottom:403.050000px;}
.y10e{bottom:404.895000px;}
.y61{bottom:405.255000px;}
.yf7{bottom:409.215000px;}
.yc7{bottom:410.970000px;}
.y47{bottom:411.375000px;}
.y91{bottom:412.275000px;}
.yaf{bottom:416.700000px;}
.y6b{bottom:419.475000px;}
.y116{bottom:420.450000px;}
.y7b{bottom:421.455000px;}
.yb8{bottom:426.960000px;}
.y2d{bottom:428.655000px;}
.y99{bottom:428.730000px;}
.y10d{bottom:429.195000px;}
.ya3{bottom:430.095000px;}
.y3c{bottom:431.535000px;}
.y20{bottom:434.490000px;}
.y85{bottom:439.635000px;}
.y90{bottom:439.815000px;}
.yd9{bottom:442.290000px;}
.y14{bottom:442.695000px;}
.yae{bottom:444.240000px;}
.yf6{bottom:445.215000px;}
.y54{bottom:445.395000px;}
.y10c{bottom:447.555000px;}
.yc6{bottom:450.210000px;}
.y115{bottom:458.970000px;}
.y84{bottom:467.175000px;}
.y46{bottom:471.885000px;}
.yb7{bottom:477.180000px;}
.y98{bottom:479.130000px;}
.yc5{bottom:480.495000px;}
.yf5{bottom:481.215000px;}
.yd8{bottom:481.575000px;}
.y3b{bottom:481.965000px;}
.y13{bottom:483.945000px;}
.y53{bottom:485.535000px;}
.y2c{bottom:489.165000px;}
.y8f{bottom:490.035000px;}
.ya2{bottom:490.575000px;}
.y1f{bottom:492.090000px;}
.yad{bottom:494.460000px;}
.y114{bottom:494.970000px;}
.y52{bottom:499.935000px;}
.yc4{bottom:510.735000px;}
.yd7{bottom:511.815000px;}
.yf4{bottom:517.215000px;}
.y83{bottom:517.425000px;}
.y8e{bottom:517.605000px;}
.ye8{bottom:518.325000px;}
.yac{bottom:522.030000px;}
.y51{bottom:524.625000px;}
.y113{bottom:529.890000px;}
.y3a{bottom:532.365000px;}
.y2b{bottom:539.565000px;}
.y97{bottom:539.640000px;}
.yc3{bottom:540.975000px;}
.yd6{bottom:542.055000px;}
.y7a{bottom:542.445000px;}
.y82{bottom:544.965000px;}
.ya1{bottom:551.085000px;}
.yf3{bottom:553.245000px;}
.y112{bottom:562.320000px;}
.y8d{bottom:567.825000px;}
.yc2{bottom:571.215000px;}
.yab{bottom:572.250000px;}
.yd5{bottom:572.295000px;}
.y50{bottom:575.025000px;}
.y39{bottom:582.765000px;}
.yf2{bottom:589.245000px;}
.y2a{bottom:589.965000px;}
.y79{bottom:592.845000px;}
.y81{bottom:595.365000px;}
.y111{bottom:597.780000px;}
.yaa{bottom:599.790000px;}
.y96{bottom:600.120000px;}
.yc1{bottom:601.455000px;}
.ya0{bottom:601.485000px;}
.yd4{bottom:602.535000px;}
.y12{bottom:614.190000px;}
.yf1{bottom:625.245000px;}
.y4f{bottom:625.425000px;}
.y38{bottom:638.430000px;}
.yc0{bottom:640.005000px;}
.yd3{bottom:640.725000px;}
.y29{bottom:644.190000px;}
.y11{bottom:646.590000px;}
.y80{bottom:657.105000px;}
.y10b{bottom:657.720000px;}
.y8c{bottom:657.825000px;}
.ye7{bottom:676.050000px;}
.y10{bottom:680.115000px;}
.y10a{bottom:711.720000px;}
.y4e{bottom:712.950000px;}
.ybf{bottom:713.670000px;}
.y9f{bottom:713.700000px;}
.ya9{bottom:714.420000px;}
.y7f{bottom:714.750000px;}
.yb6{bottom:715.140000px;}
.yf{bottom:716.115000px;}
.y37{bottom:718.920000px;}
.y28{bottom:720.360000px;}
.ye{bottom:752.115000px;}
.y8b{bottom:764.430000px;}
.y7e{bottom:766.230000px;}
.y36{bottom:780.660000px;}
.yd{bottom:788.115000px;}
.yc{bottom:824.145000px;}
.yb{bottom:860.145000px;}
.ya{bottom:896.145000px;}
.y9{bottom:936.285000px;}
.y8{bottom:986.730000px;}
.y7{bottom:1037.130000px;}
.y6{bottom:1087.530000px;}
.y5{bottom:1137.960000px;}
.y4{bottom:1188.360000px;}
.y3{bottom:1238.760000px;}
.y2{bottom:1289.190000px;}
.y1{bottom:1339.590000px;}
.h1b{height:36.180000px;}
.h24{height:36.288000px;}
.h21{height:39.548320px;}
.h1f{height:40.500000px;}
.hf{height:44.820000px;}
.hc{height:59.027344px;}
.h11{height:67.500000px;}
.h10{height:72.408000px;}
.h33{height:75.093750px;}
.h38{height:77.308594px;}
.h2b{height:81.000000px;}
.h2c{height:81.108000px;}
.h2d{height:86.585445px;}
.h16{height:87.859687px;}
.h6{height:88.541016px;}
.h5{height:88.659070px;}
.h31{height:89.827734px;}
.h1c{height:90.180000px;}
.h1d{height:90.288000px;}
.h32{height:91.614375px;}
.h37{height:94.419562px;}
.h3{height:98.575664px;}
.h4{height:98.693719px;}
.h8{height:108.000000px;}
.hb{height:108.020039px;}
.h7{height:108.108000px;}
.ha{height:108.138094px;}
.h2a{height:112.320000px;}
.h29{height:112.428000px;}
.h34{height:112.640625px;}
.h27{height:117.180000px;}
.h26{height:117.288000px;}
.h36{height:118.054688px;}
.h9{height:124.560000px;}
.h14{height:125.820000px;}
.h13{height:125.928000px;}
.h39{height:135.000000px;}
.h1{height:137.533711px;}
.h35{height:137.571750px;}
.h2{height:137.651766px;}
.h25{height:147.568359px;}
.h23{height:147.686414px;}
.h12{height:148.009309px;}
.h15{height:148.157318px;}
.hd{height:157.603008px;}
.he{height:157.721063px;}
.h28{height:160.590100px;}
.h18{height:172.430844px;}
.h19{height:172.578854px;}
.h1a{height:174.968437px;}
.h22{height:187.734375px;}
.h20{height:187.884563px;}
.h17{height:200.500313px;}
.h2e{height:370.171281px;}
.h2f{height:394.592816px;}
.h30{height:444.175935px;}
.h1e{height:504.045000px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x36{left:37.332000px;}
.x35{left:79.452000px;}
.x11{left:82.800000px;}
.x26{left:89.568000px;}
.x17{left:92.880000px;}
.x15{left:104.400000px;}
.x19{left:111.672000px;}
.x2f{left:115.200000px;}
.x1d{left:121.752000px;}
.x23{left:125.640000px;}
.x12{left:135.180000px;}
.x8{left:140.040000px;}
.x1a{left:143.532000px;}
.x13{left:146.880000px;}
.x27{left:153.645000px;}
.x1e{left:161.715000px;}
.x32{left:179.205000px;}
.x1b{left:184.035000px;}
.x7{left:185.145000px;}
.x14{left:189.210000px;}
.x28{left:195.765000px;}
.x1c{left:197.895000px;}
.x20{left:198.930000px;}
.x30{left:200.370000px;}
.x2d{left:231.330000px;}
.x29{left:238.065000px;}
.x6{left:242.025000px;}
.x9{left:349.050000px;}
.xd{left:366.150000px;}
.xc{left:378.030000px;}
.x2e{left:397.545000px;}
.x25{left:409.605000px;}
.x31{left:413.430000px;}
.x2a{left:428.505000px;}
.x2b{left:446.580000px;}
.x22{left:450.330000px;}
.x10{left:463.935000px;}
.x2c{left:465.300000px;}
.xb{left:467.850000px;}
.x18{left:480.960000px;}
.x3{left:512.565000px;}
.xf{left:516.990000px;}
.x33{left:552.600000px;}
.xe{left:590.835000px;}
.x2{left:603.825000px;}
.x4{left:608.145000px;}
.x24{left:704.130000px;}
.x21{left:720.000000px;}
.x1f{left:726.555000px;}
.x34{left:729.510000px;}
.x5{left:731.340000px;}
.xa{left:734.295000px;}
.x1{left:735.990000px;}
.x37{left:918.795000px;}
.x16{left:1210.935000px;}
@media print{
.v6{vertical-align:-133.248000pt;}
.v7{vertical-align:-91.520000pt;}
.v3{vertical-align:-72.320000pt;}
.v4{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:24.426667pt;}
.v2{vertical-align:38.400000pt;}
.v1{vertical-align:41.600000pt;}
.ls5{letter-spacing:-5.973333pt;}
.ls21{letter-spacing:-5.493333pt;}
.ls2a{letter-spacing:-5.168000pt;}
.ls4{letter-spacing:-4.986667pt;}
.ls2c{letter-spacing:-3.744000pt;}
.ls19{letter-spacing:-0.515733pt;}
.ls15{letter-spacing:-0.457067pt;}
.ls45{letter-spacing:-0.369600pt;}
.ls23{letter-spacing:-0.348267pt;}
.ls25{letter-spacing:-0.325867pt;}
.ls44{letter-spacing:-0.310933pt;}
.ls48{letter-spacing:-0.268800pt;}
.ls1c{letter-spacing:-0.262933pt;}
.ls3b{letter-spacing:-0.257067pt;}
.ls49{letter-spacing:-0.249067pt;}
.ls3d{letter-spacing:-0.224000pt;}
.ls4c{letter-spacing:-0.202667pt;}
.ls46{letter-spacing:-0.185067pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls26{letter-spacing:-0.114667pt;}
.ls4f{letter-spacing:-0.084267pt;}
.ls24{letter-spacing:-0.075733pt;}
.ls4e{letter-spacing:-0.051200pt;}
.lsf{letter-spacing:-0.028800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.005387pt;}
.ls43{letter-spacing:0.028800pt;}
.ls0{letter-spacing:0.030720pt;}
.ls20{letter-spacing:0.045440pt;}
.ls1{letter-spacing:0.054933pt;}
.ls27{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.124267pt;}
.ls42{letter-spacing:0.126933pt;}
.ls18{letter-spacing:0.139733pt;}
.ls4a{letter-spacing:0.150933pt;}
.ls40{letter-spacing:0.151040pt;}
.ls47{letter-spacing:0.155733pt;}
.ls7{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.182933pt;}
.ls11{letter-spacing:0.188800pt;}
.ls39{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.205333pt;}
.ls50{letter-spacing:0.206720pt;}
.ls13{letter-spacing:0.257067pt;}
.ls4d{letter-spacing:0.272000pt;}
.ls3e{letter-spacing:0.288000pt;}
.ls2b{letter-spacing:0.320000pt;}
.ls4b{letter-spacing:0.329067pt;}
.ls33{letter-spacing:0.688000pt;}
.ls1b{letter-spacing:0.762667pt;}
.ls14{letter-spacing:0.821333pt;}
.ls3c{letter-spacing:0.842667pt;}
.ls34{letter-spacing:0.896000pt;}
.ls35{letter-spacing:1.008000pt;}
.ls38{letter-spacing:3.360000pt;}
.ls30{letter-spacing:4.179200pt;}
.ls41{letter-spacing:4.752000pt;}
.ls16{letter-spacing:11.859200pt;}
.lsa{letter-spacing:19.568000pt;}
.ls3f{letter-spacing:22.032000pt;}
.ls17{letter-spacing:26.579200pt;}
.lsd{letter-spacing:28.528000pt;}
.ls2f{letter-spacing:45.808000pt;}
.ls36{letter-spacing:70.739200pt;}
.ls1d{letter-spacing:99.658667pt;}
.ls29{letter-spacing:106.003200pt;}
.ls1f{letter-spacing:106.013867pt;}
.ls28{letter-spacing:106.048000pt;}
.ls1e{letter-spacing:106.058667pt;}
.ls22{letter-spacing:106.109867pt;}
.lsc{letter-spacing:106.154667pt;}
.ls8{letter-spacing:141.888000pt;}
.ls10{letter-spacing:147.603200pt;}
.ls12{letter-spacing:147.648000pt;}
.ls2d{letter-spacing:170.128000pt;}
.ls2e{letter-spacing:183.443200pt;}
.ls31{letter-spacing:183.488000pt;}
.ls37{letter-spacing:216.912000pt;}
.ls32{letter-spacing:302.618027pt;}
.ls3a{letter-spacing:387.610027pt;}
.ls2{letter-spacing:1915.645867pt;}
.ws35{word-spacing:-36.028800pt;}
.ws20{word-spacing:-34.448000pt;}
.ws22{word-spacing:-34.423467pt;}
.ws10{word-spacing:-34.373333pt;}
.ws15{word-spacing:-34.343467pt;}
.ws1e{word-spacing:-34.240000pt;}
.ws1c{word-spacing:-33.872000pt;}
.wse{word-spacing:-33.809067pt;}
.wsa{word-spacing:-33.786133pt;}
.wsf{word-spacing:-33.740800pt;}
.wsb{word-spacing:-33.734933pt;}
.ws14{word-spacing:-33.720533pt;}
.ws9{word-spacing:-33.705067pt;}
.ws1f{word-spacing:-33.597440pt;}
.ws13{word-spacing:-33.586187pt;}
.wsd{word-spacing:-33.552000pt;}
.wsc{word-spacing:-33.523200pt;}
.ws18{word-spacing:-33.505067pt;}
.ws1a{word-spacing:-33.437333pt;}
.ws21{word-spacing:-33.294933pt;}
.ws16{word-spacing:-33.289067pt;}
.ws17{word-spacing:-33.232533pt;}
.ws19{word-spacing:-33.226133pt;}
.ws11{word-spacing:-33.094933pt;}
.ws12{word-spacing:-33.065067pt;}
.ws36{word-spacing:-28.800000pt;}
.ws2f{word-spacing:-24.377067pt;}
.ws32{word-spacing:-24.236800pt;}
.ws2b{word-spacing:-24.203733pt;}
.ws2e{word-spacing:-24.198933pt;}
.ws26{word-spacing:-24.174933pt;}
.ws27{word-spacing:-24.076800pt;}
.ws30{word-spacing:-24.048000pt;}
.ws33{word-spacing:-23.996800pt;}
.ws34{word-spacing:-23.963733pt;}
.ws2a{word-spacing:-23.891733pt;}
.ws31{word-spacing:-23.874133pt;}
.ws2d{word-spacing:-23.798933pt;}
.ws2c{word-spacing:-23.779200pt;}
.ws28{word-spacing:-23.737067pt;}
.ws29{word-spacing:-23.707200pt;}
.ws37{word-spacing:-23.040000pt;}
.ws25{word-spacing:-21.888000pt;}
.ws24{word-spacing:-21.792000pt;}
.ws1{word-spacing:-21.628800pt;}
.ws23{word-spacing:-21.376000pt;}
.ws1b{word-spacing:-20.911573pt;}
.ws2{word-spacing:-20.736000pt;}
.ws3{word-spacing:-19.206933pt;}
.ws7{word-spacing:-18.160000pt;}
.ws5{word-spacing:-17.840000pt;}
.ws1d{word-spacing:-17.072640pt;}
.ws0{word-spacing:-16.642133pt;}
.ws6{word-spacing:-11.980800pt;}
.ws4{word-spacing:-11.952000pt;}
.ws8{word-spacing:0.000000pt;}
._36{margin-left:-45.418112pt;}
._15{margin-left:-27.740160pt;}
._3f{margin-left:-19.798357pt;}
._2a{margin-left:-18.793045pt;}
._41{margin-left:-17.406379pt;}
._b{margin-left:-15.125461pt;}
._5{margin-left:-13.185280pt;}
._4{margin-left:-12.162560pt;}
._3{margin-left:-10.167680pt;}
._7{margin-left:-8.751232pt;}
._1{margin-left:-6.862080pt;}
._0{margin-left:-5.344000pt;}
._2{margin-left:-4.368000pt;}
._a{margin-left:-2.978133pt;}
._6{margin-left:-1.584683pt;}
._c{width:1.103275pt;}
._9{width:2.126720pt;}
._d{width:3.129088pt;}
._8{width:4.860800pt;}
._3b{width:7.515307pt;}
._38{width:8.637483pt;}
._40{width:9.960491pt;}
._1c{width:11.547307pt;}
._18{width:13.035307pt;}
._19{width:13.986048pt;}
._1f{width:15.310592pt;}
._1a{width:16.605397pt;}
._1b{width:17.510400pt;}
._12{width:19.160192pt;}
._11{width:20.111488pt;}
._3e{width:21.805227pt;}
._22{width:22.786560pt;}
._20{width:24.485419pt;}
._21{width:25.504512pt;}
._1d{width:26.481579pt;}
._1e{width:27.439659pt;}
._16{width:28.647893pt;}
._37{width:29.681024pt;}
._2b{width:31.058005pt;}
._39{width:32.130133pt;}
._3a{width:34.462677pt;}
._24{width:40.003243pt;}
._e{width:41.216000pt;}
._35{width:45.619200pt;}
._34{width:46.671659pt;}
._26{width:47.962368pt;}
._25{width:48.970240pt;}
._17{width:50.394880pt;}
._29{width:51.750400pt;}
._2d{width:54.741376pt;}
._14{width:55.656789pt;}
._13{width:56.693760pt;}
._2f{width:58.311637pt;}
._2e{width:59.527765pt;}
._f{width:66.364075pt;}
._10{width:67.347669pt;}
._3c{width:70.668416pt;}
._28{width:71.748651pt;}
._27{width:72.664789pt;}
._33{width:81.528555pt;}
._32{width:83.013845pt;}
._23{width:97.666560pt;}
._2c{width:152.592725pt;}
._31{width:170.162347pt;}
._30{width:171.265280pt;}
._3d{width:216.912000pt;}
.fs18{font-size:42.880000pt;}
.fs1d{font-size:43.008000pt;}
.fs1a{font-size:48.000000pt;}
.fs11{font-size:53.120000pt;}
.fs14{font-size:53.248000pt;}
.fse{font-size:64.000000pt;}
.fs16{font-size:74.880000pt;}
.fsd{font-size:78.080000pt;}
.fs12{font-size:80.000000pt;}
.fs13{font-size:80.128000pt;}
.fsa{font-size:85.120000pt;}
.fs9{font-size:92.160000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fs24{font-size:102.400000pt;}
.fs2{font-size:106.880000pt;}
.fs3{font-size:107.008000pt;}
.fsc{font-size:117.120000pt;}
.fsb{font-size:117.248000pt;}
.fs15{font-size:126.720000pt;}
.fs17{font-size:126.848000pt;}
.fs7{font-size:128.000000pt;}
.fs6{font-size:128.128000pt;}
.fs20{font-size:133.120000pt;}
.fs1f{font-size:133.248000pt;}
.fs8{font-size:138.880000pt;}
.fs1e{font-size:139.008000pt;}
.fs0{font-size:149.120000pt;}
.fs1{font-size:149.248000pt;}
.fs1c{font-size:160.000000pt;}
.fs1b{font-size:160.128000pt;}
.fsf{font-size:170.880000pt;}
.fs10{font-size:171.008000pt;}
.fs21{font-size:320.128000pt;}
.fs22{font-size:341.248000pt;}
.fs23{font-size:384.128000pt;}
.fs19{font-size:597.386667pt;}
.yf0{bottom:-553.760000pt;}
.yef{bottom:-412.613333pt;}
.yee{bottom:-283.133333pt;}
.y78{bottom:-175.586667pt;}
.y109{bottom:-174.973333pt;}
.yed{bottom:-155.426667pt;}
.y108{bottom:-146.146667pt;}
.y107{bottom:-117.344000pt;}
.y106{bottom:-88.544000pt;}
.y45{bottom:-77.792000pt;}
.y105{bottom:-59.744000pt;}
.y60{bottom:-58.592000pt;}
.y6a{bottom:-45.952000pt;}
.y77{bottom:-34.592000pt;}
.yec{bottom:-32.192000pt;}
.y104{bottom:-30.912000pt;}
.y44{bottom:-24.032000pt;}
.yd2{bottom:-15.424000pt;}
.y35{bottom:-13.792000pt;}
.y103{bottom:-2.112000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:10.208000pt;}
.y102{bottom:26.688000pt;}
.y4d{bottom:29.120000pt;}
.y43{bottom:29.760000pt;}
.y1e{bottom:29.920000pt;}
.y5f{bottom:31.008000pt;}
.y34{bottom:32.320000pt;}
.yd1{bottom:51.168000pt;}
.y75{bottom:55.008000pt;}
.y101{bottom:55.488000pt;}
.y1d{bottom:63.360000pt;}
.ye6{bottom:71.008000pt;}
.y5e{bottom:75.840000pt;}
.y33{bottom:78.400000pt;}
.y4c{bottom:78.880000pt;}
.y11a{bottom:79.392000pt;}
.y100{bottom:84.288000pt;}
.y42{bottom:87.840000pt;}
.y74{bottom:90.720000pt;}
.yeb{bottom:91.040000pt;}
.yd0{bottom:92.608000pt;}
.ye5{bottom:94.368000pt;}
.y69{bottom:95.040000pt;}
.y1c{bottom:96.480000pt;}
.y73{bottom:112.640000pt;}
.yff{bottom:113.120000pt;}
.yb5{bottom:113.216000pt;}
.ya8{bottom:113.440000pt;}
.y5d{bottom:120.640000pt;}
.ye4{bottom:121.088000pt;}
.y4b{bottom:123.680000pt;}
.ycf{bottom:126.208000pt;}
.y32{bottom:130.080000pt;}
.y1b{bottom:136.640000pt;}
.y9e{bottom:137.986667pt;}
.y27{bottom:138.466667pt;}
.y68{bottom:139.840000pt;}
.y41{bottom:141.626667pt;}
.yfe{bottom:141.920000pt;}
.ye3{bottom:144.133333pt;}
.ybe{bottom:149.693333pt;}
.yce{bottom:153.093333pt;}
.y72{bottom:157.440000pt;}
.y95{bottom:163.040000pt;}
.y5c{bottom:165.440000pt;}
.yb4{bottom:166.973333pt;}
.ya7{bottom:167.200000pt;}
.y4a{bottom:168.506667pt;}
.y26{bottom:168.546667pt;}
.yfd{bottom:171.680000pt;}
.y1a{bottom:171.866667pt;}
.y31{bottom:174.906667pt;}
.y7d{bottom:177.466667pt;}
.y8a{bottom:178.400000pt;}
.ycd{bottom:180.000000pt;}
.y67{bottom:180.960000pt;}
.y9d{bottom:183.906667pt;}
.y40{bottom:186.426667pt;}
.y25{bottom:186.466667pt;}
.ye2{bottom:190.240000pt;}
.y71{bottom:198.560000pt;}
.y5b{bottom:201.146667pt;}
.ybd{bottom:203.493333pt;}
.yfc{bottom:203.680000pt;}
.ycc{bottom:206.880000pt;}
.y19{bottom:207.066667pt;}
.y94{bottom:207.866667pt;}
.ye1{bottom:209.600000pt;}
.yb3{bottom:211.813333pt;}
.y66{bottom:212.986667pt;}
.y5a{bottom:213.946667pt;}
.yea{bottom:214.266667pt;}
.y24{bottom:216.573333pt;}
.ye0{bottom:219.840000pt;}
.ya6{bottom:220.986667pt;}
.y49{bottom:222.266667pt;}
.y30{bottom:228.666667pt;}
.ydf{bottom:230.080000pt;}
.y70{bottom:230.586667pt;}
.y3f{bottom:231.226667pt;}
.y89{bottom:232.186667pt;}
.yfb{bottom:235.706667pt;}
.y59{bottom:235.866667pt;}
.y9c{bottom:237.693333pt;}
.y23{bottom:240.573333pt;}
.ycb{bottom:241.760000pt;}
.y18{bottom:242.266667pt;}
.yde{bottom:244.640000pt;}
.ybc{bottom:248.293333pt;}
.y65{bottom:248.666667pt;}
.y93{bottom:252.506667pt;}
.yb2{bottom:256.453333pt;}
.y22{bottom:264.573333pt;}
.y6f{bottom:266.266667pt;}
.y7c{bottom:267.066667pt;}
.yfa{bottom:267.706667pt;}
.ya5{bottom:274.746667pt;}
.y3e{bottom:276.066667pt;}
.y119{bottom:276.093333pt;}
.yca{bottom:276.640000pt;}
.y88{bottom:276.986667pt;}
.y17{bottom:277.466667pt;}
.ydd{bottom:277.600000pt;}
.y58{bottom:280.666667pt;}
.yb1{bottom:280.933333pt;}
.y2f{bottom:282.466667pt;}
.y9b{bottom:282.493333pt;}
.y64{bottom:284.346667pt;}
.y21{bottom:286.173333pt;}
.y110{bottom:291.706667pt;}
.ybb{bottom:293.413333pt;}
.y63{bottom:297.146667pt;}
.yf9{bottom:299.706667pt;}
.y6e{bottom:301.946667pt;}
.yc9{bottom:303.546667pt;}
.ydc{bottom:304.506667pt;}
.y118{bottom:304.893333pt;}
.yba{bottom:310.213333pt;}
.y16{bottom:314.466667pt;}
.y6d{bottom:314.746667pt;}
.y57{bottom:316.346667pt;}
.y62{bottom:319.066667pt;}
.y48{bottom:320.866667pt;}
.y87{bottom:321.666667pt;}
.y92{bottom:321.826667pt;}
.y10f{bottom:325.666667pt;}
.yb0{bottom:325.733333pt;}
.y2e{bottom:327.266667pt;}
.y9a{bottom:327.293333pt;}
.ya4{bottom:328.506667pt;}
.y56{bottom:329.186667pt;}
.y3d{bottom:329.826667pt;}
.yc8{bottom:330.426667pt;}
.ydb{bottom:331.386667pt;}
.yf8{bottom:331.706667pt;}
.yb9{bottom:334.720000pt;}
.y117{bottom:334.973333pt;}
.y6c{bottom:336.706667pt;}
.ye9{bottom:337.506667pt;}
.y86{bottom:346.146667pt;}
.y55{bottom:351.106667pt;}
.y15{bottom:355.106667pt;}
.yda{bottom:358.266667pt;}
.y10e{bottom:359.906667pt;}
.y61{bottom:360.226667pt;}
.yf7{bottom:363.746667pt;}
.yc7{bottom:365.306667pt;}
.y47{bottom:365.666667pt;}
.y91{bottom:366.466667pt;}
.yaf{bottom:370.400000pt;}
.y6b{bottom:372.866667pt;}
.y116{bottom:373.733333pt;}
.y7b{bottom:374.626667pt;}
.yb8{bottom:379.520000pt;}
.y2d{bottom:381.026667pt;}
.y99{bottom:381.093333pt;}
.y10d{bottom:381.506667pt;}
.ya3{bottom:382.306667pt;}
.y3c{bottom:383.586667pt;}
.y20{bottom:386.213333pt;}
.y85{bottom:390.786667pt;}
.y90{bottom:390.946667pt;}
.yd9{bottom:393.146667pt;}
.y14{bottom:393.506667pt;}
.yae{bottom:394.880000pt;}
.yf6{bottom:395.746667pt;}
.y54{bottom:395.906667pt;}
.y10c{bottom:397.826667pt;}
.yc6{bottom:400.186667pt;}
.y115{bottom:407.973333pt;}
.y84{bottom:415.266667pt;}
.y46{bottom:419.453333pt;}
.yb7{bottom:424.160000pt;}
.y98{bottom:425.893333pt;}
.yc5{bottom:427.106667pt;}
.yf5{bottom:427.746667pt;}
.yd8{bottom:428.066667pt;}
.y3b{bottom:428.413333pt;}
.y13{bottom:430.173333pt;}
.y53{bottom:431.586667pt;}
.y2c{bottom:434.813333pt;}
.y8f{bottom:435.586667pt;}
.ya2{bottom:436.066667pt;}
.y1f{bottom:437.413333pt;}
.yad{bottom:439.520000pt;}
.y114{bottom:439.973333pt;}
.y52{bottom:444.386667pt;}
.yc4{bottom:453.986667pt;}
.yd7{bottom:454.946667pt;}
.yf4{bottom:459.746667pt;}
.y83{bottom:459.933333pt;}
.y8e{bottom:460.093333pt;}
.ye8{bottom:460.733333pt;}
.yac{bottom:464.026667pt;}
.y51{bottom:466.333333pt;}
.y113{bottom:471.013333pt;}
.y3a{bottom:473.213333pt;}
.y2b{bottom:479.613333pt;}
.y97{bottom:479.680000pt;}
.yc3{bottom:480.866667pt;}
.yd6{bottom:481.826667pt;}
.y7a{bottom:482.173333pt;}
.y82{bottom:484.413333pt;}
.ya1{bottom:489.853333pt;}
.yf3{bottom:491.773333pt;}
.y112{bottom:499.840000pt;}
.y8d{bottom:504.733333pt;}
.yc2{bottom:507.746667pt;}
.yab{bottom:508.666667pt;}
.yd5{bottom:508.706667pt;}
.y50{bottom:511.133333pt;}
.y39{bottom:518.013333pt;}
.yf2{bottom:523.773333pt;}
.y2a{bottom:524.413333pt;}
.y79{bottom:526.973333pt;}
.y81{bottom:529.213333pt;}
.y111{bottom:531.360000pt;}
.yaa{bottom:533.146667pt;}
.y96{bottom:533.440000pt;}
.yc1{bottom:534.626667pt;}
.ya0{bottom:534.653333pt;}
.yd4{bottom:535.586667pt;}
.y12{bottom:545.946667pt;}
.yf1{bottom:555.773333pt;}
.y4f{bottom:555.933333pt;}
.y38{bottom:567.493333pt;}
.yc0{bottom:568.893333pt;}
.yd3{bottom:569.533333pt;}
.y29{bottom:572.613333pt;}
.y11{bottom:574.746667pt;}
.y80{bottom:584.093333pt;}
.y10b{bottom:584.640000pt;}
.y8c{bottom:584.733333pt;}
.ye7{bottom:600.933333pt;}
.y10{bottom:604.546667pt;}
.y10a{bottom:632.640000pt;}
.y4e{bottom:633.733333pt;}
.ybf{bottom:634.373333pt;}
.y9f{bottom:634.400000pt;}
.ya9{bottom:635.040000pt;}
.y7f{bottom:635.333333pt;}
.yb6{bottom:635.680000pt;}
.yf{bottom:636.546667pt;}
.y37{bottom:639.040000pt;}
.y28{bottom:640.320000pt;}
.ye{bottom:668.546667pt;}
.y8b{bottom:679.493333pt;}
.y7e{bottom:681.093333pt;}
.y36{bottom:693.920000pt;}
.yd{bottom:700.546667pt;}
.yc{bottom:732.573333pt;}
.yb{bottom:764.573333pt;}
.ya{bottom:796.573333pt;}
.y9{bottom:832.253333pt;}
.y8{bottom:877.093333pt;}
.y7{bottom:921.893333pt;}
.y6{bottom:966.693333pt;}
.y5{bottom:1011.520000pt;}
.y4{bottom:1056.320000pt;}
.y3{bottom:1101.120000pt;}
.y2{bottom:1145.946667pt;}
.y1{bottom:1190.746667pt;}
.h1b{height:32.160000pt;}
.h24{height:32.256000pt;}
.h21{height:35.154062pt;}
.h1f{height:36.000000pt;}
.hf{height:39.840000pt;}
.hc{height:52.468750pt;}
.h11{height:60.000000pt;}
.h10{height:64.362667pt;}
.h33{height:66.750000pt;}
.h38{height:68.718750pt;}
.h2b{height:72.000000pt;}
.h2c{height:72.096000pt;}
.h2d{height:76.964840pt;}
.h16{height:78.097500pt;}
.h6{height:78.703125pt;}
.h5{height:78.808063pt;}
.h31{height:79.846875pt;}
.h1c{height:80.160000pt;}
.h1d{height:80.256000pt;}
.h32{height:81.435000pt;}
.h37{height:83.928500pt;}
.h3{height:87.622812pt;}
.h4{height:87.727750pt;}
.h8{height:96.000000pt;}
.hb{height:96.017812pt;}
.h7{height:96.096000pt;}
.ha{height:96.122750pt;}
.h2a{height:99.840000pt;}
.h29{height:99.936000pt;}
.h34{height:100.125000pt;}
.h27{height:104.160000pt;}
.h26{height:104.256000pt;}
.h36{height:104.937500pt;}
.h9{height:110.720000pt;}
.h14{height:111.840000pt;}
.h13{height:111.936000pt;}
.h39{height:120.000000pt;}
.h1{height:122.252187pt;}
.h35{height:122.286000pt;}
.h2{height:122.357125pt;}
.h25{height:131.171875pt;}
.h23{height:131.276813pt;}
.h12{height:131.563830pt;}
.h15{height:131.695394pt;}
.hd{height:140.091563pt;}
.he{height:140.196500pt;}
.h28{height:142.746755pt;}
.h18{height:153.271862pt;}
.h19{height:153.403426pt;}
.h1a{height:155.527500pt;}
.h22{height:166.875000pt;}
.h20{height:167.008500pt;}
.h17{height:178.222500pt;}
.h2e{height:329.041138pt;}
.h2f{height:350.749170pt;}
.h30{height:394.823053pt;}
.h1e{height:448.040000pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x36{left:33.184000pt;}
.x35{left:70.624000pt;}
.x11{left:73.600000pt;}
.x26{left:79.616000pt;}
.x17{left:82.560000pt;}
.x15{left:92.800000pt;}
.x19{left:99.264000pt;}
.x2f{left:102.400000pt;}
.x1d{left:108.224000pt;}
.x23{left:111.680000pt;}
.x12{left:120.160000pt;}
.x8{left:124.480000pt;}
.x1a{left:127.584000pt;}
.x13{left:130.560000pt;}
.x27{left:136.573333pt;}
.x1e{left:143.746667pt;}
.x32{left:159.293333pt;}
.x1b{left:163.586667pt;}
.x7{left:164.573333pt;}
.x14{left:168.186667pt;}
.x28{left:174.013333pt;}
.x1c{left:175.906667pt;}
.x20{left:176.826667pt;}
.x30{left:178.106667pt;}
.x2d{left:205.626667pt;}
.x29{left:211.613333pt;}
.x6{left:215.133333pt;}
.x9{left:310.266667pt;}
.xd{left:325.466667pt;}
.xc{left:336.026667pt;}
.x2e{left:353.373333pt;}
.x25{left:364.093333pt;}
.x31{left:367.493333pt;}
.x2a{left:380.893333pt;}
.x2b{left:396.960000pt;}
.x22{left:400.293333pt;}
.x10{left:412.386667pt;}
.x2c{left:413.600000pt;}
.xb{left:415.866667pt;}
.x18{left:427.520000pt;}
.x3{left:455.613333pt;}
.xf{left:459.546667pt;}
.x33{left:491.200000pt;}
.xe{left:525.186667pt;}
.x2{left:536.733333pt;}
.x4{left:540.573333pt;}
.x24{left:625.893333pt;}
.x21{left:640.000000pt;}
.x1f{left:645.826667pt;}
.x34{left:648.453333pt;}
.x5{left:650.080000pt;}
.xa{left:652.706667pt;}
.x1{left:654.213333pt;}
.x37{left:816.706667pt;}
.x16{left:1076.386667pt;}
}




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