
    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_25124a84b639386b0f9bd6a5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.890137;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_30c56e4e340517addca9539b.woff')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_2e24bc187d5da8be38714d4b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_62e5c0807f45b045c5d7d754.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7b2d36a03252acf5c65ab59e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_dfa75bac17511dc97962e652.woff')format("woff");}.ff6{font-family:ff6;line-height:0.726562;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_799b8701a23a2d9e13f7b87a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_06d3ab3f898132360975798f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.935547;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f55308cf9191d69be3882182.woff')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_2ca49f97d13bfd9fc92a81cd.woff')format("woff");}.ffb{font-family:ffb;line-height:0.940430;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_35dd9cef243773716f640d65.woff')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_ddf9c0c405be79037efa979d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.973145;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_3bbb07728978d6f7dca4560b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.973145;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_c10fb345c2832f9280d6e7b8.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;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:ff10;src:url('chunks/assets/font_9b51e6f945da0cca29c7eda4.woff')format("woff");}.ff10{font-family:ff10;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1ff29ab73c7e67cb22965cc0.woff')format("woff");}.ff11{font-family:ff11;line-height:0.952148;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:ff12;src:url('chunks/assets/font_fb0d3a07d7f440565c80b4b0.woff')format("woff");}.ff12{font-family:ff12;line-height:0.722656;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:ff13;src:url('chunks/assets/font_27bc85b1fa8c24020c074d86.woff')format("woff");}.ff13{font-family:ff13;line-height:0.922363;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;}
