
    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_8af4bc48773f547520b1214d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.143111;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_78f01a9cef996641643cdbad.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bc1f9ad99beb2b343761b56a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166504;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_768e0ef1bcfdc9b3dd346a86.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_ede986547e363b851c0e4ff0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.055111;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_b8f440e745eee44a667851d3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.117778;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_074edd2e94b14afb5c47d39c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.038222;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_45d2d97729e13b193ed568d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.108889;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_e5758148f6963dd0e6d6466b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.108889;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_35c2dd52ae32e12717e8a526.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.027556;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a7f5cec507243541d368572e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.038222;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0725414053ce208a1dd1d072.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.960449;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:ffe;src:url('chunks/assets/font_3d8fe1c65ebc272dbdbec889.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.549805;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:fff;src:url('chunks/assets/font_e8ff5f8e9d5e0a52784abf45.woff2')format("woff");}.fff{font-family:fff;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-61.920000px;}
.v1{vertical-align:-23.760000px;}
.va{vertical-align:-22.320000px;}
.vd{vertical-align:-20.160000px;}
.vc{vertical-align:-17.280000px;}
.v4{vertical-align:-14.400000px;}
.v8{vertical-align:-3.600000px;}
.v9{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.880000px;}
.v5{vertical-align:14.400000px;}
.v2{vertical-align:23.760000px;}
.ve{vertical-align:26.640000px;}
.v10{vertical-align:36.000000px;}
.vf{vertical-align:42.480000px;}
.v6{vertical-align:77.760000px;}
.v7{vertical-align:129.600000px;}
.ls31{letter-spacing:-0.648000px;}
.ls32{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.322800px;}
.ls5{letter-spacing:-0.298200px;}
.ls22{letter-spacing:-0.288000px;}
.ls29{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.247200px;}
.ls20{letter-spacing:-0.216000px;}
.ls27{letter-spacing:-0.172800px;}
.lsf{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.072000px;}
.ls33{letter-spacing:-0.018000px;}
.ls2a{letter-spacing:-0.000003px;}
.ls3{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.056880px;}
.ls15{letter-spacing:0.061200px;}
.lse{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.083400px;}
.ls24{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.151200px;}
.ls6{letter-spacing:0.166800px;}
.lsc{letter-spacing:0.211800px;}
.ls18{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.322800px;}
.lsd{letter-spacing:0.357000px;}
.ls2{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.660000px;}
.ls19{letter-spacing:1.152000px;}
.ls2f{letter-spacing:2.376000px;}
.ls30{letter-spacing:2.801520px;}
.ls26{letter-spacing:3.427200px;}
.ls2e{letter-spacing:4.123200px;}
.ls25{letter-spacing:4.147200px;}
.ls1a{letter-spacing:4.263120px;}
.ls1b{letter-spacing:4.774320px;}
.ls2b{letter-spacing:4.867200px;}
.ls17{letter-spacing:8.395920px;}
.ls13{letter-spacing:8.575920px;}
.ls12{letter-spacing:10.432800px;}
.ls0{letter-spacing:14.454720px;}
.ls1d{letter-spacing:14.760000px;}
.ls14{letter-spacing:15.472800px;}
.ls1c{letter-spacing:15.480000px;}
.ls2d{letter-spacing:15.624000px;}
.ls1e{letter-spacing:16.200000px;}
.ls2c{letter-spacing:19.987200px;}
.ls23{letter-spacing:20.043360px;}
.ls11{letter-spacing:20.376000px;}
.ls10{letter-spacing:20.912880px;}
.ls1{letter-spacing:837.900000px;}
.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;}
}
.ws19{word-spacing:-72.360000px;}
.ws17{word-spacing:-72.288000px;}
.ws25{word-spacing:-72.072000px;}
.wse{word-spacing:-72.000000px;}
.ws13{word-spacing:-71.928000px;}
.ws1a{word-spacing:-71.856000px;}
.ws18{word-spacing:-71.712000px;}
.ws20{word-spacing:-51.176880px;}
.ws10{word-spacing:-51.120000px;}
.ws1d{word-spacing:-50.947200px;}
.ws15{word-spacing:-41.760000px;}
.ws11{word-spacing:-31.132800px;}
.ws21{word-spacing:-29.654640px;}
.ws12{word-spacing:-27.532800px;}
.ws1e{word-spacing:-26.981520px;}
.wsf{word-spacing:-26.812800px;}
.ws1f{word-spacing:-26.619360px;}
.ws9{word-spacing:-18.000000px;}
.ws28{word-spacing:-16.776000px;}
.ws27{word-spacing:-16.704000px;}
.ws26{word-spacing:-16.632000px;}
.ws24{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.488000px;}
.wsc{word-spacing:-16.416000px;}
.ws23{word-spacing:-16.415997px;}
.ws0{word-spacing:-16.344000px;}
.wsd{word-spacing:-16.272000px;}
.ws16{word-spacing:-16.200000px;}
.ws29{word-spacing:-15.912000px;}
.ws8{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.285280px;}
.ws7{word-spacing:-13.982280px;}
.ws6{word-spacing:-13.837080px;}
.ws4{word-spacing:-13.708680px;}
.ws5{word-spacing:-13.625280px;}
.ws1{word-spacing:-13.505760px;}
.ws2a{word-spacing:-12.294000px;}
.ws2{word-spacing:-10.440000px;}
.ws14{word-spacing:-5.760000px;}
.wsa{word-spacing:0.000000px;}
.ws1b{word-spacing:31.356000px;}
.ws22{word-spacing:37.257120px;}
.ws1c{word-spacing:43.416000px;}
._15{margin-left:-15.090720px;}
._14{margin-left:-9.360000px;}
._19{margin-left:-7.617600px;}
._12{margin-left:-5.364240px;}
._10{margin-left:-4.125600px;}
._3{margin-left:-2.977200px;}
._1{margin-left:-1.224000px;}
._0{width:1.260000px;}
._2{width:2.325600px;}
._5{width:3.710640px;}
._4{width:5.258880px;}
._d{width:6.696000px;}
._6{width:8.301600px;}
._c{width:9.386400px;}
._b{width:10.512000px;}
._1f{width:12.024000px;}
._e{width:13.752000px;}
._7{width:15.054480px;}
._11{width:16.166880px;}
._f{width:18.432000px;}
._a{width:20.318400px;}
._1d{width:21.345600px;}
._18{width:22.728000px;}
._1c{width:30.852000px;}
._1b{width:31.896000px;}
._25{width:33.336000px;}
._9{width:35.589600px;}
._8{width:36.931680px;}
._13{width:41.901120px;}
._26{width:43.272000px;}
._27{width:44.712000px;}
._1e{width:62.926560px;}
._16{width:89.004480px;}
._20{width:91.591200px;}
._23{width:115.712160px;}
._21{width:124.765920px;}
._22{width:163.876080px;}
._24{width:167.175120px;}
._1a{width:198.500400px;}
._17{width:199.764000px;}
.fc4{color:rgb(0,102,0);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(192,0,0);}
.fc1{color:rgb(0,51,0);}
.fc2{color:rgb(0,91,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:51.120000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs9{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.fs6{font-size:162.000000px;}
.y3f{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:3.600000px;}
.yf{bottom:3.780000px;}
.y3{bottom:4.320000px;}
.yc7{bottom:4.356000px;}
.y119{bottom:5.220000px;}
.y11b{bottom:5.256000px;}
.yc2{bottom:5.400000px;}
.ye4{bottom:5.430000px;}
.yc6{bottom:5.436000px;}
.yd3{bottom:9.000000px;}
.yd2{bottom:10.080000px;}
.y3e{bottom:12.600000px;}
.y29{bottom:22.365000px;}
.y14{bottom:22.500000px;}
.y2{bottom:25.020000px;}
.yf8{bottom:26.814000px;}
.yf3{bottom:26.820000px;}
.yfd{bottom:26.850000px;}
.yfb{bottom:26.856000px;}
.y113{bottom:26.865000px;}
.yf7{bottom:27.894000px;}
.yf2{bottom:27.900000px;}
.yfc{bottom:27.930000px;}
.yfa{bottom:27.936000px;}
.y112{bottom:27.945000px;}
.y3d{bottom:32.580000px;}
.y13{bottom:41.220000px;}
.y28{bottom:41.265000px;}
.y27{bottom:58.365000px;}
.y12{bottom:59.940000px;}
.y2d{bottom:59.970000px;}
.y11c{bottom:64.440000px;}
.y3c{bottom:65.340000px;}
.yc8{bottom:68.040000px;}
.y6f{bottom:70.920000px;}
.y133{bottom:75.420000px;}
.y98{bottom:76.860000px;}
.y26{bottom:77.085000px;}
.y39{bottom:78.120000px;}
.y11{bottom:78.660000px;}
.y2c{bottom:78.690000px;}
.yf9{bottom:80.100000px;}
.y3b{bottom:80.820000px;}
.y2e{bottom:86.265000px;}
.y11a{bottom:86.940000px;}
.yc5{bottom:90.540000px;}
.y6e{bottom:93.456000px;}
.y25{bottom:95.985000px;}
.y97{bottom:97.776000px;}
.y132{bottom:97.956000px;}
.y38{bottom:100.656000px;}
.y96{bottom:106.776000px;}
.y118{bottom:109.476000px;}
.yc4{bottom:113.076000px;}
.y24{bottom:114.705000px;}
.y6d{bottom:115.956000px;}
.y131{bottom:120.456000px;}
.y37{bottom:123.156000px;}
.yf6{bottom:125.136000px;}
.y117{bottom:131.976000px;}
.y95{bottom:132.516000px;}
.y23{bottom:133.425000px;}
.yc3{bottom:135.576000px;}
.y6c{bottom:138.456000px;}
.y130{bottom:142.956000px;}
.y36{bottom:145.656000px;}
.y22{bottom:152.145000px;}
.y94{bottom:155.010000px;}
.yc1{bottom:158.070000px;}
.y6b{bottom:160.950000px;}
.y12f{bottom:165.450000px;}
.y35{bottom:168.150000px;}
.yf5{bottom:170.130000px;}
.y21{bottom:170.865000px;}
.y116{bottom:176.970000px;}
.y93{bottom:177.690000px;}
.yc0{bottom:181.470000px;}
.y6a{bottom:183.450000px;}
.y12e{bottom:187.950000px;}
.y20{bottom:189.585000px;}
.y34{bottom:190.650000px;}
.y92{bottom:198.570000px;}
.y69{bottom:205.950000px;}
.y91{bottom:207.570000px;}
.y1f{bottom:208.485000px;}
.ybf{bottom:209.010000px;}
.y12d{bottom:210.450000px;}
.y33{bottom:213.150000px;}
.yf4{bottom:215.130000px;}
.y115{bottom:221.970000px;}
.y1e{bottom:227.205000px;}
.y68{bottom:228.450000px;}
.ybe{bottom:231.510000px;}
.y12c{bottom:232.950000px;}
.y90{bottom:233.670000px;}
.y32{bottom:239.610000px;}
.y1d{bottom:245.925000px;}
.y67{bottom:250.950000px;}
.ybd{bottom:254.010000px;}
.y12b{bottom:255.450000px;}
.y8f{bottom:256.170000px;}
.yf1{bottom:260.130000px;}
.y31{bottom:261.930000px;}
.y1c{bottom:264.675000px;}
.y114{bottom:266.970000px;}
.y66{bottom:273.450000px;}
.ybc{bottom:276.510000px;}
.y12a{bottom:277.950000px;}
.y8e{bottom:278.670000px;}
.y30{bottom:280.830000px;}
.y1b{bottom:283.395000px;}
.y65{bottom:295.950000px;}
.ybb{bottom:299.010000px;}
.y129{bottom:300.450000px;}
.y8d{bottom:301.170000px;}
.y1a{bottom:302.295000px;}
.y2f{bottom:304.230000px;}
.yf0{bottom:305.850000px;}
.y111{bottom:311.970000px;}
.y64{bottom:318.450000px;}
.y19{bottom:321.015000px;}
.yba{bottom:321.510000px;}
.y128{bottom:322.950000px;}
.y8c{bottom:323.490000px;}
.y15{bottom:323.670000px;}
.yef{bottom:333.390000px;}
.y18{bottom:339.735000px;}
.y63{bottom:340.995000px;}
.yb9{bottom:344.055000px;}
.y8b{bottom:344.775000px;}
.y142{bottom:345.315000px;}
.y127{bottom:345.495000px;}
.yee{bottom:355.935000px;}
.y110{bottom:357.015000px;}
.y17{bottom:358.455000px;}
.y62{bottom:363.495000px;}
.yb8{bottom:366.555000px;}
.y141{bottom:366.735000px;}
.y8a{bottom:367.275000px;}
.y126{bottom:367.995000px;}
.y16{bottom:377.175000px;}
.yed{bottom:378.435000px;}
.y61{bottom:385.995000px;}
.yb7{bottom:389.055000px;}
.y89{bottom:389.775000px;}
.y125{bottom:390.495000px;}
.y140{bottom:393.555000px;}
.yec{bottom:400.935000px;}
.y10f{bottom:402.015000px;}
.y60{bottom:408.495000px;}
.yb6{bottom:411.555000px;}
.y88{bottom:412.275000px;}
.y124{bottom:412.995000px;}
.y13f{bottom:416.055000px;}
.yeb{bottom:423.435000px;}
.y5f{bottom:430.995000px;}
.yb5{bottom:434.055000px;}
.y87{bottom:434.775000px;}
.y123{bottom:435.495000px;}
.yea{bottom:445.935000px;}
.y10e{bottom:447.015000px;}
.y5e{bottom:453.495000px;}
.yb4{bottom:456.555000px;}
.y86{bottom:457.275000px;}
.y122{bottom:457.995000px;}
.ye9{bottom:468.435000px;}
.y5d{bottom:475.995000px;}
.yb3{bottom:479.055000px;}
.y13e{bottom:479.595000px;}
.y85{bottom:479.775000px;}
.y121{bottom:480.495000px;}
.ye8{bottom:490.935000px;}
.y10d{bottom:492.015000px;}
.y13d{bottom:496.515000px;}
.y5c{bottom:498.495000px;}
.y84{bottom:502.275000px;}
.yb2{bottom:502.815000px;}
.y120{bottom:502.995000px;}
.ye7{bottom:513.435000px;}
.y5b{bottom:520.995000px;}
.y83{bottom:524.775000px;}
.y11f{bottom:525.675000px;}
.yb1{bottom:526.215000px;}
.y2b{bottom:527.655000px;}
.ye6{bottom:535.935000px;}
.y10c{bottom:537.735000px;}
.y5a{bottom:543.675000px;}
.y82{bottom:547.275000px;}
.y13c{bottom:547.995000px;}
.y11e{bottom:548.175000px;}
.yb0{bottom:548.535000px;}
.ye5{bottom:555.015000px;}
.y10b{bottom:565.275000px;}
.y59{bottom:566.175000px;}
.y13b{bottom:567.975000px;}
.y81{bottom:569.775000px;}
.y11d{bottom:570.675000px;}
.yaf{bottom:571.035000px;}
.ye3{bottom:577.515000px;}
.y10a{bottom:587.805000px;}
.y58{bottom:588.705000px;}
.y13a{bottom:590.505000px;}
.y80{bottom:592.305000px;}
.yae{bottom:593.565000px;}
.ye2{bottom:600.045000px;}
.y109{bottom:610.305000px;}
.y57{bottom:611.205000px;}
.y139{bottom:613.005000px;}
.y7f{bottom:614.805000px;}
.yad{bottom:616.065000px;}
.y10{bottom:622.185000px;}
.ye1{bottom:622.545000px;}
.y108{bottom:632.805000px;}
.y56{bottom:633.705000px;}
.y138{bottom:635.505000px;}
.yac{bottom:638.565000px;}
.y7d{bottom:640.185000px;}
.ye0{bottom:645.045000px;}
.y7e{bottom:645.225000px;}
.y7a{bottom:650.985000px;}
.y107{bottom:655.305000px;}
.y55{bottom:656.205000px;}
.y137{bottom:658.005000px;}
.yab{bottom:661.065000px;}
.ydf{bottom:667.545000px;}
.y7b{bottom:671.865000px;}
.y7c{bottom:676.005000px;}
.y106{bottom:677.805000px;}
.y54{bottom:678.705000px;}
.y136{bottom:680.505000px;}
.yaa{bottom:684.825000px;}
.yde{bottom:690.045000px;}
.y79{bottom:697.065000px;}
.y105{bottom:700.305000px;}
.y53{bottom:701.205000px;}
.y135{bottom:703.005000px;}
.ya9{bottom:708.405000px;}
.ydd{bottom:712.545000px;}
.ye{bottom:716.685000px;}
.y78{bottom:719.565000px;}
.y104{bottom:722.985000px;}
.y52{bottom:723.705000px;}
.y134{bottom:725.325000px;}
.ya8{bottom:731.805000px;}
.ydc{bottom:735.765000px;}
.yd{bottom:740.265000px;}
.y77{bottom:742.065000px;}
.y103{bottom:745.485000px;}
.y51{bottom:746.205000px;}
.ya7{bottom:754.305000px;}
.yc{bottom:760.965000px;}
.ydb{bottom:763.305000px;}
.y76{bottom:764.565000px;}
.y102{bottom:767.985000px;}
.y50{bottom:768.705000px;}
.ya6{bottom:776.805000px;}
.yda{bottom:785.805000px;}
.y101{bottom:786.885000px;}
.y75{bottom:787.065000px;}
.yb{bottom:787.605000px;}
.y4f{bottom:791.205000px;}
.ya5{bottom:799.305000px;}
.ya{bottom:802.185000px;}
.yd9{bottom:808.305000px;}
.y74{bottom:810.825000px;}
.y4e{bottom:813.705000px;}
.ya4{bottom:821.805000px;}
.y9{bottom:828.870000px;}
.yd8{bottom:830.850000px;}
.y100{bottom:831.930000px;}
.y73{bottom:834.450000px;}
.y4d{bottom:836.250000px;}
.ya3{bottom:844.350000px;}
.yd7{bottom:853.350000px;}
.y72{bottom:857.850000px;}
.y4c{bottom:858.750000px;}
.ya2{bottom:866.850000px;}
.y8{bottom:868.110000px;}
.yd6{bottom:875.850000px;}
.yff{bottom:876.930000px;}
.y71{bottom:880.170000px;}
.y4b{bottom:881.250000px;}
.y7{bottom:884.670000px;}
.ya1{bottom:889.350000px;}
.yd5{bottom:898.350000px;}
.y4a{bottom:903.750000px;}
.y70{bottom:903.930000px;}
.y6{bottom:908.070000px;}
.ya0{bottom:908.250000px;}
.y9f{bottom:917.250000px;}
.yd4{bottom:920.850000px;}
.yfe{bottom:921.930000px;}
.y49{bottom:926.250000px;}
.y5{bottom:934.350000px;}
.yd1{bottom:939.750000px;}
.y9e{bottom:944.070000px;}
.y48{bottom:948.750000px;}
.yd0{bottom:966.930000px;}
.y9d{bottom:968.550000px;}
.y47{bottom:971.250000px;}
.y3a{bottom:973.770000px;}
.ycf{bottom:989.430000px;}
.y9c{bottom:990.870000px;}
.y46{bottom:993.750000px;}
.yce{bottom:1011.930000px;}
.y9b{bottom:1015.350000px;}
.y45{bottom:1016.250000px;}
.ycd{bottom:1034.430000px;}
.y9a{bottom:1037.670000px;}
.y44{bottom:1038.750000px;}
.ycc{bottom:1056.930000px;}
.y43{bottom:1061.250000px;}
.y99{bottom:1061.430000px;}
.ycb{bottom:1079.460000px;}
.y42{bottom:1083.780000px;}
.yca{bottom:1101.960000px;}
.y41{bottom:1106.280000px;}
.yc9{bottom:1124.460000px;}
.y4{bottom:1127.520000px;}
.y40{bottom:1128.780000px;}
.y1{bottom:1159.020000px;}
.h9{height:18.900000px;}
.h24{height:22.500000px;}
.h25{height:22.536000px;}
.h26{height:27.180000px;}
.h17{height:29.678906px;}
.h7{height:35.152640px;}
.h6{height:40.607360px;}
.h2c{height:43.512000px;}
.h2b{height:44.760000px;}
.h27{height:45.000000px;}
.h28{height:45.036000px;}
.hc{height:48.153280px;}
.hf{height:48.896960px;}
.ha{height:49.534400px;}
.h11{height:50.437440px;}
.h8{height:54.110720px;}
.h14{height:58.016000px;}
.he{height:58.651172px;}
.h5{height:58.816000px;}
.h23{height:58.912000px;}
.h13{height:59.680000px;}
.h1{height:60.768000px;}
.h3{height:61.189805px;}
.h1c{height:65.188828px;}
.h2a{height:67.837500px;}
.h18{height:68.554688px;}
.h2{height:70.664062px;}
.h4{height:70.911360px;}
.h29{height:74.953125px;}
.h1b{height:76.200117px;}
.h1d{height:82.680117px;}
.hb{height:93.780000px;}
.h10{height:93.816000px;}
.h21{height:94.016000px;}
.h2d{height:99.687656px;}
.h19{height:112.394531px;}
.h1f{height:115.274531px;}
.h15{height:118.476000px;}
.h20{height:122.280117px;}
.h1e{height:135.434531px;}
.h22{height:148.394531px;}
.h16{height:158.915039px;}
.h1a{height:194.788828px;}
.h12{height:203.250000px;}
.hd{height:392.295000px;}
.h0{height:1188.000000px;}
.w11{width:68.436000px;}
.w10{width:81.540000px;}
.wf{width:84.600000px;}
.we{width:84.636000px;}
.wd{width:87.660000px;}
.w6{width:95.796000px;}
.wc{width:95.976000px;}
.w8{width:99.360000px;}
.w7{width:99.576000px;}
.w9{width:101.196000px;}
.wa{width:102.420000px;}
.wb{width:112.896000px;}
.w14{width:150.330000px;}
.w13{width:153.570000px;}
.w15{width:162.570000px;}
.w5{width:176.940000px;}
.w2{width:236.550000px;}
.w17{width:245.550000px;}
.w18{width:245.775000px;}
.w16{width:285.915000px;}
.w12{width:310.935000px;}
.w3{width:541.185000px;}
.w4{width:674.070000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x1c{left:11.520000px;}
.x26{left:13.860000px;}
.x1e{left:17.640000px;}
.x23{left:20.385000px;}
.x20{left:28.620000px;}
.x8{left:36.540000px;}
.x19{left:78.660000px;}
.x3{left:85.355986px;}
.x2c{left:139.355986px;}
.x1a{left:191.550000px;}
.xe{left:192.989986px;}
.x7{left:195.690000px;}
.xa{left:197.505000px;}
.x9{left:228.825000px;}
.x11{left:229.889986px;}
.x1{left:253.289986px;}
.xc{left:255.809986px;}
.x13{left:262.290000px;}
.x10{left:271.334986px;}
.x4{left:285.014986px;}
.x1b{left:287.535000px;}
.xd{left:288.974986px;}
.xf{left:299.594986px;}
.x6{left:321.915000px;}
.x12{left:328.934986px;}
.xb{left:337.035000px;}
.x14{left:358.095000px;}
.x2a{left:364.575000px;}
.x1d{left:375.195000px;}
.x27{left:395.895000px;}
.x15{left:457.665000px;}
.x1f{left:459.825000px;}
.x21{left:544.425000px;}
.x28{left:549.465000px;}
.x16{left:557.025000px;}
.x2b{left:610.125000px;}
.x22{left:629.025000px;}
.x17{left:658.230000px;}
.x29{left:699.810000px;}
.x24{left:713.670000px;}
.x18{left:760.650000px;}
.x25{left:795.210000px;}
.x2{left:836.099986px;}
@media print{
.v3{vertical-align:-55.040000pt;}
.v1{vertical-align:-21.120000pt;}
.va{vertical-align:-19.840000pt;}
.vd{vertical-align:-17.920000pt;}
.vc{vertical-align:-15.360000pt;}
.v4{vertical-align:-12.800000pt;}
.v8{vertical-align:-3.200000pt;}
.v9{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.560000pt;}
.v5{vertical-align:12.800000pt;}
.v2{vertical-align:21.120000pt;}
.ve{vertical-align:23.680000pt;}
.v10{vertical-align:32.000000pt;}
.vf{vertical-align:37.760000pt;}
.v6{vertical-align:69.120000pt;}
.v7{vertical-align:115.200000pt;}
.ls31{letter-spacing:-0.576000pt;}
.ls32{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.286933pt;}
.ls5{letter-spacing:-0.265067pt;}
.ls22{letter-spacing:-0.256000pt;}
.ls29{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.219733pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls27{letter-spacing:-0.153600pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls33{letter-spacing:-0.016000pt;}
.ls2a{letter-spacing:-0.000003pt;}
.ls3{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.050560pt;}
.ls15{letter-spacing:0.054400pt;}
.lse{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.074133pt;}
.ls24{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.134400pt;}
.ls6{letter-spacing:0.148267pt;}
.lsc{letter-spacing:0.188267pt;}
.ls18{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.286933pt;}
.lsd{letter-spacing:0.317333pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.586667pt;}
.ls19{letter-spacing:1.024000pt;}
.ls2f{letter-spacing:2.112000pt;}
.ls30{letter-spacing:2.490240pt;}
.ls26{letter-spacing:3.046400pt;}
.ls2e{letter-spacing:3.665067pt;}
.ls25{letter-spacing:3.686400pt;}
.ls1a{letter-spacing:3.789440pt;}
.ls1b{letter-spacing:4.243840pt;}
.ls2b{letter-spacing:4.326400pt;}
.ls17{letter-spacing:7.463040pt;}
.ls13{letter-spacing:7.623040pt;}
.ls12{letter-spacing:9.273600pt;}
.ls0{letter-spacing:12.848640pt;}
.ls1d{letter-spacing:13.120000pt;}
.ls14{letter-spacing:13.753600pt;}
.ls1c{letter-spacing:13.760000pt;}
.ls2d{letter-spacing:13.888000pt;}
.ls1e{letter-spacing:14.400000pt;}
.ls2c{letter-spacing:17.766400pt;}
.ls23{letter-spacing:17.816320pt;}
.ls11{letter-spacing:18.112000pt;}
.ls10{letter-spacing:18.589227pt;}
.ls1{letter-spacing:744.800000pt;}
.ws19{word-spacing:-64.320000pt;}
.ws17{word-spacing:-64.256000pt;}
.ws25{word-spacing:-64.064000pt;}
.wse{word-spacing:-64.000000pt;}
.ws13{word-spacing:-63.936000pt;}
.ws1a{word-spacing:-63.872000pt;}
.ws18{word-spacing:-63.744000pt;}
.ws20{word-spacing:-45.490560pt;}
.ws10{word-spacing:-45.440000pt;}
.ws1d{word-spacing:-45.286400pt;}
.ws15{word-spacing:-37.120000pt;}
.ws11{word-spacing:-27.673600pt;}
.ws21{word-spacing:-26.359680pt;}
.ws12{word-spacing:-24.473600pt;}
.ws1e{word-spacing:-23.983573pt;}
.wsf{word-spacing:-23.833600pt;}
.ws1f{word-spacing:-23.661653pt;}
.ws9{word-spacing:-16.000000pt;}
.ws28{word-spacing:-14.912000pt;}
.ws27{word-spacing:-14.848000pt;}
.ws26{word-spacing:-14.784000pt;}
.ws24{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.656000pt;}
.wsc{word-spacing:-14.592000pt;}
.ws23{word-spacing:-14.591997pt;}
.ws0{word-spacing:-14.528000pt;}
.wsd{word-spacing:-14.464000pt;}
.ws16{word-spacing:-14.400000pt;}
.ws29{word-spacing:-14.144000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws3{word-spacing:-12.698027pt;}
.ws7{word-spacing:-12.428693pt;}
.ws6{word-spacing:-12.299627pt;}
.ws4{word-spacing:-12.185493pt;}
.ws5{word-spacing:-12.111360pt;}
.ws1{word-spacing:-12.005120pt;}
.ws2a{word-spacing:-10.928000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws14{word-spacing:-5.120000pt;}
.wsa{word-spacing:0.000000pt;}
.ws1b{word-spacing:27.872000pt;}
.ws22{word-spacing:33.117440pt;}
.ws1c{word-spacing:38.592000pt;}
._15{margin-left:-13.413973pt;}
._14{margin-left:-8.320000pt;}
._19{margin-left:-6.771200pt;}
._12{margin-left:-4.768213pt;}
._10{margin-left:-3.667200pt;}
._3{margin-left:-2.646400pt;}
._1{margin-left:-1.088000pt;}
._0{width:1.120000pt;}
._2{width:2.067200pt;}
._5{width:3.298347pt;}
._4{width:4.674560pt;}
._d{width:5.952000pt;}
._6{width:7.379200pt;}
._c{width:8.343467pt;}
._b{width:9.344000pt;}
._1f{width:10.688000pt;}
._e{width:12.224000pt;}
._7{width:13.381760pt;}
._11{width:14.370560pt;}
._f{width:16.384000pt;}
._a{width:18.060800pt;}
._1d{width:18.973867pt;}
._18{width:20.202667pt;}
._1c{width:27.424000pt;}
._1b{width:28.352000pt;}
._25{width:29.632000pt;}
._9{width:31.635200pt;}
._8{width:32.828160pt;}
._13{width:37.245440pt;}
._26{width:38.464000pt;}
._27{width:39.744000pt;}
._1e{width:55.934720pt;}
._16{width:79.115093pt;}
._20{width:81.414400pt;}
._23{width:102.855253pt;}
._21{width:110.903040pt;}
._22{width:145.667627pt;}
._24{width:148.600107pt;}
._1a{width:176.444800pt;}
._17{width:177.568000pt;}
.fs7{font-size:26.880000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:45.440000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs9{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.fs6{font-size:144.000000pt;}
.y3f{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:3.200000pt;}
.yf{bottom:3.360000pt;}
.y3{bottom:3.840000pt;}
.yc7{bottom:3.872000pt;}
.y119{bottom:4.640000pt;}
.y11b{bottom:4.672000pt;}
.yc2{bottom:4.800000pt;}
.ye4{bottom:4.826667pt;}
.yc6{bottom:4.832000pt;}
.yd3{bottom:8.000000pt;}
.yd2{bottom:8.960000pt;}
.y3e{bottom:11.200000pt;}
.y29{bottom:19.880000pt;}
.y14{bottom:20.000000pt;}
.y2{bottom:22.240000pt;}
.yf8{bottom:23.834667pt;}
.yf3{bottom:23.840000pt;}
.yfd{bottom:23.866667pt;}
.yfb{bottom:23.872000pt;}
.y113{bottom:23.880000pt;}
.yf7{bottom:24.794667pt;}
.yf2{bottom:24.800000pt;}
.yfc{bottom:24.826667pt;}
.yfa{bottom:24.832000pt;}
.y112{bottom:24.840000pt;}
.y3d{bottom:28.960000pt;}
.y13{bottom:36.640000pt;}
.y28{bottom:36.680000pt;}
.y27{bottom:51.880000pt;}
.y12{bottom:53.280000pt;}
.y2d{bottom:53.306667pt;}
.y11c{bottom:57.280000pt;}
.y3c{bottom:58.080000pt;}
.yc8{bottom:60.480000pt;}
.y6f{bottom:63.040000pt;}
.y133{bottom:67.040000pt;}
.y98{bottom:68.320000pt;}
.y26{bottom:68.520000pt;}
.y39{bottom:69.440000pt;}
.y11{bottom:69.920000pt;}
.y2c{bottom:69.946667pt;}
.yf9{bottom:71.200000pt;}
.y3b{bottom:71.840000pt;}
.y2e{bottom:76.680000pt;}
.y11a{bottom:77.280000pt;}
.yc5{bottom:80.480000pt;}
.y6e{bottom:83.072000pt;}
.y25{bottom:85.320000pt;}
.y97{bottom:86.912000pt;}
.y132{bottom:87.072000pt;}
.y38{bottom:89.472000pt;}
.y96{bottom:94.912000pt;}
.y118{bottom:97.312000pt;}
.yc4{bottom:100.512000pt;}
.y24{bottom:101.960000pt;}
.y6d{bottom:103.072000pt;}
.y131{bottom:107.072000pt;}
.y37{bottom:109.472000pt;}
.yf6{bottom:111.232000pt;}
.y117{bottom:117.312000pt;}
.y95{bottom:117.792000pt;}
.y23{bottom:118.600000pt;}
.yc3{bottom:120.512000pt;}
.y6c{bottom:123.072000pt;}
.y130{bottom:127.072000pt;}
.y36{bottom:129.472000pt;}
.y22{bottom:135.240000pt;}
.y94{bottom:137.786667pt;}
.yc1{bottom:140.506667pt;}
.y6b{bottom:143.066667pt;}
.y12f{bottom:147.066667pt;}
.y35{bottom:149.466667pt;}
.yf5{bottom:151.226667pt;}
.y21{bottom:151.880000pt;}
.y116{bottom:157.306667pt;}
.y93{bottom:157.946667pt;}
.yc0{bottom:161.306667pt;}
.y6a{bottom:163.066667pt;}
.y12e{bottom:167.066667pt;}
.y20{bottom:168.520000pt;}
.y34{bottom:169.466667pt;}
.y92{bottom:176.506667pt;}
.y69{bottom:183.066667pt;}
.y91{bottom:184.506667pt;}
.y1f{bottom:185.320000pt;}
.ybf{bottom:185.786667pt;}
.y12d{bottom:187.066667pt;}
.y33{bottom:189.466667pt;}
.yf4{bottom:191.226667pt;}
.y115{bottom:197.306667pt;}
.y1e{bottom:201.960000pt;}
.y68{bottom:203.066667pt;}
.ybe{bottom:205.786667pt;}
.y12c{bottom:207.066667pt;}
.y90{bottom:207.706667pt;}
.y32{bottom:212.986667pt;}
.y1d{bottom:218.600000pt;}
.y67{bottom:223.066667pt;}
.ybd{bottom:225.786667pt;}
.y12b{bottom:227.066667pt;}
.y8f{bottom:227.706667pt;}
.yf1{bottom:231.226667pt;}
.y31{bottom:232.826667pt;}
.y1c{bottom:235.266667pt;}
.y114{bottom:237.306667pt;}
.y66{bottom:243.066667pt;}
.ybc{bottom:245.786667pt;}
.y12a{bottom:247.066667pt;}
.y8e{bottom:247.706667pt;}
.y30{bottom:249.626667pt;}
.y1b{bottom:251.906667pt;}
.y65{bottom:263.066667pt;}
.ybb{bottom:265.786667pt;}
.y129{bottom:267.066667pt;}
.y8d{bottom:267.706667pt;}
.y1a{bottom:268.706667pt;}
.y2f{bottom:270.426667pt;}
.yf0{bottom:271.866667pt;}
.y111{bottom:277.306667pt;}
.y64{bottom:283.066667pt;}
.y19{bottom:285.346667pt;}
.yba{bottom:285.786667pt;}
.y128{bottom:287.066667pt;}
.y8c{bottom:287.546667pt;}
.y15{bottom:287.706667pt;}
.yef{bottom:296.346667pt;}
.y18{bottom:301.986667pt;}
.y63{bottom:303.106667pt;}
.yb9{bottom:305.826667pt;}
.y8b{bottom:306.466667pt;}
.y142{bottom:306.946667pt;}
.y127{bottom:307.106667pt;}
.yee{bottom:316.386667pt;}
.y110{bottom:317.346667pt;}
.y17{bottom:318.626667pt;}
.y62{bottom:323.106667pt;}
.yb8{bottom:325.826667pt;}
.y141{bottom:325.986667pt;}
.y8a{bottom:326.466667pt;}
.y126{bottom:327.106667pt;}
.y16{bottom:335.266667pt;}
.yed{bottom:336.386667pt;}
.y61{bottom:343.106667pt;}
.yb7{bottom:345.826667pt;}
.y89{bottom:346.466667pt;}
.y125{bottom:347.106667pt;}
.y140{bottom:349.826667pt;}
.yec{bottom:356.386667pt;}
.y10f{bottom:357.346667pt;}
.y60{bottom:363.106667pt;}
.yb6{bottom:365.826667pt;}
.y88{bottom:366.466667pt;}
.y124{bottom:367.106667pt;}
.y13f{bottom:369.826667pt;}
.yeb{bottom:376.386667pt;}
.y5f{bottom:383.106667pt;}
.yb5{bottom:385.826667pt;}
.y87{bottom:386.466667pt;}
.y123{bottom:387.106667pt;}
.yea{bottom:396.386667pt;}
.y10e{bottom:397.346667pt;}
.y5e{bottom:403.106667pt;}
.yb4{bottom:405.826667pt;}
.y86{bottom:406.466667pt;}
.y122{bottom:407.106667pt;}
.ye9{bottom:416.386667pt;}
.y5d{bottom:423.106667pt;}
.yb3{bottom:425.826667pt;}
.y13e{bottom:426.306667pt;}
.y85{bottom:426.466667pt;}
.y121{bottom:427.106667pt;}
.ye8{bottom:436.386667pt;}
.y10d{bottom:437.346667pt;}
.y13d{bottom:441.346667pt;}
.y5c{bottom:443.106667pt;}
.y84{bottom:446.466667pt;}
.yb2{bottom:446.946667pt;}
.y120{bottom:447.106667pt;}
.ye7{bottom:456.386667pt;}
.y5b{bottom:463.106667pt;}
.y83{bottom:466.466667pt;}
.y11f{bottom:467.266667pt;}
.yb1{bottom:467.746667pt;}
.y2b{bottom:469.026667pt;}
.ye6{bottom:476.386667pt;}
.y10c{bottom:477.986667pt;}
.y5a{bottom:483.266667pt;}
.y82{bottom:486.466667pt;}
.y13c{bottom:487.106667pt;}
.y11e{bottom:487.266667pt;}
.yb0{bottom:487.586667pt;}
.ye5{bottom:493.346667pt;}
.y10b{bottom:502.466667pt;}
.y59{bottom:503.266667pt;}
.y13b{bottom:504.866667pt;}
.y81{bottom:506.466667pt;}
.y11d{bottom:507.266667pt;}
.yaf{bottom:507.586667pt;}
.ye3{bottom:513.346667pt;}
.y10a{bottom:522.493333pt;}
.y58{bottom:523.293333pt;}
.y13a{bottom:524.893333pt;}
.y80{bottom:526.493333pt;}
.yae{bottom:527.613333pt;}
.ye2{bottom:533.373333pt;}
.y109{bottom:542.493333pt;}
.y57{bottom:543.293333pt;}
.y139{bottom:544.893333pt;}
.y7f{bottom:546.493333pt;}
.yad{bottom:547.613333pt;}
.y10{bottom:553.053333pt;}
.ye1{bottom:553.373333pt;}
.y108{bottom:562.493333pt;}
.y56{bottom:563.293333pt;}
.y138{bottom:564.893333pt;}
.yac{bottom:567.613333pt;}
.y7d{bottom:569.053333pt;}
.ye0{bottom:573.373333pt;}
.y7e{bottom:573.533333pt;}
.y7a{bottom:578.653333pt;}
.y107{bottom:582.493333pt;}
.y55{bottom:583.293333pt;}
.y137{bottom:584.893333pt;}
.yab{bottom:587.613333pt;}
.ydf{bottom:593.373333pt;}
.y7b{bottom:597.213333pt;}
.y7c{bottom:600.893333pt;}
.y106{bottom:602.493333pt;}
.y54{bottom:603.293333pt;}
.y136{bottom:604.893333pt;}
.yaa{bottom:608.733333pt;}
.yde{bottom:613.373333pt;}
.y79{bottom:619.613333pt;}
.y105{bottom:622.493333pt;}
.y53{bottom:623.293333pt;}
.y135{bottom:624.893333pt;}
.ya9{bottom:629.693333pt;}
.ydd{bottom:633.373333pt;}
.ye{bottom:637.053333pt;}
.y78{bottom:639.613333pt;}
.y104{bottom:642.653333pt;}
.y52{bottom:643.293333pt;}
.y134{bottom:644.733333pt;}
.ya8{bottom:650.493333pt;}
.ydc{bottom:654.013333pt;}
.yd{bottom:658.013333pt;}
.y77{bottom:659.613333pt;}
.y103{bottom:662.653333pt;}
.y51{bottom:663.293333pt;}
.ya7{bottom:670.493333pt;}
.yc{bottom:676.413333pt;}
.ydb{bottom:678.493333pt;}
.y76{bottom:679.613333pt;}
.y102{bottom:682.653333pt;}
.y50{bottom:683.293333pt;}
.ya6{bottom:690.493333pt;}
.yda{bottom:698.493333pt;}
.y101{bottom:699.453333pt;}
.y75{bottom:699.613333pt;}
.yb{bottom:700.093333pt;}
.y4f{bottom:703.293333pt;}
.ya5{bottom:710.493333pt;}
.ya{bottom:713.053333pt;}
.yd9{bottom:718.493333pt;}
.y74{bottom:720.733333pt;}
.y4e{bottom:723.293333pt;}
.ya4{bottom:730.493333pt;}
.y9{bottom:736.773333pt;}
.yd8{bottom:738.533333pt;}
.y100{bottom:739.493333pt;}
.y73{bottom:741.733333pt;}
.y4d{bottom:743.333333pt;}
.ya3{bottom:750.533333pt;}
.yd7{bottom:758.533333pt;}
.y72{bottom:762.533333pt;}
.y4c{bottom:763.333333pt;}
.ya2{bottom:770.533333pt;}
.y8{bottom:771.653333pt;}
.yd6{bottom:778.533333pt;}
.yff{bottom:779.493333pt;}
.y71{bottom:782.373333pt;}
.y4b{bottom:783.333333pt;}
.y7{bottom:786.373333pt;}
.ya1{bottom:790.533333pt;}
.yd5{bottom:798.533333pt;}
.y4a{bottom:803.333333pt;}
.y70{bottom:803.493333pt;}
.y6{bottom:807.173333pt;}
.ya0{bottom:807.333333pt;}
.y9f{bottom:815.333333pt;}
.yd4{bottom:818.533333pt;}
.yfe{bottom:819.493333pt;}
.y49{bottom:823.333333pt;}
.y5{bottom:830.533333pt;}
.yd1{bottom:835.333333pt;}
.y9e{bottom:839.173333pt;}
.y48{bottom:843.333333pt;}
.yd0{bottom:859.493333pt;}
.y9d{bottom:860.933333pt;}
.y47{bottom:863.333333pt;}
.y3a{bottom:865.573333pt;}
.ycf{bottom:879.493333pt;}
.y9c{bottom:880.773333pt;}
.y46{bottom:883.333333pt;}
.yce{bottom:899.493333pt;}
.y9b{bottom:902.533333pt;}
.y45{bottom:903.333333pt;}
.ycd{bottom:919.493333pt;}
.y9a{bottom:922.373333pt;}
.y44{bottom:923.333333pt;}
.ycc{bottom:939.493333pt;}
.y43{bottom:943.333333pt;}
.y99{bottom:943.493333pt;}
.ycb{bottom:959.520000pt;}
.y42{bottom:963.360000pt;}
.yca{bottom:979.520000pt;}
.y41{bottom:983.360000pt;}
.yc9{bottom:999.520000pt;}
.y4{bottom:1002.240000pt;}
.y40{bottom:1003.360000pt;}
.y1{bottom:1030.240000pt;}
.h9{height:16.800000pt;}
.h24{height:20.000000pt;}
.h25{height:20.032000pt;}
.h26{height:24.160000pt;}
.h17{height:26.381250pt;}
.h7{height:31.246791pt;}
.h6{height:36.095431pt;}
.h2c{height:38.677333pt;}
.h2b{height:39.786667pt;}
.h27{height:40.000000pt;}
.h28{height:40.032000pt;}
.hc{height:42.802916pt;}
.hf{height:43.463964pt;}
.ha{height:44.030578pt;}
.h11{height:44.833280pt;}
.h8{height:48.098418pt;}
.h14{height:51.569778pt;}
.he{height:52.134375pt;}
.h5{height:52.280889pt;}
.h23{height:52.366222pt;}
.h13{height:53.048889pt;}
.h1{height:54.016000pt;}
.h3{height:54.390938pt;}
.h1c{height:57.945625pt;}
.h2a{height:60.300000pt;}
.h18{height:60.937500pt;}
.h2{height:62.812500pt;}
.h4{height:63.032320pt;}
.h29{height:66.625000pt;}
.h1b{height:67.733438pt;}
.h1d{height:73.493438pt;}
.hb{height:83.360000pt;}
.h10{height:83.392000pt;}
.h21{height:83.569778pt;}
.h2d{height:88.611250pt;}
.h19{height:99.906250pt;}
.h1f{height:102.466250pt;}
.h15{height:105.312000pt;}
.h20{height:108.693437pt;}
.h1e{height:120.386250pt;}
.h22{height:131.906250pt;}
.h16{height:141.257812pt;}
.h1a{height:173.145625pt;}
.h12{height:180.666667pt;}
.hd{height:348.706667pt;}
.h0{height:1056.000000pt;}
.w11{width:60.832000pt;}
.w10{width:72.480000pt;}
.wf{width:75.200000pt;}
.we{width:75.232000pt;}
.wd{width:77.920000pt;}
.w6{width:85.152000pt;}
.wc{width:85.312000pt;}
.w8{width:88.320000pt;}
.w7{width:88.512000pt;}
.w9{width:89.952000pt;}
.wa{width:91.040000pt;}
.wb{width:100.352000pt;}
.w14{width:133.626667pt;}
.w13{width:136.506667pt;}
.w15{width:144.506667pt;}
.w5{width:157.280000pt;}
.w2{width:210.266667pt;}
.w17{width:218.266667pt;}
.w18{width:218.466667pt;}
.w16{width:254.146667pt;}
.w12{width:276.386667pt;}
.w3{width:481.053333pt;}
.w4{width:599.173333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x1c{left:10.240000pt;}
.x26{left:12.320000pt;}
.x1e{left:15.680000pt;}
.x23{left:18.120000pt;}
.x20{left:25.440000pt;}
.x8{left:32.480000pt;}
.x19{left:69.920000pt;}
.x3{left:75.871988pt;}
.x2c{left:123.871988pt;}
.x1a{left:170.266667pt;}
.xe{left:171.546655pt;}
.x7{left:173.946667pt;}
.xa{left:175.560000pt;}
.x9{left:203.400000pt;}
.x11{left:204.346655pt;}
.x1{left:225.146655pt;}
.xc{left:227.386655pt;}
.x13{left:233.146667pt;}
.x10{left:241.186655pt;}
.x4{left:253.346655pt;}
.x1b{left:255.586667pt;}
.xd{left:256.866655pt;}
.xf{left:266.306655pt;}
.x6{left:286.146667pt;}
.x12{left:292.386655pt;}
.xb{left:299.586667pt;}
.x14{left:318.306667pt;}
.x2a{left:324.066667pt;}
.x1d{left:333.506667pt;}
.x27{left:351.906667pt;}
.x15{left:406.813333pt;}
.x1f{left:408.733333pt;}
.x21{left:483.933333pt;}
.x28{left:488.413333pt;}
.x16{left:495.133333pt;}
.x2b{left:542.333333pt;}
.x22{left:559.133333pt;}
.x17{left:585.093333pt;}
.x29{left:622.053333pt;}
.x24{left:634.373333pt;}
.x18{left:676.133333pt;}
.x25{left:706.853333pt;}
.x2{left:743.199988pt;}
}




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