
    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_4c9da566df16774a2c6cbc3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_c175f627cd1d692107046e39.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675000;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_b3c269291c60cce02d2f9ff8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_401059cb1747cb94cc6e3f37.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675000;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_ea0a2ac70dee35b9dc3f53a2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908000;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_a4c8d1411630044ebadffa7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.975586;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_6359bc0e59f9d51c2fc400bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975586;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_5fc85d1d5401bb16a8c62c4f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.975586;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_13d8aeda0169f3af687a57bb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.975586;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_8956314cc9fe7e74b5a0cdd9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.967773;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_a05710acbc446263291aae14.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.774069;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_cf80a1fb392fea57cccad0ea.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.522000;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;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.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);}
.m3{transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256324,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);}
.v2{vertical-align:-10.500000px;}
.v1{vertical-align:-5.304000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:16.361400px;}
.ls2{letter-spacing:16.363650px;}
.ls5{letter-spacing:16.367400px;}
.ls3{letter-spacing:32.727777px;}
.ls4{letter-spacing:32.729423px;}
.ls1{letter-spacing:52.499421px;}
.ls7{letter-spacing:52.664496px;}
.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;}
}
.ws12{word-spacing:-32.727300px;}
.ws2{word-spacing:-16.363650px;}
.ws27{word-spacing:-14.943900px;}
.ws14{word-spacing:-8.690810px;}
.ws16{word-spacing:-7.796969px;}
.ws13{word-spacing:-7.604447px;}
.wsd{word-spacing:-1.505456px;}
.ws9{word-spacing:-0.035866px;}
.ws10{word-spacing:-0.024974px;}
.ws19{word-spacing:-0.024313px;}
.wsf{word-spacing:-0.022405px;}
.ws11{word-spacing:-0.021852px;}
.ws24{word-spacing:-0.019395px;}
.ws4{word-spacing:-0.005686px;}
.ws17{word-spacing:-0.004195px;}
.ws21{word-spacing:-0.003113px;}
.ws3{word-spacing:-0.002351px;}
.ws6{word-spacing:-0.001716px;}
.ws1b{word-spacing:-0.001184px;}
.ws5{word-spacing:-0.000850px;}
.ws20{word-spacing:-0.000109px;}
.ws0{word-spacing:0.000000px;}
.ws1a{word-spacing:0.000311px;}
.wsc{word-spacing:0.001568px;}
.ws7{word-spacing:0.002633px;}
.wsa{word-spacing:0.004757px;}
.ws8{word-spacing:1.494941px;}
.ws23{word-spacing:2.487275px;}
.ws1e{word-spacing:2.749093px;}
.ws22{word-spacing:6.545460px;}
.ws26{word-spacing:9.982525px;}
.ws25{word-spacing:16.292561px;}
.ws18{word-spacing:16.296881px;}
.wsb{word-spacing:16.298195px;}
.ws1d{word-spacing:16.302161px;}
.ws1{word-spacing:30.557363px;}
.ws1c{word-spacing:34.377178px;}
.ws15{word-spacing:42.784733px;}
.wse{word-spacing:48.615677px;}
.ws1f{word-spacing:428.269448px;}
._17{margin-left:-16.494559px;}
._26{margin-left:-6.886176px;}
._0{margin-left:-5.422864px;}
._12{margin-left:-4.303872px;}
._10{margin-left:-3.244042px;}
._1{margin-left:-1.291158px;}
._2{width:1.205081px;}
._5{width:3.083233px;}
._3{width:4.658908px;}
._4{width:7.094247px;}
._9{width:8.667201px;}
._a{width:10.157110px;}
._c{width:11.362190px;}
._8{width:19.096304px;}
._22{width:24.087293px;}
._19{width:25.134542px;}
._e{width:27.438588px;}
._d{width:35.894192px;}
._24{width:42.349126px;}
._1c{width:73.141837px;}
._1d{width:74.577329px;}
._7{width:80.948652px;}
._1e{width:172.331602px;}
._1f{width:208.153969px;}
._20{width:214.115071px;}
._21{width:226.434073px;}
._23{width:283.876600px;}
._11{width:289.744064px;}
._f{width:447.905828px;}
._14{width:465.217123px;}
._15{width:520.164520px;}
._18{width:524.037994px;}
._16{width:556.508688px;}
._13{width:564.666432px;}
._6{width:573.188688px;}
._25{width:589.862688px;}
._1b{width:664.801165px;}
._1a{width:682.881386px;}
._b{width:1041.361966px;}
.fca{color:rgb(210,32,39);}
.fc9{color:rgb(42,27,129);}
.fc6{color:rgb(254,250,248);}
.fc5{color:rgb(224,45,48);}
.fc4{color:rgb(252,230,223);}
.fc3{color:transparent;}
.fc8{color:rgb(255,0,0);}
.fc2{color:rgb(82,86,109);}
.fc7{color:rgb(249,206,194);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:16.803873px;}
.fsc{font-size:21.851859px;}
.fsa{font-size:22.405083px;}
.fs8{font-size:23.530320px;}
.fse{font-size:24.313312px;}
.fsd{font-size:24.313313px;}
.fsb{font-size:24.973592px;}
.fsf{font-size:34.031880px;}
.fs4{font-size:35.865600px;}
.fs7{font-size:42.351660px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:52.942140px;}
.fs6{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.873000px;}
.y16b{bottom:13.111709px;}
.y4f{bottom:16.317131px;}
.y9{bottom:20.397402px;}
.y8{bottom:20.697000px;}
.y40{bottom:21.754500px;}
.y198{bottom:22.404000px;}
.y122{bottom:25.327500px;}
.y5d{bottom:25.428000px;}
.y60{bottom:25.753500px;}
.y63{bottom:26.850000px;}
.yd7{bottom:27.712500px;}
.y78{bottom:29.121000px;}
.y7d{bottom:30.916585px;}
.y137{bottom:31.309500px;}
.y27{bottom:32.403000px;}
.y175{bottom:32.451000px;}
.y18b{bottom:32.536500px;}
.y80{bottom:32.908500px;}
.y169{bottom:33.184500px;}
.yf2{bottom:33.953141px;}
.y4d{bottom:34.359000px;}
.ye9{bottom:34.405500px;}
.y190{bottom:36.276000px;}
.y84{bottom:37.029000px;}
.y121{bottom:39.523500px;}
.y77{bottom:39.582000px;}
.y15e{bottom:41.676000px;}
.y1a3{bottom:43.975500px;}
.y136{bottom:45.507000px;}
.y3b{bottom:45.637500px;}
.y5c{bottom:45.751500px;}
.y5f{bottom:46.077000px;}
.y10c{bottom:46.618500px;}
.yec{bottom:47.005500px;}
.y62{bottom:47.173500px;}
.y3f{bottom:51.811500px;}
.y26{bottom:52.726500px;}
.y120{bottom:53.721000px;}
.y4c{bottom:54.682500px;}
.y174{bottom:55.624500px;}
.y18f{bottom:56.599500px;}
.y18a{bottom:57.343500px;}
.y168{bottom:57.600000px;}
.ya5{bottom:58.614045px;}
.y75{bottom:59.185500px;}
.ye8{bottom:59.212500px;}
.yd6{bottom:59.305367px;}
.y135{bottom:59.703000px;}
.y6f{bottom:60.834000px;}
.y85{bottom:61.485000px;}
.y83{bottom:61.836000px;}
.y72{bottom:61.845000px;}
.yed{bottom:63.681000px;}
.y14a{bottom:63.940500px;}
.y7c{bottom:64.628769px;}
.y15d{bottom:66.483000px;}
.y10b{bottom:66.942000px;}
.y11f{bottom:67.917000px;}
.y3a{bottom:68.809500px;}
.y1a2{bottom:69.577500px;}
.yeb{bottom:71.812500px;}
.y3e{bottom:72.135000px;}
.y134{bottom:73.900500px;}
.yf1{bottom:74.824734px;}
.ya4{bottom:75.897094px;}
.yd5{bottom:76.588416px;}
.y18e{bottom:76.924500px;}
.ya7{bottom:77.381365px;}
.yb6{bottom:78.072687px;}
.y11e{bottom:82.114500px;}
.y189{bottom:82.150500px;}
.y74{bottom:83.992500px;}
.ye7{bottom:84.019500px;}
.ya6{bottom:85.185700px;}
.y6e{bottom:85.641000px;}
.yb5{bottom:85.877022px;}
.y71{bottom:86.652000px;}
.y133{bottom:88.096500px;}
.y149{bottom:88.747500px;}
.y15c{bottom:89.656500px;}
.y173{bottom:90.171000px;}
.y11d{bottom:96.310500px;}
.yea{bottom:96.540000px;}
.y167{bottom:98.448000px;}
.y96{bottom:99.647806px;}
.y25{bottom:99.915000px;}
.yc7{bottom:100.339128px;}
.y18d{bottom:101.731500px;}
.y132{bottom:102.294000px;}
.y3d{bottom:102.673500px;}
.y188{bottom:104.332500px;}
.yf9{bottom:104.739000px;}
.y49{bottom:105.820500px;}
.y10a{bottom:106.776000px;}
.y14{bottom:107.268000px;}
.y95{bottom:107.452141px;}
.yc6{bottom:108.143463px;}
.y73{bottom:108.801000px;}
.y197{bottom:109.093500px;}
.ye6{bottom:109.221000px;}
.y70{bottom:109.824000px;}
.y6d{bottom:110.449500px;}
.y172{bottom:110.494500px;}
.y11c{bottom:110.508000px;}
.y7e{bottom:110.689665px;}
.y148{bottom:113.554500px;}
.y39{bottom:114.313500px;}
.y131{bottom:116.490000px;}
.y7{bottom:119.358000px;}
.y1a1{bottom:119.506500px;}
.y9f{bottom:121.143084px;}
.yf8{bottom:121.177500px;}
.y166{bottom:121.620000px;}
.yd0{bottom:121.834406px;}
.y3c{bottom:122.997000px;}
.y11b{bottom:124.704000px;}
.y24{bottom:124.722000px;}
.y18c{bottom:126.850500px;}
.y9e{bottom:127.971964px;}
.y92{bottom:128.496643px;}
.ycf{bottom:128.663286px;}
.y187{bottom:129.141000px;}
.yc3{bottom:129.187965px;}
.y48{bottom:130.627500px;}
.y130{bottom:130.687500px;}
.yaf{bottom:131.184529px;}
.y109{bottom:131.583000px;}
.y38{bottom:132.246000px;}
.y15b{bottom:132.442500px;}
.y196{bottom:133.900500px;}
.y91{bottom:134.698845px;}
.y171{bottom:135.301500px;}
.yc2{bottom:135.390167px;}
.y1a0{bottom:137.440500px;}
.yf7{bottom:137.616000px;}
.y147{bottom:138.361500px;}
.y11a{bottom:138.901500px;}
.y6{bottom:139.683000px;}
.y12f{bottom:144.883500px;}
.y87{bottom:148.245013px;}
.y9d{bottom:148.795963px;}
.yb8{bottom:148.936335px;}
.y10{bottom:149.025000px;}
.yce{bottom:149.487285px;}
.y23{bottom:149.529000px;}
.yae{bottom:150.524268px;}
.y119{bottom:153.097500px;}
.y37{bottom:153.168000px;}
.y86{bottom:154.447215px;}
.yb7{bottom:155.138537px;}
.y47{bottom:155.433000px;}
.y9c{bottom:155.624843px;}
.y170{bottom:155.626500px;}
.ycd{bottom:156.316165px;}
.y195{bottom:157.072500px;}
.y15a{bottom:157.249500px;}
.yad{bottom:157.353148px;}
.y90{bottom:158.267213px;}
.y19f{bottom:158.361000px;}
.yc1{bottom:158.958535px;}
.y12e{bottom:159.081000px;}
.y108{bottom:159.378000px;}
.y5{bottom:160.006500px;}
.y61{bottom:161.064000px;}
.y5e{bottom:162.159000px;}
.y5b{bottom:162.484500px;}
.y13{bottom:162.496500px;}
.y146{bottom:163.168500px;}
.y89{bottom:165.709855px;}
.y165{bottom:165.751500px;}
.yba{bottom:166.401177px;}
.y118{bottom:167.295000px;}
.yf6{bottom:167.503500px;}
.ya2{bottom:168.991200px;}
.yf0{bottom:169.336136px;}
.yd3{bottom:169.682521px;}
.yb2{bottom:170.191340px;}
.y8e{bottom:170.671617px;}
.ybf{bottom:171.362939px;}
.y8a{bottom:171.912057px;}
.ybb{bottom:172.603379px;}
.ya3{bottom:172.682172px;}
.y12d{bottom:173.277000px;}
.yd4{bottom:173.373494px;}
.y17c{bottom:173.638500px;}
.yf{bottom:173.832000px;}
.y22{bottom:174.336000px;}
.y36{bottom:175.584000px;}
.ya1{bottom:176.795534px;}
.y8f{bottom:176.873819px;}
.yd2{bottom:177.486856px;}
.yc0{bottom:177.565141px;}
.yb1{bottom:177.995675px;}
.y88{bottom:178.114259px;}
.yb9{bottom:178.805581px;}
.y46{bottom:180.240000px;}
.y107{bottom:180.300000px;}
.y16f{bottom:180.433500px;}
.y19e{bottom:180.777000px;}
.y117{bottom:181.491000px;}
.y159{bottom:182.056500px;}
.ya0{bottom:184.599869px;}
.yd1{bottom:185.291191px;}
.yb0{bottom:185.800010px;}
.y164{bottom:186.672000px;}
.y12c{bottom:187.474500px;}
.y145{bottom:187.975500px;}
.y8b{bottom:190.518664px;}
.ybc{bottom:191.209985px;}
.y7b{bottom:192.628219px;}
.y8c{bottom:195.480739px;}
.y116{bottom:195.688500px;}
.ybd{bottom:196.172061px;}
.yac{bottom:197.879823px;}
.y17b{bottom:198.444000px;}
.ye{bottom:198.639000px;}
.y21{bottom:199.146000px;}
.y4{bottom:199.461000px;}
.y35{bottom:200.391000px;}
.y16e{bottom:200.757000px;}
.y12b{bottom:201.670500px;}
.y106{bottom:202.716000px;}
.y9b{bottom:204.101721px;}
.y194{bottom:204.342000px;}
.yab{bottom:204.708698px;}
.ycc{bottom:204.793043px;}
.y45{bottom:205.047000px;}
.y51{bottom:206.229000px;}
.y158{bottom:206.863500px;}
.y163{bottom:207.594000px;}
.y8d{bottom:207.884834px;}
.y19d{bottom:208.573500px;}
.ybe{bottom:208.576156px;}
.yef{bottom:208.720665px;}
.y115{bottom:209.884500px;}
.y9a{bottom:210.930596px;}
.y144{bottom:211.540500px;}
.ycb{bottom:211.621918px;}
.yf5{bottom:213.561000px;}
.y12a{bottom:215.868000px;}
.y12{bottom:217.725000px;}
.y17a{bottom:223.254000px;}
.yd{bottom:223.446000px;}
.y114{bottom:224.082000px;}
.y34{bottom:225.198000px;}
.y16d{bottom:225.564000px;}
.y105{bottom:227.524500px;}
.yaa{bottom:228.297990px;}
.y162{bottom:228.516000px;}
.y44{bottom:228.613500px;}
.y193{bottom:229.149000px;}
.y19c{bottom:229.495500px;}
.y129{bottom:230.064000px;}
.y50{bottom:230.956500px;}
.y157{bottom:231.670500px;}
.y94{bottom:231.763309px;}
.yc5{bottom:232.454631px;}
.y3{bottom:233.397000px;}
.yf4{bottom:233.884500px;}
.ya9{bottom:235.126865px;}
.yee{bottom:238.014809px;}
.y113{bottom:238.278000px;}
.y19{bottom:238.320000px;}
.y99{bottom:238.667820px;}
.y93{bottom:238.764976px;}
.yca{bottom:239.359142px;}
.yc4{bottom:239.456298px;}
.y128{bottom:244.261500px;}
.y98{bottom:245.496695px;}
.yc9{bottom:246.188017px;}
.yc{bottom:248.253000px;}
.y161{bottom:250.035000px;}
.y2a{bottom:250.080000px;}
.y112{bottom:252.475500px;}
.y97{bottom:252.529859px;}
.y19b{bottom:252.667500px;}
.yc8{bottom:253.221181px;}
.y192{bottom:253.956000px;}
.yb4{bottom:253.956744px;}
.yf3{bottom:254.208000px;}
.y156{bottom:256.552500px;}
.y127{bottom:258.457500px;}
.y18{bottom:258.643500px;}
.y13c{bottom:258.810000px;}
.yb3{bottom:261.760942px;}
.y179{bottom:264.964500px;}
.y16c{bottom:265.897500px;}
.y111{bottom:266.671500px;}
.y4e{bottom:268.480500px;}
.yfc{bottom:270.703500px;}
.y126{bottom:272.655000px;}
.y11{bottom:272.953500px;}
.y43{bottom:275.883000px;}
.y17{bottom:278.967000px;}
.y191{bottom:279.076500px;}
.y110{bottom:280.869000px;}
.y160{bottom:281.439000px;}
.y13b{bottom:283.617000px;}
.y178{bottom:285.288000px;}
.y16a{bottom:286.221000px;}
.y125{bottom:286.851000px;}
.yfb{bottom:291.028500px;}
.y29{bottom:294.360000px;}
.y19a{bottom:294.946500px;}
.y10f{bottom:295.065000px;}
.y2{bottom:297.009000px;}
.y14c{bottom:299.340000px;}
.y42{bottom:300.690000px;}
.y16{bottom:303.850500px;}
.y139{bottom:304.519500px;}
.y177{bottom:305.611500px;}
.y13a{bottom:308.712000px;}
.y10e{bottom:309.262500px;}
.yfa{bottom:314.503500px;}
.y124{bottom:315.244500px;}
.y199{bottom:315.270000px;}
.y28{bottom:317.925000px;}
.y14b{bottom:319.663500px;}
.y7f{bottom:321.862500px;}
.y1{bottom:322.711500px;}
.y15f{bottom:323.146500px;}
.y76{bottom:323.269500px;}
.y41{bottom:325.417500px;}
.y123{bottom:329.442000px;}
.y176{bottom:330.576000px;}
.y15{bottom:333.255000px;}
.y138{bottom:334.407000px;}
.y10d{bottom:337.656000px;}
.yb{bottom:362.751000px;}
.y54{bottom:3025.466685px;}
.y57{bottom:3025.792185px;}
.y5a{bottom:3026.888685px;}
.ya8{bottom:3027.751185px;}
.y20{bottom:3032.441685px;}
.y181{bottom:3032.575185px;}
.y7a{bottom:3032.947185px;}
.y4b{bottom:3034.397685px;}
.ye2{bottom:3034.444185px;}
.y186{bottom:3036.314685px;}
.y82{bottom:3037.067685px;}
.y155{bottom:3041.714685px;}
.y33{bottom:3045.676185px;}
.y53{bottom:3045.790185px;}
.y56{bottom:3046.115685px;}
.ydb{bottom:3046.639185px;}
.y104{bottom:3046.657185px;}
.ye5{bottom:3047.044185px;}
.y59{bottom:3047.212185px;}
.y1f{bottom:3052.765185px;}
.y4a{bottom:3054.721185px;}
.y185{bottom:3056.638185px;}
.y180{bottom:3057.382185px;}
.y6c{bottom:3059.224185px;}
.yde{bottom:3059.239185px;}
.ye1{bottom:3059.251185px;}
.y66{bottom:3060.872685px;}
.y81{bottom:3061.874685px;}
.y69{bottom:3061.883685px;}
.y143{bottom:3063.979185px;}
.y154{bottom:3066.521685px;}
.y103{bottom:3066.980685px;}
.y32{bottom:3068.848185px;}
.yda{bottom:3071.446185px;}
.ye4{bottom:3071.851185px;}
.y184{bottom:3076.963185px;}
.y17f{bottom:3082.189185px;}
.y6b{bottom:3084.031185px;}
.ydd{bottom:3084.046185px;}
.ye0{bottom:3084.058185px;}
.y65{bottom:3085.679685px;}
.y68{bottom:3086.690685px;}
.y142{bottom:3088.786185px;}
.y153{bottom:3089.695185px;}
.yd9{bottom:3096.253185px;}
.ye3{bottom:3096.578685px;}
.y1e{bottom:3099.953685px;}
.y183{bottom:3101.770185px;}
.y17e{bottom:3104.371185px;}
.y102{bottom:3106.814685px;}
.ydc{bottom:3108.772185px;}
.y6a{bottom:3108.839685px;}
.ydf{bottom:3109.259685px;}
.y67{bottom:3109.862685px;}
.y64{bottom:3110.488185px;}
.y141{bottom:3113.593185px;}
.y31{bottom:3114.352185px;}
.yd8{bottom:3121.454685px;}
.y1d{bottom:3124.760685px;}
.y182{bottom:3126.889185px;}
.y17d{bottom:3129.179685px;}
.y101{bottom:3131.621685px;}
.y30{bottom:3132.284685px;}
.y152{bottom:3132.481185px;}
.y140{bottom:3138.400185px;}
.y1c{bottom:3149.567685px;}
.y2f{bottom:3153.206685px;}
.y151{bottom:3157.288185px;}
.y100{bottom:3159.416685px;}
.y58{bottom:3161.102685px;}
.y55{bottom:3162.197685px;}
.y52{bottom:3162.523185px;}
.y13f{bottom:3163.207185px;}
.y1b{bottom:3174.374685px;}
.y2e{bottom:3175.622685px;}
.yff{bottom:3180.338685px;}
.y150{bottom:3182.095185px;}
.y13e{bottom:3188.014185px;}
.y1a{bottom:3199.184685px;}
.y2d{bottom:3200.429685px;}
.yfe{bottom:3202.754685px;}
.y14f{bottom:3206.902185px;}
.y13d{bottom:3211.579185px;}
.y2c{bottom:3225.236685px;}
.yfd{bottom:3227.563185px;}
.y14e{bottom:3231.709185px;}
.y2b{bottom:3250.052685px;}
.y14d{bottom:3256.591185px;}
.y79{bottom:3321.901185px;}
.h10{height:-2650.270185px;}
.h14{height:12.767005px;}
.h17{height:16.602291px;}
.h11{height:16.706527px;}
.h15{height:17.022612px;}
.h1b{height:18.472418px;}
.h1a{height:18.472420px;}
.h16{height:18.974077px;}
.h1e{height:22.665232px;}
.h7{height:25.392845px;}
.ha{height:26.648141px;}
.he{height:28.206206px;}
.h6{height:35.259465px;}
.h4{height:35.530706px;}
.h20{height:35.841857px;}
.hb{height:38.089267px;}
.h1c{height:39.972211px;}
.h8{height:41.037857px;}
.h22{height:41.723369px;}
.h9{height:42.321125px;}
.hc{height:45.687311px;}
.h3{height:46.341857px;}
.h18{height:48.632768px;}
.h21{height:56.786820px;}
.h1d{height:58.531049px;}
.h2{height:60.942658px;}
.h1f{height:62.181870px;}
.hf{height:63.955360px;}
.hd{height:72.840146px;}
.h5{height:91.054594px;}
.h12{height:205.400085px;}
.h19{height:242.632914px;}
.h13{height:273.639687px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w4{width:-2678.537685px;}
.w7{width:178.582778px;}
.w8{width:267.875532px;}
.w5{width:291.677925px;}
.w3{width:333.363113px;}
.w2{width:416.724081px;}
.w6{width:458.346484px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x2f{left:4.184426px;}
.x3e{left:5.653104px;}
.xb{left:18.136500px;}
.x26{left:22.747500px;}
.x2c{left:28.347000px;}
.x1e{left:36.141000px;}
.x3f{left:37.521946px;}
.xd{left:43.275000px;}
.x58{left:44.890938px;}
.x10{left:48.190500px;}
.x46{left:51.381224px;}
.x27{left:55.474500px;}
.x5c{left:57.822000px;}
.x55{left:61.074000px;}
.xc{left:75.247500px;}
.x42{left:76.673885px;}
.x5f{left:77.773099px;}
.x43{left:80.791601px;}
.x44{left:83.587104px;}
.x49{left:84.987943px;}
.x40{left:87.832859px;}
.x41{left:90.500321px;}
.x1{left:94.891500px;}
.x19{left:96.786303px;}
.x45{left:98.651245px;}
.x48{left:103.846177px;}
.x5b{left:107.974500px;}
.x32{left:110.976000px;}
.x9{left:120.988740px;}
.x3b{left:130.264051px;}
.x8{left:131.812500px;}
.xa{left:136.401000px;}
.x1a{left:141.831000px;}
.x39{left:143.890819px;}
.x3d{left:146.291804px;}
.x3a{left:150.249923px;}
.x47{left:152.622452px;}
.x3c{left:155.101655px;}
.x33{left:158.292541px;}
.x38{left:161.696312px;}
.x37{left:165.111416px;}
.x34{left:166.559377px;}
.x35{left:171.470521px;}
.x18{left:173.481000px;}
.x36{left:177.829625px;}
.x4{left:188.661000px;}
.x69{left:193.105500px;}
.x60{left:201.966000px;}
.x50{left:205.408787px;}
.x4e{left:211.032740px;}
.x4d{left:212.670564px;}
.x4c{left:215.300207px;}
.x4b{left:219.697299px;}
.x61{left:222.316500px;}
.x59{left:223.372500px;}
.x4a{left:225.032222px;}
.x4f{left:231.475474px;}
.x6{left:244.045500px;}
.x28{left:247.885500px;}
.x2{left:250.215000px;}
.x17{left:265.801500px;}
.x6a{left:269.406000px;}
.x3{left:278.695500px;}
.x29{left:280.614000px;}
.x6b{left:288.082500px;}
.x5{left:300.525000px;}
.x7{left:319.351500px;}
.x67{left:330.517500px;}
.x5e{left:340.599000px;}
.x30{left:354.331500px;}
.x6c{left:356.524500px;}
.x31{left:358.813500px;}
.x68{left:363.244500px;}
.x6d{left:375.201000px;}
.x56{left:413.862000px;}
.x15{left:426.745500px;}
.x62{left:437.874000px;}
.x57{left:446.589000px;}
.x63{left:458.224500px;}
.x16{left:459.472500px;}
.x2a{left:461.125500px;}
.x1f{left:465.589500px;}
.x2b{left:493.852500px;}
.x20{left:3022.786185px;}
.x51{left:3028.385685px;}
.x1b{left:3036.179685px;}
.x64{left:3037.823685px;}
.xe{left:3042.557685px;}
.x21{left:3055.513185px;}
.x5d{left:3057.760185px;}
.x52{left:3061.112685px;}
.xf{left:3075.286185px;}
.x5a{left:3108.013185px;}
.x22{left:3247.924185px;}
.x1c{left:3250.904685px;}
.x14{left:3265.840185px;}
.x23{left:3280.652685px;}
.x65{left:3330.556185px;}
.x2d{left:3354.370185px;}
.x2e{left:3358.852185px;}
.x66{left:3363.283185px;}
.x11{left:3394.057185px;}
.x53{left:3413.900685px;}
.x12{left:3426.784185px;}
.x54{left:3446.627685px;}
.x13{left:3459.511185px;}
.x24{left:3461.164185px;}
.x1d{left:3465.628185px;}
.x25{left:3493.891185px;}
@media print{
.v2{vertical-align:-9.333333pt;}
.v1{vertical-align:-4.714667pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:14.543467pt;}
.ls2{letter-spacing:14.545467pt;}
.ls5{letter-spacing:14.548800pt;}
.ls3{letter-spacing:29.091357pt;}
.ls4{letter-spacing:29.092821pt;}
.ls1{letter-spacing:46.666152pt;}
.ls7{letter-spacing:46.812885pt;}
.ws12{word-spacing:-29.090933pt;}
.ws2{word-spacing:-14.545467pt;}
.ws27{word-spacing:-13.283467pt;}
.ws14{word-spacing:-7.725164pt;}
.ws16{word-spacing:-6.930639pt;}
.ws13{word-spacing:-6.759508pt;}
.wsd{word-spacing:-1.338183pt;}
.ws9{word-spacing:-0.031881pt;}
.ws10{word-spacing:-0.022199pt;}
.ws19{word-spacing:-0.021612pt;}
.wsf{word-spacing:-0.019916pt;}
.ws11{word-spacing:-0.019424pt;}
.ws24{word-spacing:-0.017240pt;}
.ws4{word-spacing:-0.005054pt;}
.ws17{word-spacing:-0.003729pt;}
.ws21{word-spacing:-0.002767pt;}
.ws3{word-spacing:-0.002090pt;}
.ws6{word-spacing:-0.001525pt;}
.ws1b{word-spacing:-0.001053pt;}
.ws5{word-spacing:-0.000755pt;}
.ws20{word-spacing:-0.000097pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.000277pt;}
.wsc{word-spacing:0.001394pt;}
.ws7{word-spacing:0.002340pt;}
.wsa{word-spacing:0.004229pt;}
.ws8{word-spacing:1.328836pt;}
.ws23{word-spacing:2.210911pt;}
.ws1e{word-spacing:2.443638pt;}
.ws22{word-spacing:5.818187pt;}
.ws26{word-spacing:8.873356pt;}
.ws25{word-spacing:14.482277pt;}
.ws18{word-spacing:14.486117pt;}
.wsb{word-spacing:14.487285pt;}
.ws1d{word-spacing:14.490810pt;}
.ws1{word-spacing:27.162101pt;}
.ws1c{word-spacing:30.557491pt;}
.ws15{word-spacing:38.030874pt;}
.wse{word-spacing:43.213935pt;}
.ws1f{word-spacing:380.683954pt;}
._17{margin-left:-14.661830pt;}
._26{margin-left:-6.121045pt;}
._0{margin-left:-4.820323pt;}
._12{margin-left:-3.825664pt;}
._10{margin-left:-2.883593pt;}
._1{margin-left:-1.147696pt;}
._2{width:1.071183pt;}
._5{width:2.740651pt;}
._3{width:4.141252pt;}
._4{width:6.305997pt;}
._9{width:7.704179pt;}
._a{width:9.028542pt;}
._c{width:10.099725pt;}
._8{width:16.974492pt;}
._22{width:21.410927pt;}
._19{width:22.341815pt;}
._e{width:24.389856pt;}
._d{width:31.905949pt;}
._24{width:37.643668pt;}
._1c{width:65.014966pt;}
._1d{width:66.290959pt;}
._7{width:71.954357pt;}
._1e{width:153.183646pt;}
._1f{width:185.025750pt;}
._20{width:190.324507pt;}
._21{width:201.274731pt;}
._23{width:252.334756pt;}
._11{width:257.550279pt;}
._f{width:398.138514pt;}
._14{width:413.526332pt;}
._15{width:462.368462pt;}
._18{width:465.811550pt;}
._16{width:494.674389pt;}
._13{width:501.925717pt;}
._6{width:509.501056pt;}
._25{width:524.322389pt;}
._1b{width:590.934369pt;}
._1a{width:607.005676pt;}
._b{width:925.655081pt;}
.fs9{font-size:14.936776pt;}
.fsc{font-size:19.423875pt;}
.fsa{font-size:19.915629pt;}
.fs8{font-size:20.915840pt;}
.fse{font-size:21.611833pt;}
.fsd{font-size:21.611834pt;}
.fsb{font-size:22.198748pt;}
.fsf{font-size:30.250560pt;}
.fs4{font-size:31.880533pt;}
.fs7{font-size:37.645920pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.059680pt;}
.fs6{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.442667pt;}
.y16b{bottom:11.654853pt;}
.y4f{bottom:14.504117pt;}
.y9{bottom:18.131024pt;}
.y8{bottom:18.397333pt;}
.y40{bottom:19.337333pt;}
.y198{bottom:19.914667pt;}
.y122{bottom:22.513333pt;}
.y5d{bottom:22.602667pt;}
.y60{bottom:22.892000pt;}
.y63{bottom:23.866667pt;}
.yd7{bottom:24.633333pt;}
.y78{bottom:25.885333pt;}
.y7d{bottom:27.481409pt;}
.y137{bottom:27.830667pt;}
.y27{bottom:28.802667pt;}
.y175{bottom:28.845333pt;}
.y18b{bottom:28.921333pt;}
.y80{bottom:29.252000pt;}
.y169{bottom:29.497333pt;}
.yf2{bottom:30.180569pt;}
.y4d{bottom:30.541333pt;}
.ye9{bottom:30.582667pt;}
.y190{bottom:32.245333pt;}
.y84{bottom:32.914667pt;}
.y121{bottom:35.132000pt;}
.y77{bottom:35.184000pt;}
.y15e{bottom:37.045333pt;}
.y1a3{bottom:39.089333pt;}
.y136{bottom:40.450667pt;}
.y3b{bottom:40.566667pt;}
.y5c{bottom:40.668000pt;}
.y5f{bottom:40.957333pt;}
.y10c{bottom:41.438667pt;}
.yec{bottom:41.782667pt;}
.y62{bottom:41.932000pt;}
.y3f{bottom:46.054667pt;}
.y26{bottom:46.868000pt;}
.y120{bottom:47.752000pt;}
.y4c{bottom:48.606667pt;}
.y174{bottom:49.444000pt;}
.y18f{bottom:50.310667pt;}
.y18a{bottom:50.972000pt;}
.y168{bottom:51.200000pt;}
.ya5{bottom:52.101374pt;}
.y75{bottom:52.609333pt;}
.ye8{bottom:52.633333pt;}
.yd6{bottom:52.715882pt;}
.y135{bottom:53.069333pt;}
.y6f{bottom:54.074667pt;}
.y85{bottom:54.653333pt;}
.y83{bottom:54.965333pt;}
.y72{bottom:54.973333pt;}
.yed{bottom:56.605333pt;}
.y14a{bottom:56.836000pt;}
.y7c{bottom:57.447795pt;}
.y15d{bottom:59.096000pt;}
.y10b{bottom:59.504000pt;}
.y11f{bottom:60.370667pt;}
.y3a{bottom:61.164000pt;}
.y1a2{bottom:61.846667pt;}
.yeb{bottom:63.833333pt;}
.y3e{bottom:64.120000pt;}
.y134{bottom:65.689333pt;}
.yf1{bottom:66.510875pt;}
.ya4{bottom:67.464084pt;}
.yd5{bottom:68.078592pt;}
.y18e{bottom:68.377333pt;}
.ya7{bottom:68.783435pt;}
.yb6{bottom:69.397944pt;}
.y11e{bottom:72.990667pt;}
.y189{bottom:73.022667pt;}
.y74{bottom:74.660000pt;}
.ye7{bottom:74.684000pt;}
.ya6{bottom:75.720622pt;}
.y6e{bottom:76.125333pt;}
.yb5{bottom:76.335130pt;}
.y71{bottom:77.024000pt;}
.y133{bottom:78.308000pt;}
.y149{bottom:78.886667pt;}
.y15c{bottom:79.694667pt;}
.y173{bottom:80.152000pt;}
.y11d{bottom:85.609333pt;}
.yea{bottom:85.813333pt;}
.y167{bottom:87.509333pt;}
.y96{bottom:88.575828pt;}
.y25{bottom:88.813333pt;}
.yc7{bottom:89.190336pt;}
.y18d{bottom:90.428000pt;}
.y132{bottom:90.928000pt;}
.y3d{bottom:91.265333pt;}
.y188{bottom:92.740000pt;}
.yf9{bottom:93.101333pt;}
.y49{bottom:94.062667pt;}
.y10a{bottom:94.912000pt;}
.y14{bottom:95.349333pt;}
.y95{bottom:95.513014pt;}
.yc6{bottom:96.127523pt;}
.y73{bottom:96.712000pt;}
.y197{bottom:96.972000pt;}
.ye6{bottom:97.085333pt;}
.y70{bottom:97.621333pt;}
.y6d{bottom:98.177333pt;}
.y172{bottom:98.217333pt;}
.y11c{bottom:98.229333pt;}
.y7e{bottom:98.390813pt;}
.y148{bottom:100.937333pt;}
.y39{bottom:101.612000pt;}
.y131{bottom:103.546667pt;}
.y7{bottom:106.096000pt;}
.y1a1{bottom:106.228000pt;}
.y9f{bottom:107.682741pt;}
.yf8{bottom:107.713333pt;}
.y166{bottom:108.106667pt;}
.yd0{bottom:108.297249pt;}
.y3c{bottom:109.330667pt;}
.y11b{bottom:110.848000pt;}
.y24{bottom:110.864000pt;}
.y18c{bottom:112.756000pt;}
.y9e{bottom:113.752857pt;}
.y92{bottom:114.219238pt;}
.ycf{bottom:114.367366pt;}
.y187{bottom:114.792000pt;}
.yc3{bottom:114.833747pt;}
.y48{bottom:116.113333pt;}
.y130{bottom:116.166667pt;}
.yaf{bottom:116.608471pt;}
.y109{bottom:116.962667pt;}
.y38{bottom:117.552000pt;}
.y15b{bottom:117.726667pt;}
.y196{bottom:119.022667pt;}
.y91{bottom:119.732307pt;}
.y171{bottom:120.268000pt;}
.yc2{bottom:120.346815pt;}
.y1a0{bottom:122.169333pt;}
.yf7{bottom:122.325333pt;}
.y147{bottom:122.988000pt;}
.y11a{bottom:123.468000pt;}
.y6{bottom:124.162667pt;}
.y12f{bottom:128.785333pt;}
.y87{bottom:131.773345pt;}
.y9d{bottom:132.263078pt;}
.yb8{bottom:132.387853pt;}
.y10{bottom:132.466667pt;}
.yce{bottom:132.877586pt;}
.y23{bottom:132.914667pt;}
.yae{bottom:133.799349pt;}
.y119{bottom:136.086667pt;}
.y37{bottom:136.149333pt;}
.y86{bottom:137.286413pt;}
.yb7{bottom:137.900922pt;}
.y47{bottom:138.162667pt;}
.y9c{bottom:138.333194pt;}
.y170{bottom:138.334667pt;}
.ycd{bottom:138.947703pt;}
.y195{bottom:139.620000pt;}
.y15a{bottom:139.777333pt;}
.yad{bottom:139.869465pt;}
.y90{bottom:140.681967pt;}
.y19f{bottom:140.765333pt;}
.yc1{bottom:141.296476pt;}
.y12e{bottom:141.405333pt;}
.y108{bottom:141.669333pt;}
.y5{bottom:142.228000pt;}
.y61{bottom:143.168000pt;}
.y5e{bottom:144.141333pt;}
.y5b{bottom:144.430667pt;}
.y13{bottom:144.441333pt;}
.y146{bottom:145.038667pt;}
.y89{bottom:147.297649pt;}
.y165{bottom:147.334667pt;}
.yba{bottom:147.912158pt;}
.y118{bottom:148.706667pt;}
.yf6{bottom:148.892000pt;}
.ya2{bottom:150.214400pt;}
.yf0{bottom:150.521010pt;}
.yd3{bottom:150.828908pt;}
.yb2{bottom:151.281191pt;}
.y8e{bottom:151.708104pt;}
.ybf{bottom:152.322612pt;}
.y8a{bottom:152.810718pt;}
.ybb{bottom:153.425226pt;}
.ya3{bottom:153.495264pt;}
.y12d{bottom:154.024000pt;}
.yd4{bottom:154.109772pt;}
.y17c{bottom:154.345333pt;}
.yf{bottom:154.517333pt;}
.y22{bottom:154.965333pt;}
.y36{bottom:156.074667pt;}
.ya1{bottom:157.151586pt;}
.y8f{bottom:157.221172pt;}
.yd2{bottom:157.766095pt;}
.yc0{bottom:157.835681pt;}
.yb1{bottom:158.218378pt;}
.y88{bottom:158.323786pt;}
.yb9{bottom:158.938294pt;}
.y46{bottom:160.213333pt;}
.y107{bottom:160.266667pt;}
.y16f{bottom:160.385333pt;}
.y19e{bottom:160.690667pt;}
.y117{bottom:161.325333pt;}
.y159{bottom:161.828000pt;}
.ya0{bottom:164.088773pt;}
.yd1{bottom:164.703281pt;}
.yb0{bottom:165.155564pt;}
.y164{bottom:165.930667pt;}
.y12c{bottom:166.644000pt;}
.y145{bottom:167.089333pt;}
.y8b{bottom:169.349923pt;}
.ybc{bottom:169.964432pt;}
.y7b{bottom:171.225084pt;}
.y8c{bottom:173.760657pt;}
.y116{bottom:173.945333pt;}
.ybd{bottom:174.375165pt;}
.yac{bottom:175.893176pt;}
.y17b{bottom:176.394667pt;}
.ye{bottom:176.568000pt;}
.y21{bottom:177.018667pt;}
.y4{bottom:177.298667pt;}
.y35{bottom:178.125333pt;}
.y16e{bottom:178.450667pt;}
.y12b{bottom:179.262667pt;}
.y106{bottom:180.192000pt;}
.y9b{bottom:181.423752pt;}
.y194{bottom:181.637333pt;}
.yab{bottom:181.963287pt;}
.ycc{bottom:182.038260pt;}
.y45{bottom:182.264000pt;}
.y51{bottom:183.314667pt;}
.y158{bottom:183.878667pt;}
.y163{bottom:184.528000pt;}
.y8d{bottom:184.786519pt;}
.y19d{bottom:185.398667pt;}
.ybe{bottom:185.401027pt;}
.yef{bottom:185.529480pt;}
.y115{bottom:186.564000pt;}
.y9a{bottom:187.493863pt;}
.y144{bottom:188.036000pt;}
.ycb{bottom:188.108372pt;}
.yf5{bottom:189.832000pt;}
.y12a{bottom:191.882667pt;}
.y12{bottom:193.533333pt;}
.y17a{bottom:198.448000pt;}
.yd{bottom:198.618667pt;}
.y114{bottom:199.184000pt;}
.y34{bottom:200.176000pt;}
.y16d{bottom:200.501333pt;}
.y105{bottom:202.244000pt;}
.yaa{bottom:202.931547pt;}
.y162{bottom:203.125333pt;}
.y44{bottom:203.212000pt;}
.y193{bottom:203.688000pt;}
.y19c{bottom:203.996000pt;}
.y129{bottom:204.501333pt;}
.y50{bottom:205.294667pt;}
.y157{bottom:205.929333pt;}
.y94{bottom:206.011830pt;}
.yc5{bottom:206.626339pt;}
.y3{bottom:207.464000pt;}
.yf4{bottom:207.897333pt;}
.ya9{bottom:209.001658pt;}
.yee{bottom:211.568719pt;}
.y113{bottom:211.802667pt;}
.y19{bottom:211.840000pt;}
.y99{bottom:212.149173pt;}
.y93{bottom:212.235534pt;}
.yca{bottom:212.763681pt;}
.yc4{bottom:212.850042pt;}
.y128{bottom:217.121333pt;}
.y98{bottom:218.219284pt;}
.yc9{bottom:218.833793pt;}
.yc{bottom:220.669333pt;}
.y161{bottom:222.253333pt;}
.y2a{bottom:222.293333pt;}
.y112{bottom:224.422667pt;}
.y97{bottom:224.470986pt;}
.y19b{bottom:224.593333pt;}
.yc8{bottom:225.085494pt;}
.y192{bottom:225.738667pt;}
.yb4{bottom:225.739328pt;}
.yf3{bottom:225.962667pt;}
.y156{bottom:228.046667pt;}
.y127{bottom:229.740000pt;}
.y18{bottom:229.905333pt;}
.y13c{bottom:230.053333pt;}
.yb3{bottom:232.676393pt;}
.y179{bottom:235.524000pt;}
.y16c{bottom:236.353333pt;}
.y111{bottom:237.041333pt;}
.y4e{bottom:238.649333pt;}
.yfc{bottom:240.625333pt;}
.y126{bottom:242.360000pt;}
.y11{bottom:242.625333pt;}
.y43{bottom:245.229333pt;}
.y17{bottom:247.970667pt;}
.y191{bottom:248.068000pt;}
.y110{bottom:249.661333pt;}
.y160{bottom:250.168000pt;}
.y13b{bottom:252.104000pt;}
.y178{bottom:253.589333pt;}
.y16a{bottom:254.418667pt;}
.y125{bottom:254.978667pt;}
.yfb{bottom:258.692000pt;}
.y29{bottom:261.653333pt;}
.y19a{bottom:262.174667pt;}
.y10f{bottom:262.280000pt;}
.y2{bottom:264.008000pt;}
.y14c{bottom:266.080000pt;}
.y42{bottom:267.280000pt;}
.y16{bottom:270.089333pt;}
.y139{bottom:270.684000pt;}
.y177{bottom:271.654667pt;}
.y13a{bottom:274.410667pt;}
.y10e{bottom:274.900000pt;}
.yfa{bottom:279.558667pt;}
.y124{bottom:280.217333pt;}
.y199{bottom:280.240000pt;}
.y28{bottom:282.600000pt;}
.y14b{bottom:284.145333pt;}
.y7f{bottom:286.100000pt;}
.y1{bottom:286.854667pt;}
.y15f{bottom:287.241333pt;}
.y76{bottom:287.350667pt;}
.y41{bottom:289.260000pt;}
.y123{bottom:292.837333pt;}
.y176{bottom:293.845333pt;}
.y15{bottom:296.226667pt;}
.y138{bottom:297.250667pt;}
.y10d{bottom:300.138667pt;}
.yb{bottom:322.445333pt;}
.y54{bottom:2689.303720pt;}
.y57{bottom:2689.593053pt;}
.y5a{bottom:2690.567720pt;}
.ya8{bottom:2691.334387pt;}
.y20{bottom:2695.503720pt;}
.y181{bottom:2695.622387pt;}
.y7a{bottom:2695.953053pt;}
.y4b{bottom:2697.242387pt;}
.ye2{bottom:2697.283720pt;}
.y186{bottom:2698.946387pt;}
.y82{bottom:2699.615720pt;}
.y155{bottom:2703.746387pt;}
.y33{bottom:2707.267720pt;}
.y53{bottom:2707.369053pt;}
.y56{bottom:2707.658387pt;}
.ydb{bottom:2708.123720pt;}
.y104{bottom:2708.139720pt;}
.ye5{bottom:2708.483720pt;}
.y59{bottom:2708.633053pt;}
.y1f{bottom:2713.569053pt;}
.y4a{bottom:2715.307720pt;}
.y185{bottom:2717.011720pt;}
.y180{bottom:2717.673053pt;}
.y6c{bottom:2719.310387pt;}
.yde{bottom:2719.323720pt;}
.ye1{bottom:2719.334387pt;}
.y66{bottom:2720.775720pt;}
.y81{bottom:2721.666387pt;}
.y69{bottom:2721.674387pt;}
.y143{bottom:2723.537053pt;}
.y154{bottom:2725.797053pt;}
.y103{bottom:2726.205053pt;}
.y32{bottom:2727.865053pt;}
.yda{bottom:2730.174387pt;}
.ye4{bottom:2730.534387pt;}
.y184{bottom:2735.078387pt;}
.y17f{bottom:2739.723720pt;}
.y6b{bottom:2741.361053pt;}
.ydd{bottom:2741.374387pt;}
.ye0{bottom:2741.385053pt;}
.y65{bottom:2742.826387pt;}
.y68{bottom:2743.725053pt;}
.y142{bottom:2745.587720pt;}
.y153{bottom:2746.395720pt;}
.yd9{bottom:2752.225053pt;}
.ye3{bottom:2752.514387pt;}
.y1e{bottom:2755.514387pt;}
.y183{bottom:2757.129053pt;}
.y17e{bottom:2759.441053pt;}
.y102{bottom:2761.613053pt;}
.ydc{bottom:2763.353053pt;}
.y6a{bottom:2763.413053pt;}
.ydf{bottom:2763.786387pt;}
.y67{bottom:2764.322387pt;}
.y64{bottom:2764.878387pt;}
.y141{bottom:2767.638387pt;}
.y31{bottom:2768.313053pt;}
.yd8{bottom:2774.626387pt;}
.y1d{bottom:2777.565053pt;}
.y182{bottom:2779.457053pt;}
.y17d{bottom:2781.493053pt;}
.y101{bottom:2783.663720pt;}
.y30{bottom:2784.253053pt;}
.y152{bottom:2784.427720pt;}
.y140{bottom:2789.689053pt;}
.y1c{bottom:2799.615720pt;}
.y2f{bottom:2802.850387pt;}
.y151{bottom:2806.478387pt;}
.y100{bottom:2808.370387pt;}
.y58{bottom:2809.869053pt;}
.y55{bottom:2810.842387pt;}
.y52{bottom:2811.131720pt;}
.y13f{bottom:2811.739720pt;}
.y1b{bottom:2821.666387pt;}
.y2e{bottom:2822.775720pt;}
.yff{bottom:2826.967720pt;}
.y150{bottom:2828.529053pt;}
.y13e{bottom:2833.790387pt;}
.y1a{bottom:2843.719720pt;}
.y2d{bottom:2844.826387pt;}
.yfe{bottom:2846.893053pt;}
.y14f{bottom:2850.579720pt;}
.y13d{bottom:2854.737053pt;}
.y2c{bottom:2866.877053pt;}
.yfd{bottom:2868.945053pt;}
.y14e{bottom:2872.630387pt;}
.y2b{bottom:2888.935720pt;}
.y14d{bottom:2894.747720pt;}
.y79{bottom:2952.801053pt;}
.h10{height:-2355.795720pt;}
.h14{height:11.348449pt;}
.h17{height:14.757592pt;}
.h11{height:14.850246pt;}
.h15{height:15.131210pt;}
.h1b{height:16.419927pt;}
.h1a{height:16.419929pt;}
.h16{height:16.865846pt;}
.h1e{height:20.146873pt;}
.h7{height:22.571418pt;}
.ha{height:23.687236pt;}
.he{height:25.072183pt;}
.h6{height:31.341747pt;}
.h4{height:31.582850pt;}
.h20{height:31.859428pt;}
.hb{height:33.857126pt;}
.h1c{height:35.530854pt;}
.h8{height:36.478095pt;}
.h22{height:37.087439pt;}
.h9{height:37.618778pt;}
.hc{height:40.610943pt;}
.h3{height:41.192762pt;}
.h18{height:43.229127pt;}
.h21{height:50.477173pt;}
.h1d{height:52.027600pt;}
.h2{height:54.171251pt;}
.h1f{height:55.272773pt;}
.hf{height:56.849209pt;}
.hd{height:64.746796pt;}
.h5{height:80.937417pt;}
.h12{height:182.577853pt;}
.h19{height:215.673702pt;}
.h13{height:243.235277pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w4{width:-2380.922387pt;}
.w7{width:158.740247pt;}
.w8{width:238.111584pt;}
.w5{width:259.269267pt;}
.w3{width:296.322767pt;}
.w2{width:370.421406pt;}
.w6{width:407.419097pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x2f{left:3.719490pt;}
.x3e{left:5.024981pt;}
.xb{left:16.121333pt;}
.x26{left:20.220000pt;}
.x2c{left:25.197333pt;}
.x1e{left:32.125333pt;}
.x3f{left:33.352841pt;}
.xd{left:38.466667pt;}
.x58{left:39.903056pt;}
.x10{left:42.836000pt;}
.x46{left:45.672199pt;}
.x27{left:49.310667pt;}
.x5c{left:51.397333pt;}
.x55{left:54.288000pt;}
.xc{left:66.886667pt;}
.x42{left:68.154564pt;}
.x5f{left:69.131643pt;}
.x43{left:71.814756pt;}
.x44{left:74.299648pt;}
.x49{left:75.544838pt;}
.x40{left:78.073652pt;}
.x41{left:80.444729pt;}
.x1{left:84.348000pt;}
.x19{left:86.032269pt;}
.x45{left:87.689995pt;}
.x48{left:92.307713pt;}
.x5b{left:95.977333pt;}
.x32{left:98.645333pt;}
.x9{left:107.545547pt;}
.x3b{left:115.790268pt;}
.x8{left:117.166667pt;}
.xa{left:121.245333pt;}
.x1a{left:126.072000pt;}
.x39{left:127.902950pt;}
.x3d{left:130.037159pt;}
.x3a{left:133.555487pt;}
.x47{left:135.664402pt;}
.x3c{left:137.868138pt;}
.x33{left:140.704481pt;}
.x38{left:143.730055pt;}
.x37{left:146.765704pt;}
.x34{left:148.052779pt;}
.x35{left:152.418241pt;}
.x18{left:154.205333pt;}
.x36{left:158.070778pt;}
.x4{left:167.698667pt;}
.x69{left:171.649333pt;}
.x60{left:179.525333pt;}
.x50{left:182.585588pt;}
.x4e{left:187.584658pt;}
.x4d{left:189.040502pt;}
.x4c{left:191.377962pt;}
.x4b{left:195.286488pt;}
.x61{left:197.614667pt;}
.x59{left:198.553333pt;}
.x4a{left:200.028642pt;}
.x4f{left:205.755977pt;}
.x6{left:216.929333pt;}
.x28{left:220.342667pt;}
.x2{left:222.413333pt;}
.x17{left:236.268000pt;}
.x6a{left:239.472000pt;}
.x3{left:247.729333pt;}
.x29{left:249.434667pt;}
.x6b{left:256.073333pt;}
.x5{left:267.133333pt;}
.x7{left:283.868000pt;}
.x67{left:293.793333pt;}
.x5e{left:302.754667pt;}
.x30{left:314.961333pt;}
.x6c{left:316.910667pt;}
.x31{left:318.945333pt;}
.x68{left:322.884000pt;}
.x6d{left:333.512000pt;}
.x56{left:367.877333pt;}
.x15{left:379.329333pt;}
.x62{left:389.221333pt;}
.x57{left:396.968000pt;}
.x63{left:407.310667pt;}
.x16{left:408.420000pt;}
.x2a{left:409.889333pt;}
.x1f{left:413.857333pt;}
.x2b{left:438.980000pt;}
.x20{left:2686.921053pt;}
.x51{left:2691.898387pt;}
.x1b{left:2698.826387pt;}
.x64{left:2700.287720pt;}
.xe{left:2704.495720pt;}
.x21{left:2716.011720pt;}
.x5d{left:2718.009053pt;}
.x52{left:2720.989053pt;}
.xf{left:2733.587720pt;}
.x5a{left:2762.678387pt;}
.x22{left:2887.043720pt;}
.x1c{left:2889.693053pt;}
.x14{left:2902.969053pt;}
.x23{left:2916.135720pt;}
.x65{left:2960.494387pt;}
.x2d{left:2981.662387pt;}
.x2e{left:2985.646387pt;}
.x66{left:2989.585053pt;}
.x11{left:3016.939720pt;}
.x53{left:3034.578387pt;}
.x12{left:3046.030387pt;}
.x54{left:3063.669053pt;}
.x13{left:3075.121053pt;}
.x24{left:3076.590387pt;}
.x1d{left:3080.558387pt;}
.x25{left:3105.681053pt;}
}




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