.m3{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-23.759990px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010553px;}
.ls4{letter-spacing:0.021282px;}
.ls2{letter-spacing:0.073080px;}
.ls5{letter-spacing:0.195300px;}
.ls1{letter-spacing:0.340926px;}
.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;}
}
.ws0{word-spacing:-18.532793px;}
.ws4{word-spacing:-18.021275px;}
.ws1{word-spacing:-17.999993px;}
.ws6{word-spacing:-13.715995px;}
.ws5{word-spacing:-13.013995px;}
.ws2{word-spacing:-10.342076px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-937.399989px;}
._c{margin-left:-468.216941px;}
._4{margin-left:-277.545825px;}
._b{margin-left:-229.327439px;}
._6{margin-left:-219.254252px;}
._9{margin-left:-211.190256px;}
._2{margin-left:-90.563177px;}
._a{margin-left:-68.874927px;}
._8{margin-left:-52.559242px;}
._1{margin-left:-25.559162px;}
._5{margin-left:-16.559129px;}
._43{margin-left:-2.688193px;}
._3{margin-left:-1.684403px;}
._0{width:1.100031px;}
._14{width:2.515583px;}
._1b{width:3.609962px;}
._1a{width:4.948100px;}
._15{width:6.134214px;}
._16{width:7.415577px;}
._22{width:8.478524px;}
._12{width:9.698505px;}
._11{width:10.852055px;}
._17{width:11.920626px;}
._19{width:14.274012px;}
._18{width:15.340073px;}
._1c{width:17.063570px;}
._1f{width:19.067485px;}
._2e{width:20.714263px;}
._10{width:21.805797px;}
._f{width:23.142175px;}
._13{width:25.040283px;}
._2b{width:26.271498px;}
._2a{width:27.397280px;}
._27{width:29.189454px;}
._20{width:30.388365px;}
._21{width:31.654362px;}
._e{width:32.707116px;}
._d{width:34.131503px;}
._2f{width:35.540639px;}
._35{width:36.714303px;}
._37{width:38.559111px;}
._2c{width:39.654759px;}
._2d{width:41.215037px;}
._3d{width:42.821481px;}
._3e{width:43.892205px;}
._3b{width:45.001826px;}
._41{width:46.159272px;}
._29{width:47.201366px;}
._28{width:49.189053px;}
._40{width:50.392584px;}
._23{width:51.476120px;}
._24{width:52.852382px;}
._3c{width:54.667353px;}
._3f{width:56.717626px;}
._32{width:57.865809px;}
._33{width:58.941497px;}
._1d{width:60.824691px;}
._1e{width:61.928717px;}
._44{width:63.327473px;}
._36{width:65.554636px;}
._25{width:67.562961px;}
._26{width:68.721321px;}
._45{width:69.894872px;}
._30{width:72.223781px;}
._31{width:73.419361px;}
._34{width:74.563567px;}
._38{width:80.239529px;}
._39{width:81.263908px;}
._42{width:83.698872px;}
._46{width:93.223472px;}
._47{width:94.962540px;}
._48{width:99.678405px;}
._49{width:100.694477px;}
._3a{width:109.088000px;}
.fc4{color:rgb(0,101,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,130,59);}
.fc0{color:rgb(51,153,51);}
.fs3{font-size:17.999993px;}
.fs7{font-size:33.119987px;}
.fsb{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fs5{font-size:48.239981px;}
.fs9{font-size:53.999978px;}
.fsa{font-size:59.759976px;}
.fs8{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fsc{font-size:74.879970px;}
.fs0{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y46{bottom:-5.761018px;}
.y0{bottom:0.000000px;}
.y21{bottom:3.059146px;}
.y10{bottom:3.239055px;}
.y1c{bottom:3.599129px;}
.y1f{bottom:3.599133px;}
.y6{bottom:4.138948px;}
.y2{bottom:4.678926px;}
.y12{bottom:4.859062px;}
.y17{bottom:4.859080px;}
.y41{bottom:6.478948px;}
.y4{bottom:58.620277px;}
.y3f{bottom:112.800255px;}
.y73{bottom:121.619951px;}
.y79{bottom:124.139950px;}
.y38{bottom:124.679950px;}
.y3e{bottom:129.359948px;}
.yb7{bottom:136.739945px;}
.ye1{bottom:140.519944px;}
.y72{bottom:144.659942px;}
.y37{bottom:145.379942px;}
.y78{bottom:147.179941px;}
.y3d{bottom:150.059940px;}
.yb6{bottom:160.499936px;}
.ye0{bottom:164.279934px;}
.y36{bottom:166.079934px;}
.y71{bottom:167.699933px;}
.y77{bottom:170.219932px;}
.y3c{bottom:170.759932px;}
.yb5{bottom:184.259926px;}
.y35{bottom:186.779925px;}
.ydf{bottom:188.039925px;}
.y70{bottom:190.559924px;}
.y3b{bottom:191.459923px;}
.y8f{bottom:191.819923px;}
.y76{bottom:193.259923px;}
.yb4{bottom:208.019917px;}
.yde{bottom:211.799915px;}
.y3a{bottom:212.159915px;}
.y6f{bottom:213.599915px;}
.y34{bottom:213.959914px;}
.y81{bottom:214.859914px;}
.y75{bottom:216.119914px;}
.yb3{bottom:231.959907px;}
.y39{bottom:232.859907px;}
.ydd{bottom:235.559906px;}
.y6e{bottom:236.639905px;}
.y33{bottom:236.999905px;}
.y74{bottom:237.899905px;}
.y80{bottom:239.159904px;}
.y32{bottom:253.199899px;}
.yb2{bottom:255.719898px;}
.y31{bottom:256.979897px;}
.ydc{bottom:259.319896px;}
.y6d{bottom:259.679896px;}
.y7f{bottom:262.199895px;}
.y30{bottom:277.499889px;}
.yb1{bottom:279.479888px;}
.y6c{bottom:282.719887px;}
.ydb{bottom:283.259887px;}
.y7e{bottom:285.239886px;}
.y2f{bottom:300.359880px;}
.yb0{bottom:303.239879px;}
.y6b{bottom:305.759878px;}
.yda{bottom:307.019877px;}
.y7d{bottom:308.279877px;}
.y2e{bottom:323.399871px;}
.yaf{bottom:326.999869px;}
.y6a{bottom:328.619869px;}
.yd9{bottom:330.779868px;}
.y7c{bottom:331.319867px;}
.y2d{bottom:346.439861px;}
.yae{bottom:350.759860px;}
.y69{bottom:351.659859px;}
.y7b{bottom:354.179858px;}
.yd8{bottom:354.539858px;}
.y2c{bottom:369.479852px;}
.yad{bottom:374.519850px;}
.y68{bottom:374.699850px;}
.y7a{bottom:375.959850px;}
.y8e{bottom:377.219849px;}
.yd7{bottom:378.299849px;}
.y2b{bottom:392.519843px;}
.y67{bottom:397.739841px;}
.yac{bottom:398.279841px;}
.y8d{bottom:400.259840px;}
.yd6{bottom:402.059839px;}
.y2a{bottom:415.559834px;}
.y66{bottom:420.779832px;}
.yab{bottom:422.039831px;}
.y8c{bottom:423.299831px;}
.yd5{bottom:425.819830px;}
.y29{bottom:438.419825px;}
.y65{bottom:443.819822px;}
.yaa{bottom:445.799822px;}
.y8b{bottom:446.339821px;}
.yd4{bottom:449.579820px;}
.y28{bottom:461.459815px;}
.y64{bottom:466.679813px;}
.y8a{bottom:469.379812px;}
.ya9{bottom:469.559812px;}
.yd3{bottom:473.339811px;}
.y27{bottom:484.499806px;}
.y63{bottom:489.719804px;}
.y89{bottom:492.239803px;}
.ya8{bottom:493.499803px;}
.yd2{bottom:496.019802px;}
.y26{bottom:507.539797px;}
.y62{bottom:512.759795px;}
.y88{bottom:515.279794px;}
.ya7{bottom:517.259793px;}
.yd1{bottom:518.339793px;}
.y25{bottom:530.579788px;}
.y61{bottom:535.799786px;}
.y87{bottom:538.319785px;}
.ya6{bottom:541.019784px;}
.yd0{bottom:542.099783px;}
.y24{bottom:553.619779px;}
.y60{bottom:558.839776px;}
.y86{bottom:561.359775px;}
.ya5{bottom:564.779774px;}
.ycf{bottom:565.859774px;}
.y23{bottom:577.559769px;}
.y5f{bottom:581.699767px;}
.y85{bottom:584.399766px;}
.ya4{bottom:588.539765px;}
.yce{bottom:589.619764px;}
.y5e{bottom:604.739758px;}
.y84{bottom:607.439757px;}
.y22{bottom:611.039756px;}
.ya3{bottom:612.299755px;}
.ycd{bottom:613.379755px;}
.y5d{bottom:627.779749px;}
.y83{bottom:630.299748px;}
.y20{bottom:631.020600px;}
.ya2{bottom:636.059746px;}
.ycc{bottom:637.139745px;}
.y5c{bottom:650.819740px;}
.y82{bottom:652.079739px;}
.ya1{bottom:659.819736px;}
.ycb{bottom:660.899736px;}
.y1e{bottom:664.500600px;}
.y1d{bottom:668.099733px;}
.y1b{bottom:673.500600px;}
.y5b{bottom:673.859730px;}
.ya0{bottom:683.579727px;}
.yca{bottom:684.659726px;}
.y5a{bottom:696.899721px;}
.y1a{bottom:707.339717px;}
.yc9{bottom:708.419717px;}
.y59{bottom:719.759712px;}
.y9f{bottom:731.099708px;}
.yc8{bottom:732.359707px;}
.y58{bottom:742.799703px;}
.y19{bottom:744.059702px;}
.y9e{bottom:754.859698px;}
.y57{bottom:765.839694px;}
.y18{bottom:768.719693px;}
.yc7{bottom:777.179689px;}
.y9d{bottom:778.799688px;}
.y56{bottom:788.879684px;}
.y16{bottom:794.460600px;}
.yc6{bottom:800.939680px;}
.y9c{bottom:802.559679px;}
.y15{bottom:805.259678px;}
.y55{bottom:811.919675px;}
.y14{bottom:817.139673px;}
.yc5{bottom:824.699670px;}
.y9b{bottom:826.319669px;}
.y54{bottom:834.959666px;}
.y11{bottom:839.820600px;}
.yc4{bottom:848.459661px;}
.y13{bottom:849.899660px;}
.y9a{bottom:850.079660px;}
.y53{bottom:857.819657px;}
.yf{bottom:859.980600px;}
.yc3{bottom:872.219651px;}
.yf3{bottom:873.299651px;}
.y99{bottom:873.839650px;}
.y52{bottom:880.859648px;}
.ye{bottom:893.639643px;}
.yc2{bottom:895.979642px;}
.yf2{bottom:896.159642px;}
.y98{bottom:897.599641px;}
.y51{bottom:903.899638px;}
.yf1{bottom:919.199632px;}
.yc1{bottom:919.919632px;}
.y97{bottom:921.359631px;}
.y50{bottom:926.939629px;}
.yd{bottom:934.319626px;}
.yea{bottom:940.619624px;}
.yc0{bottom:943.679623px;}
.y96{bottom:945.119622px;}
.y4f{bottom:949.979620px;}
.ye9{bottom:962.039615px;}
.ybf{bottom:967.439613px;}
.y95{bottom:968.879612px;}
.y4e{bottom:973.019611px;}
.yc{bottom:974.999610px;}
.ye8{bottom:983.459607px;}
.yf0{bottom:986.519605px;}
.ybe{bottom:991.199604px;}
.y94{bottom:992.639603px;}
.y4d{bottom:995.879602px;}
.yb{bottom:999.299600px;}
.ye7{bottom:1004.879598px;}
.yef{bottom:1011.179596px;}
.ybd{bottom:1014.959594px;}
.y93{bottom:1016.399593px;}
.ya{bottom:1017.659593px;}
.y9{bottom:1018.019593px;}
.y4c{bottom:1018.919592px;}
.ye6{bottom:1026.479589px;}
.yee{bottom:1035.659586px;}
.ybc{bottom:1038.719585px;}
.y92{bottom:1040.159584px;}
.y4b{bottom:1041.959583px;}
.ye5{bottom:1047.899581px;}
.y45{bottom:1051.500600px;}
.yed{bottom:1060.139576px;}
.ybb{bottom:1062.479575px;}
.y91{bottom:1064.099574px;}
.y4a{bottom:1064.999574px;}
.y44{bottom:1066.979573px;}
.ye4{bottom:1069.319572px;}
.yec{bottom:1084.799566px;}
.yba{bottom:1086.239566px;}
.y43{bottom:1087.319565px;}
.y90{bottom:1087.859565px;}
.y49{bottom:1088.039565px;}
.ye3{bottom:1090.919564px;}
.y42{bottom:1107.659557px;}
.yeb{bottom:1109.279556px;}
.yb9{bottom:1109.999556px;}
.y48{bottom:1110.899556px;}
.ye2{bottom:1112.339555px;}
.y8{bottom:1118.099553px;}
.y7{bottom:1118.459553px;}
.y40{bottom:1122.600600px;}
.y5{bottom:1125.480600px;}
.yb8{bottom:1133.759546px;}
.y47{bottom:1133.939546px;}
.y3{bottom:1151.039540px;}
.y1{bottom:1179.120600px;}
.h24{height:12.060000px;}
.hb{height:13.500000px;}
.h19{height:15.120000px;}
.h16{height:18.720000px;}
.h9{height:18.773430px;}
.h18{height:18.900000px;}
.hd{height:20.160000px;}
.h12{height:20.340000px;}
.h5{height:20.520000px;}
.h11{height:22.187804px;}
.h21{height:23.760000px;}
.h14{height:24.474365px;}
.h1{height:24.480000px;}
.h1d{height:25.913662px;}
.hf{height:26.008583px;}
.h1f{height:27.228505px;}
.h1b{height:32.152136px;}
.hc{height:32.269909px;}
.h10{height:36.179986px;}
.h26{height:36.486196px;}
.h1a{height:40.842757px;}
.h1e{height:43.185920px;}
.h1c{height:45.199318px;}
.h6{height:47.988262px;}
.he{height:48.164043px;}
.h13{height:48.234356px;}
.h17{height:50.100449px;}
.h23{height:53.999978px;}
.h8{height:54.457009px;}
.h25{height:56.159978px;}
.h2{height:58.861031px;}
.h22{height:63.179975px;}
.ha{height:64.058178px;}
.h15{height:70.628878px;}
.h20{height:70.664034px;}
.h4{height:72.562471px;}
.h7{height:78.468719px;}
.h3{height:82.676920px;}
.h0{height:1263.000000px;}
.w2{width:4.680000px;}
.w4{width:7.020000px;}
.wb{width:7.200000px;}
.we{width:8.100000px;}
.w7{width:8.280000px;}
.w6{width:8.820000px;}
.wd{width:9.540000px;}
.w12{width:10.800000px;}
.w5{width:24.840000px;}
.w1{width:73.980000px;}
.w3{width:77.400000px;}
.wf{width:81.360000px;}
.w9{width:165.060000px;}
.w8{width:237.420000px;}
.wc{width:308.700000px;}
.wa{width:358.020000px;}
.w11{width:532.080000px;}
.w10{width:532.620000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:107.999957px;}
.x1a{left:111.240000px;}
.xa{left:116.100000px;}
.xc{left:130.679908px;}
.x1f{left:188.460000px;}
.xd{left:200.339857px;}
.xe{left:204.839853px;}
.xb{left:206.999917px;}
.x23{left:249.120000px;}
.xf{left:259.740421px;}
.x27{left:341.999863px;}
.x18{left:344.519862px;}
.x9{left:346.499861px;}
.x19{left:354.600000px;}
.x24{left:433.079827px;}
.x22{left:462.600477px;}
.x1b{left:468.900000px;}
.x1c{left:475.920000px;}
.x10{left:493.920784px;}
.x11{left:507.240775px;}
.x12{left:520.560767px;}
.x1d{left:523.972290px;}
.x13{left:533.700759px;}
.x14{left:538.200756px;}
.x25{left:539.630934px;}
.x1{left:549.000000px;}
.x26{left:588.779764px;}
.x15{left:591.300737px;}
.x16{left:608.940666px;}
.x2{left:622.980000px;}
.x3{left:627.660000px;}
.x21{left:639.899744px;}
.x17{left:666.359733px;}
.x4{left:705.060000px;}
.x20{left:721.080000px;}
.x5{left:722.340000px;}
.x6{left:747.180000px;}
.x7{left:772.020000px;}
.x1e{left:780.300000px;}
@media print{
.v1{vertical-align:-21.119992pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009381pt;}
.ls4{letter-spacing:0.018917pt;}
.ls2{letter-spacing:0.064960pt;}
.ls5{letter-spacing:0.173600pt;}
.ls1{letter-spacing:0.303046pt;}
.ws0{word-spacing:-16.473593pt;}
.ws4{word-spacing:-16.018911pt;}
.ws1{word-spacing:-15.999994pt;}
.ws6{word-spacing:-12.191995pt;}
.ws5{word-spacing:-11.567995pt;}
.ws2{word-spacing:-9.192956pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-833.244435pt;}
._c{margin-left:-416.192836pt;}
._4{margin-left:-246.707400pt;}
._b{margin-left:-203.846612pt;}
._6{margin-left:-194.892669pt;}
._9{margin-left:-187.724672pt;}
._2{margin-left:-80.500602pt;}
._a{margin-left:-61.222157pt;}
._8{margin-left:-46.719326pt;}
._1{margin-left:-22.719255pt;}
._5{margin-left:-14.719226pt;}
._43{margin-left:-2.389505pt;}
._3{margin-left:-1.497247pt;}
._0{width:0.977805pt;}
._14{width:2.236073pt;}
._1b{width:3.208855pt;}
._1a{width:4.398311pt;}
._15{width:5.452635pt;}
._16{width:6.591624pt;}
._22{width:7.536465pt;}
._12{width:8.620893pt;}
._11{width:9.646271pt;}
._17{width:10.596112pt;}
._19{width:12.688011pt;}
._18{width:13.635621pt;}
._1c{width:15.167618pt;}
._1f{width:16.948876pt;}
._2e{width:18.412678pt;}
._10{width:19.382930pt;}
._f{width:20.570822pt;}
._13{width:22.258029pt;}
._2b{width:23.352443pt;}
._2a{width:24.353138pt;}
._27{width:25.946181pt;}
._20{width:27.011880pt;}
._21{width:28.137210pt;}
._e{width:29.072992pt;}
._d{width:30.339114pt;}
._2f{width:31.591679pt;}
._35{width:32.634936pt;}
._37{width:34.274765pt;}
._2c{width:35.248674pt;}
._2d{width:36.635589pt;}
._3d{width:38.063539pt;}
._3e{width:39.015293pt;}
._3b{width:40.001623pt;}
._41{width:41.030464pt;}
._29{width:41.956770pt;}
._28{width:43.723602pt;}
._40{width:44.793408pt;}
._23{width:45.756552pt;}
._24{width:46.979895pt;}
._3c{width:48.593203pt;}
._3f{width:50.415668pt;}
._32{width:51.436275pt;}
._33{width:52.392442pt;}
._1d{width:54.066392pt;}
._1e{width:55.047748pt;}
._44{width:56.291087pt;}
._36{width:58.270787pt;}
._25{width:60.055965pt;}
._26{width:61.085619pt;}
._45{width:62.128775pt;}
._30{width:64.198917pt;}
._31{width:65.261654pt;}
._34{width:66.278727pt;}
._38{width:71.324026pt;}
._39{width:72.234585pt;}
._42{width:74.398997pt;}
._46{width:82.865309pt;}
._47{width:84.411147pt;}
._48{width:88.603026pt;}
._49{width:89.506202pt;}
._3a{width:96.967111pt;}
.fs3{font-size:15.999994pt;}
.fs7{font-size:29.439988pt;}
.fsb{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fs5{font-size:42.879983pt;}
.fs9{font-size:47.999981pt;}
.fsa{font-size:53.119979pt;}
.fs8{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fsc{font-size:66.559973pt;}
.fs0{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y46{bottom:-5.120905pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:2.719241pt;}
.y10{bottom:2.879160pt;}
.y1c{bottom:3.199226pt;}
.y1f{bottom:3.199229pt;}
.y6{bottom:3.679065pt;}
.y2{bottom:4.159046pt;}
.y12{bottom:4.319166pt;}
.y17{bottom:4.319182pt;}
.y41{bottom:5.759065pt;}
.y4{bottom:52.106912pt;}
.y3f{bottom:100.266893pt;}
.y73{bottom:108.106623pt;}
.y79{bottom:110.346623pt;}
.y38{bottom:110.826622pt;}
.y3e{bottom:114.986621pt;}
.yb7{bottom:121.546618pt;}
.ye1{bottom:124.906617pt;}
.y72{bottom:128.586615pt;}
.y37{bottom:129.226615pt;}
.y78{bottom:130.826614pt;}
.y3d{bottom:133.386613pt;}
.yb6{bottom:142.666610pt;}
.ye0{bottom:146.026608pt;}
.y36{bottom:147.626608pt;}
.y71{bottom:149.066607pt;}
.y77{bottom:151.306606pt;}
.y3c{bottom:151.786606pt;}
.yb5{bottom:163.786601pt;}
.y35{bottom:166.026600pt;}
.ydf{bottom:167.146600pt;}
.y70{bottom:169.386599pt;}
.y3b{bottom:170.186599pt;}
.y8f{bottom:170.506598pt;}
.y76{bottom:171.786598pt;}
.yb4{bottom:184.906593pt;}
.yde{bottom:188.266591pt;}
.y3a{bottom:188.586591pt;}
.y6f{bottom:189.866591pt;}
.y34{bottom:190.186591pt;}
.y81{bottom:190.986590pt;}
.y75{bottom:192.106590pt;}
.yb3{bottom:206.186584pt;}
.y39{bottom:206.986584pt;}
.ydd{bottom:209.386583pt;}
.y6e{bottom:210.346583pt;}
.y33{bottom:210.666582pt;}
.y74{bottom:211.466582pt;}
.y80{bottom:212.586582pt;}
.y32{bottom:225.066577pt;}
.yb2{bottom:227.306576pt;}
.y31{bottom:228.426575pt;}
.ydc{bottom:230.506574pt;}
.y6d{bottom:230.826574pt;}
.y7f{bottom:233.066573pt;}
.y30{bottom:246.666568pt;}
.yb1{bottom:248.426567pt;}
.y6c{bottom:251.306566pt;}
.ydb{bottom:251.786566pt;}
.y7e{bottom:253.546565pt;}
.y2f{bottom:266.986560pt;}
.yb0{bottom:269.546559pt;}
.y6b{bottom:271.786558pt;}
.yda{bottom:272.906558pt;}
.y7d{bottom:274.026557pt;}
.y2e{bottom:287.466552pt;}
.yaf{bottom:290.666550pt;}
.y6a{bottom:292.106550pt;}
.yd9{bottom:294.026549pt;}
.y7c{bottom:294.506549pt;}
.y2d{bottom:307.946543pt;}
.yae{bottom:311.786542pt;}
.y69{bottom:312.586542pt;}
.y7b{bottom:314.826541pt;}
.yd8{bottom:315.146541pt;}
.y2c{bottom:328.426535pt;}
.yad{bottom:332.906534pt;}
.y68{bottom:333.066533pt;}
.y7a{bottom:334.186533pt;}
.y8e{bottom:335.306533pt;}
.yd7{bottom:336.266532pt;}
.y2b{bottom:348.906527pt;}
.y67{bottom:353.546525pt;}
.yac{bottom:354.026525pt;}
.y8d{bottom:355.786524pt;}
.yd6{bottom:357.386524pt;}
.y2a{bottom:369.386519pt;}
.y66{bottom:374.026517pt;}
.yab{bottom:375.146517pt;}
.y8c{bottom:376.266516pt;}
.yd5{bottom:378.506515pt;}
.y29{bottom:389.706511pt;}
.y65{bottom:394.506509pt;}
.yaa{bottom:396.266508pt;}
.y8b{bottom:396.746508pt;}
.yd4{bottom:399.626507pt;}
.y28{bottom:410.186503pt;}
.y64{bottom:414.826501pt;}
.y8a{bottom:417.226500pt;}
.ya9{bottom:417.386500pt;}
.yd3{bottom:420.746498pt;}
.y27{bottom:430.666494pt;}
.y63{bottom:435.306493pt;}
.y89{bottom:437.546492pt;}
.ya8{bottom:438.666491pt;}
.yd2{bottom:440.906490pt;}
.y26{bottom:451.146486pt;}
.y62{bottom:455.786484pt;}
.y88{bottom:458.026483pt;}
.ya7{bottom:459.786483pt;}
.yd1{bottom:460.746482pt;}
.y25{bottom:471.626478pt;}
.y61{bottom:476.266476pt;}
.y87{bottom:478.506475pt;}
.ya6{bottom:480.906474pt;}
.yd0{bottom:481.866474pt;}
.y24{bottom:492.106470pt;}
.y60{bottom:496.746468pt;}
.y86{bottom:498.986467pt;}
.ya5{bottom:502.026466pt;}
.ycf{bottom:502.986465pt;}
.y23{bottom:513.386461pt;}
.y5f{bottom:517.066460pt;}
.y85{bottom:519.466459pt;}
.ya4{bottom:523.146457pt;}
.yce{bottom:524.106457pt;}
.y5e{bottom:537.546452pt;}
.y84{bottom:539.946451pt;}
.y22{bottom:543.146449pt;}
.ya3{bottom:544.266449pt;}
.ycd{bottom:545.226449pt;}
.y5d{bottom:558.026443pt;}
.y83{bottom:560.266443pt;}
.y20{bottom:560.907200pt;}
.ya2{bottom:565.386441pt;}
.ycc{bottom:566.346440pt;}
.y5c{bottom:578.506435pt;}
.y82{bottom:579.626435pt;}
.ya1{bottom:586.506432pt;}
.ycb{bottom:587.466432pt;}
.y1e{bottom:590.667200pt;}
.y1d{bottom:593.866429pt;}
.y1b{bottom:598.667200pt;}
.y5b{bottom:598.986427pt;}
.ya0{bottom:607.626424pt;}
.yca{bottom:608.586423pt;}
.y5a{bottom:619.466419pt;}
.y1a{bottom:628.746415pt;}
.yc9{bottom:629.706415pt;}
.y59{bottom:639.786411pt;}
.y9f{bottom:649.866407pt;}
.yc8{bottom:650.986406pt;}
.y58{bottom:660.266403pt;}
.y19{bottom:661.386402pt;}
.y9e{bottom:670.986398pt;}
.y57{bottom:680.746394pt;}
.y18{bottom:683.306393pt;}
.yc7{bottom:690.826390pt;}
.y9d{bottom:692.266390pt;}
.y56{bottom:701.226386pt;}
.y16{bottom:706.187200pt;}
.yc6{bottom:711.946382pt;}
.y9c{bottom:713.386381pt;}
.y15{bottom:715.786380pt;}
.y55{bottom:721.706378pt;}
.y14{bottom:726.346376pt;}
.yc5{bottom:733.066373pt;}
.y9b{bottom:734.506373pt;}
.y54{bottom:742.186370pt;}
.y11{bottom:746.507200pt;}
.yc4{bottom:754.186365pt;}
.y13{bottom:755.466364pt;}
.y9a{bottom:755.626364pt;}
.y53{bottom:762.506362pt;}
.yf{bottom:764.427200pt;}
.yc3{bottom:775.306357pt;}
.yf3{bottom:776.266356pt;}
.y99{bottom:776.746356pt;}
.y52{bottom:782.986353pt;}
.ye{bottom:794.346349pt;}
.yc2{bottom:796.426348pt;}
.yf2{bottom:796.586348pt;}
.y98{bottom:797.866348pt;}
.y51{bottom:803.466345pt;}
.yf1{bottom:817.066340pt;}
.yc1{bottom:817.706340pt;}
.y97{bottom:818.986339pt;}
.y50{bottom:823.946337pt;}
.yd{bottom:830.506334pt;}
.yea{bottom:836.106332pt;}
.yc0{bottom:838.826331pt;}
.y96{bottom:840.106331pt;}
.y4f{bottom:844.426329pt;}
.ye9{bottom:855.146325pt;}
.ybf{bottom:859.946323pt;}
.y95{bottom:861.226322pt;}
.y4e{bottom:864.906321pt;}
.yc{bottom:866.666320pt;}
.ye8{bottom:874.186317pt;}
.yf0{bottom:876.906316pt;}
.ybe{bottom:881.066314pt;}
.y94{bottom:882.346314pt;}
.y4d{bottom:885.226313pt;}
.yb{bottom:888.266311pt;}
.ye7{bottom:893.226309pt;}
.yef{bottom:898.826307pt;}
.ybd{bottom:902.186306pt;}
.y93{bottom:903.466305pt;}
.ya{bottom:904.586305pt;}
.y9{bottom:904.906305pt;}
.y4c{bottom:905.706304pt;}
.ye6{bottom:912.426302pt;}
.yee{bottom:920.586298pt;}
.ybc{bottom:923.306297pt;}
.y92{bottom:924.586297pt;}
.y4b{bottom:926.186296pt;}
.ye5{bottom:931.466294pt;}
.y45{bottom:934.667200pt;}
.yed{bottom:942.346290pt;}
.ybb{bottom:944.426289pt;}
.y91{bottom:945.866288pt;}
.y4a{bottom:946.666288pt;}
.y44{bottom:948.426287pt;}
.ye4{bottom:950.506286pt;}
.yec{bottom:964.266281pt;}
.yba{bottom:965.546280pt;}
.y43{bottom:966.506280pt;}
.y90{bottom:966.986280pt;}
.y49{bottom:967.146280pt;}
.ye3{bottom:969.706279pt;}
.y42{bottom:984.586273pt;}
.yeb{bottom:986.026272pt;}
.yb9{bottom:986.666272pt;}
.y48{bottom:987.466272pt;}
.ye2{bottom:988.746271pt;}
.y8{bottom:993.866269pt;}
.y7{bottom:994.186269pt;}
.y40{bottom:997.867200pt;}
.y5{bottom:1000.427200pt;}
.yb8{bottom:1007.786264pt;}
.y47{bottom:1007.946263pt;}
.y3{bottom:1023.146257pt;}
.y1{bottom:1048.107200pt;}
.h24{height:10.720000pt;}
.hb{height:12.000000pt;}
.h19{height:13.440000pt;}
.h16{height:16.640000pt;}
.h9{height:16.687493pt;}
.h18{height:16.800000pt;}
.hd{height:17.920000pt;}
.h12{height:18.080000pt;}
.h5{height:18.240000pt;}
.h11{height:19.722492pt;}
.h21{height:21.120000pt;}
.h14{height:21.754991pt;}
.h1{height:21.760000pt;}
.h1d{height:23.034366pt;}
.hf{height:23.118741pt;}
.h1f{height:24.203115pt;}
.h1b{height:28.579676pt;}
.hc{height:28.684364pt;}
.h10{height:32.159987pt;}
.h26{height:32.432175pt;}
.h1a{height:36.304673pt;}
.h1e{height:38.387485pt;}
.h1c{height:40.177171pt;}
.h6{height:42.656233pt;}
.he{height:42.812483pt;}
.h13{height:42.874983pt;}
.h17{height:44.533732pt;}
.h23{height:47.999981pt;}
.h8{height:48.406231pt;}
.h25{height:49.919980pt;}
.h2{height:52.320917pt;}
.h22{height:56.159978pt;}
.ha{height:56.940602pt;}
.h15{height:62.781225pt;}
.h20{height:62.812475pt;}
.h4{height:64.499974pt;}
.h7{height:69.749972pt;}
.h3{height:73.490596pt;}
.h0{height:1122.666667pt;}
.w2{width:4.160000pt;}
.w4{width:6.240000pt;}
.wb{width:6.400000pt;}
.we{width:7.200000pt;}
.w7{width:7.360000pt;}
.w6{width:7.840000pt;}
.wd{width:8.480000pt;}
.w12{width:9.600000pt;}
.w5{width:22.080000pt;}
.w1{width:65.760000pt;}
.w3{width:68.800000pt;}
.wf{width:72.320000pt;}
.w9{width:146.720000pt;}
.w8{width:211.040000pt;}
.wc{width:274.400000pt;}
.wa{width:318.240000pt;}
.w11{width:472.960000pt;}
.w10{width:473.440000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:95.999962pt;}
.x1a{left:98.880000pt;}
.xa{left:103.200000pt;}
.xc{left:116.159918pt;}
.x1f{left:167.520000pt;}
.xd{left:178.079873pt;}
.xe{left:182.079870pt;}
.xb{left:183.999926pt;}
.x23{left:221.440000pt;}
.xf{left:230.880374pt;}
.x27{left:303.999878pt;}
.x18{left:306.239878pt;}
.x9{left:307.999877pt;}
.x19{left:315.200000pt;}
.x24{left:384.959846pt;}
.x22{left:411.200424pt;}
.x1b{left:416.800000pt;}
.x1c{left:423.040000pt;}
.x10{left:439.040697pt;}
.x11{left:450.880689pt;}
.x12{left:462.720681pt;}
.x1d{left:465.753147pt;}
.x13{left:474.400675pt;}
.x14{left:478.400672pt;}
.x25{left:479.671941pt;}
.x1{left:488.000000pt;}
.x26{left:523.359791pt;}
.x15{left:525.600655pt;}
.x16{left:541.280592pt;}
.x2{left:553.760000pt;}
.x3{left:557.920000pt;}
.x21{left:568.799772pt;}
.x17{left:592.319763pt;}
.x4{left:626.720000pt;}
.x20{left:640.960000pt;}
.x5{left:642.080000pt;}
.x6{left:664.160000pt;}
.x7{left:686.240000pt;}
.x1e{left:693.600000pt;}
}




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