
    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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_b0f9f4a1950d56eb150b346b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ba0f72b275424bfacd774a59.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cb71303d649c3212796a3669.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_186d583d5ebc46fb82943c42.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0a4aebceca5652ceaac2dbfb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7d965b85ebad7cd36c6f8f34.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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_7baaf36f1cbc74e6a4c79baf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_7ba2f265c4b91f019290afcd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064941;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_fc0ffcd7d6625224f423ebf8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_868604ca7ce2a2a1888f413a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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_915c0a53d09d44ad14e0ef2a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.061035;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_a29781ecb1d5adc629096bd6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.854492;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_ffec7503b5301ce75ab76726.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;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_398bb0083ddb704e468c2f4f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.783691;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_0887fd63ca54fcca65138e37.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-69.120000px;}
.v2{vertical-align:-67.680000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-0.666000px;}
.ls16{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.022320px;}
.ls7{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.224400px;}
.ls1a{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.666000px;}
.ls17{letter-spacing:0.828000px;}
.ls18{letter-spacing:0.900000px;}
.ls10{letter-spacing:1.080000px;}
.ls1b{letter-spacing:21.546720px;}
.lsb{letter-spacing:44.562720px;}
.ls9{letter-spacing:44.586720px;}
.ls15{letter-spacing:225.516000px;}
.lsc{letter-spacing:487.596000px;}
.ls13{letter-spacing:532.956000px;}
.ls14{letter-spacing:599.376000px;}
.lse{letter-spacing:1338.936000px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.606000px;}
.ws10{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.wsc{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.580000px;}
.wse{word-spacing:-14.274000px;}
.ws5{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.147200px;}
.ws4{word-spacing:-13.093920px;}
.ws6{word-spacing:-12.060000px;}
.ws3{word-spacing:-10.612800px;}
.ws7{word-spacing:0.000000px;}
._59{margin-left:-9.153360px;}
._1a{margin-left:-4.130640px;}
._d{margin-left:-2.506320px;}
._2{margin-left:-1.258560px;}
._0{width:1.434240px;}
._7{width:3.342000px;}
._10{width:5.139360px;}
._29{width:6.155280px;}
._6{width:7.171200px;}
._c{width:8.844480px;}
._19{width:9.979920px;}
._b{width:11.055600px;}
._12{width:12.131280px;}
._22{width:13.147200px;}
._9{width:14.222880px;}
._a{width:15.657120px;}
._11{width:16.699440px;}
._1{width:17.729280px;}
._f{width:19.362240px;}
._e{width:20.676960px;}
._14{width:22.350240px;}
._5{width:23.545440px;}
._4{width:24.621120px;}
._30{width:25.640640px;}
._16{width:26.652960px;}
._2b{width:28.266480px;}
._2c{width:29.760480px;}
._17{width:30.955680px;}
._1e{width:32.031360px;}
._2f{width:33.704640px;}
._15{width:34.991760px;}
._3{width:36.095040px;}
._8{width:37.648800px;}
._21{width:39.202560px;}
._13{width:40.756320px;}
._1f{width:42.190560px;}
._1d{width:43.804080px;}
._28{width:45.716400px;}
._27{width:47.333520px;}
._4e{width:48.342240px;}
._23{width:49.600800px;}
._2d{width:51.170400px;}
._24{width:52.887600px;}
._1b{width:54.082800px;}
._42{width:55.457280px;}
._1c{width:57.309840px;}
._2a{width:58.325760px;}
._20{width:60.118560px;}
._46{width:61.254000px;}
._47{width:62.273520px;}
._40{width:63.405360px;}
._45{width:64.660320px;}
._26{width:65.740320px;}
._25{width:66.990960px;}
._38{width:68.911200px;}
._37{width:70.815600px;}
._32{width:71.831520px;}
._4b{width:73.164240px;}
._4c{width:74.221920px;}
._4a{width:75.237840px;}
._43{width:76.492800px;}
._41{width:77.986800px;}
._3e{width:79.301520px;}
._44{width:80.570880px;}
._4d{width:82.110240px;}
._48{width:83.596320px;}
._31{width:85.277520px;}
._2e{width:86.592240px;}
._49{width:89.400960px;}
._39{width:91.251360px;}
._53{width:92.926800px;}
._5c{width:97.233120px;}
._3d{width:98.783280px;}
._3c{width:100.226880px;}
._5a{width:102.700560px;}
._3f{width:104.289120px;}
._18{width:105.577920px;}
._51{width:107.093520px;}
._3b{width:108.105840px;}
._5e{width:113.783040px;}
._3a{width:116.233200px;}
._34{width:120.535920px;}
._35{width:121.623120px;}
._36{width:123.045840px;}
._33{width:126.993600px;}
._58{width:132.398400px;}
._52{width:136.969920px;}
._57{width:143.404560px;}
._5d{width:150.184080px;}
._54{width:166.200960px;}
._5b{width:173.602800px;}
._55{width:178.548240px;}
._4f{width:182.608560px;}
._50{width:183.642480px;}
._56{width:195.607200px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc4{color:rgb(205,29,142);}
.fc3{color:rgb(28,78,123);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.760000px;}
.fsc{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs7{font-size:44.018465px;}
.fs1{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs9{font-size:62.991941px;}
.fs5{font-size:66.240000px;}
.fs6{font-size:69.822393px;}
.fsb{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:81.965417px;}
.y59{bottom:-9.360000px;}
.y0{bottom:0.000000px;}
.y44{bottom:3.240000px;}
.y5{bottom:3.600000px;}
.y46{bottom:4.680000px;}
.y58{bottom:4.860000px;}
.y56{bottom:5.400000px;}
.y9e{bottom:12.060000px;}
.yab{bottom:12.240000px;}
.y10d{bottom:12.285000px;}
.y9d{bottom:20.700000px;}
.y11d{bottom:20.730000px;}
.y43{bottom:20.880000px;}
.y115{bottom:20.910000px;}
.y10e{bottom:20.925000px;}
.ya6{bottom:29.340000px;}
.y11b{bottom:29.370000px;}
.ya2{bottom:29.520000px;}
.y113{bottom:29.550000px;}
.ye0{bottom:29.565000px;}
.y55{bottom:31.860000px;}
.ya4{bottom:37.980000px;}
.y11c{bottom:38.010000px;}
.ye1{bottom:38.025000px;}
.ya0{bottom:38.160000px;}
.y114{bottom:38.190000px;}
.y124{bottom:38.205000px;}
.y42{bottom:38.520000px;}
.ya9{bottom:46.620000px;}
.y122{bottom:46.845000px;}
.ya5{bottom:55.260000px;}
.ya1{bottom:55.440000px;}
.y123{bottom:55.485000px;}
.y41{bottom:56.160000px;}
.y3{bottom:58.140000px;}
.yaa{bottom:63.900000px;}
.y54{bottom:64.440000px;}
.ya8{bottom:72.540000px;}
.y40{bottom:73.620000px;}
.y2{bottom:80.100000px;}
.y3f{bottom:91.260000px;}
.y3e{bottom:108.900000px;}
.y57{bottom:113.760000px;}
.y134{bottom:117.360000px;}
.y10a{bottom:118.080000px;}
.y95{bottom:123.300000px;}
.y3d{bottom:126.405000px;}
.y133{bottom:134.640000px;}
.y108{bottom:135.360000px;}
.yda{bottom:137.340000px;}
.y94{bottom:140.580000px;}
.y3c{bottom:144.045000px;}
.y13e{bottom:151.560000px;}
.y132{bottom:151.920000px;}
.ya3{bottom:152.100000px;}
.y107{bottom:152.640000px;}
.y51{bottom:153.720000px;}
.yd8{bottom:154.800000px;}
.y142{bottom:157.500000px;}
.y93{bottom:157.860000px;}
.y3b{bottom:161.685000px;}
.y131{bottom:169.200000px;}
.y106{bottom:169.920000px;}
.y50{bottom:171.000000px;}
.yd7{bottom:172.080000px;}
.y92{bottom:175.140000px;}
.y3a{bottom:179.145000px;}
.y13d{bottom:183.600000px;}
.y130{bottom:186.300000px;}
.y105{bottom:187.200000px;}
.y4f{bottom:188.280000px;}
.yd6{bottom:189.360000px;}
.y91{bottom:192.420000px;}
.y39{bottom:196.785000px;}
.y12f{bottom:203.580000px;}
.y104{bottom:204.300000px;}
.y4e{bottom:205.560000px;}
.yd5{bottom:206.640000px;}
.y90{bottom:209.700000px;}
.y38{bottom:214.425000px;}
.y12e{bottom:220.890000px;}
.y103{bottom:221.610000px;}
.y9f{bottom:221.790000px;}
.y4d{bottom:222.690000px;}
.yd4{bottom:223.950000px;}
.y141{bottom:226.470000px;}
.y8f{bottom:226.830000px;}
.y37{bottom:231.885000px;}
.y13c{bottom:236.010000px;}
.y12d{bottom:238.170000px;}
.y102{bottom:238.890000px;}
.y4c{bottom:239.970000px;}
.yd3{bottom:241.230000px;}
.y140{bottom:243.750000px;}
.y8e{bottom:244.110000px;}
.y36{bottom:249.525000px;}
.y12c{bottom:255.450000px;}
.y101{bottom:256.170000px;}
.y4b{bottom:257.250000px;}
.yd2{bottom:258.330000px;}
.y8d{bottom:261.390000px;}
.y35{bottom:267.165000px;}
.y12b{bottom:272.730000px;}
.y100{bottom:273.450000px;}
.y4a{bottom:274.530000px;}
.yd1{bottom:275.610000px;}
.y8c{bottom:278.670000px;}
.y34{bottom:284.805000px;}
.y13b{bottom:288.570000px;}
.y12a{bottom:289.830000px;}
.yff{bottom:290.730000px;}
.y49{bottom:291.450000px;}
.y9c{bottom:291.630000px;}
.y52{bottom:291.810000px;}
.y24{bottom:292.365000px;}
.yd0{bottom:292.890000px;}
.y8b{bottom:295.950000px;}
.y33{bottom:302.265000px;}
.y129{bottom:307.110000px;}
.yfe{bottom:307.830000px;}
.y48{bottom:308.730000px;}
.ycf{bottom:310.170000px;}
.y23{bottom:310.725000px;}
.y8a{bottom:313.230000px;}
.y32{bottom:319.905000px;}
.y47{bottom:322.950000px;}
.y128{bottom:324.390000px;}
.y45{bottom:325.110000px;}
.yce{bottom:327.450000px;}
.y22{bottom:328.905000px;}
.y89{bottom:330.330000px;}
.y12{bottom:331.050000px;}
.y31{bottom:337.545000px;}
.y13a{bottom:341.130000px;}
.y127{bottom:341.670000px;}
.yfd{bottom:342.390000px;}
.ycd{bottom:344.730000px;}
.y21{bottom:347.085000px;}
.y9b{bottom:347.250000px;}
.y88{bottom:347.610000px;}
.y30{bottom:355.035000px;}
.y126{bottom:358.590000px;}
.y135{bottom:358.950000px;}
.yfc{bottom:359.670000px;}
.ycc{bottom:361.830000px;}
.y20{bottom:362.595000px;}
.y87{bottom:364.890000px;}
.y2f{bottom:372.675000px;}
.y139{bottom:376.230000px;}
.y1f{bottom:376.635000px;}
.yfb{bottom:376.950000px;}
.ycb{bottom:379.110000px;}
.y86{bottom:382.170000px;}
.y2e{bottom:390.315000px;}
.y125{bottom:390.630000px;}
.y1e{bottom:390.675000px;}
.yfa{bottom:394.230000px;}
.yca{bottom:396.390000px;}
.y85{bottom:399.450000px;}
.y1d{bottom:404.715000px;}
.y2d{bottom:407.775000px;}
.yf9{bottom:411.330000px;}
.yc9{bottom:413.670000px;}
.y84{bottom:416.730000px;}
.y1c{bottom:418.755000px;}
.y2c{bottom:425.415000px;}
.yf8{bottom:428.610000px;}
.y138{bottom:428.790000px;}
.yc8{bottom:430.950000px;}
.y1b{bottom:432.615000px;}
.y83{bottom:433.830000px;}
.y121{bottom:443.010000px;}
.y2b{bottom:443.055000px;}
.yf7{bottom:445.890000px;}
.y1a{bottom:446.475000px;}
.yc7{bottom:448.275000px;}
.y82{bottom:451.155000px;}
.y19{bottom:460.335000px;}
.y2a{bottom:460.695000px;}
.yf6{bottom:463.215000px;}
.yc6{bottom:465.375000px;}
.y81{bottom:468.435000px;}
.y18{bottom:474.375000px;}
.y29{bottom:478.155000px;}
.yf5{bottom:480.495000px;}
.y137{bottom:481.395000px;}
.yc5{bottom:482.655000px;}
.y80{bottom:485.715000px;}
.y17{bottom:488.415000px;}
.y28{bottom:495.795000px;}
.yf4{bottom:497.595000px;}
.yc4{bottom:499.935000px;}
.y16{bottom:502.455000px;}
.y7f{bottom:502.995000px;}
.y120{bottom:512.895000px;}
.y27{bottom:513.435000px;}
.yf3{bottom:514.875000px;}
.y15{bottom:517.035000px;}
.yc3{bottom:517.215000px;}
.y7e{bottom:520.095000px;}
.y26{bottom:530.895000px;}
.yf2{bottom:532.155000px;}
.yc2{bottom:534.495000px;}
.y14{bottom:535.035000px;}
.y136{bottom:537.015000px;}
.y7d{bottom:537.375000px;}
.yf1{bottom:549.435000px;}
.y25{bottom:551.595000px;}
.y13{bottom:552.315000px;}
.y7c{bottom:554.655000px;}
.y11f{bottom:565.275000px;}
.y117{bottom:566.355000px;}
.yf0{bottom:566.715000px;}
.yc1{bottom:568.875000px;}
.y7b{bottom:571.935000px;}
.yef{bottom:583.995000px;}
.yc0{bottom:586.155000px;}
.y7a{bottom:589.215000px;}
.y116{bottom:598.395000px;}
.yee{bottom:601.095000px;}
.ybf{bottom:603.435000px;}
.y79{bottom:606.495000px;}
.y11e{bottom:617.835000px;}
.yed{bottom:618.375000px;}
.ybe{bottom:620.715000px;}
.y13f{bottom:623.235000px;}
.y78{bottom:623.595000px;}
.yec{bottom:635.655000px;}
.ybd{bottom:637.995000px;}
.y77{bottom:640.875000px;}
.yeb{bottom:652.935000px;}
.ybc{bottom:655.095000px;}
.y76{bottom:658.155000px;}
.y112{bottom:668.055000px;}
.yea{bottom:670.215000px;}
.y11a{bottom:670.395000px;}
.ybb{bottom:672.375000px;}
.y75{bottom:675.435000px;}
.ye9{bottom:687.525000px;}
.yba{bottom:689.685000px;}
.y74{bottom:692.745000px;}
.ye8{bottom:704.625000px;}
.yb9{bottom:706.965000px;}
.y73{bottom:710.025000px;}
.y111{bottom:720.645000px;}
.ye7{bottom:721.905000px;}
.y119{bottom:722.805000px;}
.yb8{bottom:724.245000px;}
.y72{bottom:727.125000px;}
.ye6{bottom:739.185000px;}
.yb7{bottom:741.525000px;}
.y71{bottom:744.405000px;}
.ye5{bottom:756.465000px;}
.yb6{bottom:758.625000px;}
.y70{bottom:761.685000px;}
.ye4{bottom:773.745000px;}
.yb5{bottom:775.905000px;}
.y118{bottom:778.605000px;}
.y6f{bottom:778.965000px;}
.y110{bottom:790.305000px;}
.ye3{bottom:790.665000px;}
.y109{bottom:791.025000px;}
.yb4{bottom:793.185000px;}
.y6e{bottom:796.245000px;}
.yb3{bottom:810.465000px;}
.y6d{bottom:813.345000px;}
.ye2{bottom:822.525000px;}
.yb2{bottom:827.745000px;}
.y9a{bottom:830.265000px;}
.y6c{bottom:830.625000px;}
.y10f{bottom:842.865000px;}
.yb1{bottom:844.845000px;}
.y6b{bottom:847.905000px;}
.yb0{bottom:862.125000px;}
.y6a{bottom:865.185000px;}
.yaf{bottom:879.405000px;}
.y69{bottom:882.465000px;}
.ydf{bottom:892.365000px;}
.yae{bottom:896.325000px;}
.yd9{bottom:896.685000px;}
.y68{bottom:899.745000px;}
.y11{bottom:902.265000px;}
.y10c{bottom:912.525000px;}
.y67{bottom:916.845000px;}
.y10{bottom:926.970000px;}
.yad{bottom:928.410000px;}
.y66{bottom:934.170000px;}
.yde{bottom:944.790000px;}
.ye{bottom:947.130000px;}
.y96{bottom:951.090000px;}
.y65{bottom:951.450000px;}
.yf{bottom:953.070000px;}
.y10b{bottom:968.370000px;}
.y64{bottom:968.730000px;}
.yd{bottom:968.910000px;}
.y99{bottom:985.650000px;}
.y63{bottom:986.010000px;}
.yc{bottom:991.950000px;}
.ydd{bottom:997.350000px;}
.yac{bottom:998.070000px;}
.y62{bottom:1003.290000px;}
.yb{bottom:1017.690000px;}
.y97{bottom:1020.030000px;}
.y61{bottom:1020.390000px;}
.y60{bottom:1037.670000px;}
.ya{bottom:1041.090000px;}
.ydc{bottom:1049.910000px;}
.y5f{bottom:1054.950000px;}
.y9{bottom:1064.850000px;}
.ya7{bottom:1067.910000px;}
.y53{bottom:1070.250000px;}
.y98{bottom:1071.870000px;}
.y5e{bottom:1072.230000px;}
.y8{bottom:1088.790000px;}
.y5d{bottom:1089.510000px;}
.ydb{bottom:1102.290000px;}
.y5c{bottom:1106.790000px;}
.y7{bottom:1112.550000px;}
.y5b{bottom:1123.890000px;}
.y6{bottom:1136.310000px;}
.y5a{bottom:1141.170000px;}
.y4{bottom:1171.260000px;}
.y1{bottom:1191.240000px;}
.h15{height:5.653125px;}
.h16{height:5.805000px;}
.h17{height:5.920372px;}
.h14{height:5.940000px;}
.h1d{height:16.020000px;}
.h4{height:17.280000px;}
.h21{height:34.380000px;}
.h26{height:34.560000px;}
.h2a{height:34.596000px;}
.h1f{height:40.655391px;}
.h10{height:40.843828px;}
.h20{height:41.726953px;}
.h12{height:45.720703px;}
.hb{height:45.823910px;}
.h13{height:45.859856px;}
.ha{height:47.286943px;}
.h1e{height:47.321367px;}
.h3{height:47.980898px;}
.h1c{height:48.616875px;}
.hf{height:49.583118px;}
.h11{height:50.218594px;}
.he{height:50.597578px;}
.h27{height:51.660000px;}
.h29{height:51.696000px;}
.h28{height:51.840000px;}
.h2b{height:51.876000px;}
.h5{height:58.651172px;}
.h18{height:60.226875px;}
.h19{height:61.423863px;}
.hc{height:62.211094px;}
.h9{height:66.757500px;}
.h22{height:68.940000px;}
.h23{height:68.976000px;}
.h25{height:69.120000px;}
.h1b{height:72.562500px;}
.h2{height:77.342344px;}
.h7{height:78.367500px;}
.h6{height:79.620469px;}
.h1a{height:81.180000px;}
.h8{height:85.327280px;}
.h24{height:86.256000px;}
.hd{height:565.815000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w28{width:104.076000px;}
.w24{width:104.976000px;}
.w18{width:107.676000px;}
.w14{width:108.576000px;}
.w30{width:110.556000px;}
.w2c{width:111.276000px;}
.w20{width:112.716000px;}
.w1c{width:113.436000px;}
.w16{width:121.536000px;}
.w12{width:122.076000px;}
.we{width:127.620000px;}
.wa{width:127.980000px;}
.w26{width:131.400000px;}
.w22{width:131.760000px;}
.w1e{width:133.740000px;}
.w1a{width:134.100000px;}
.w2e{width:135.936000px;}
.w2a{width:136.296000px;}
.wf{width:147.456000px;}
.w10{width:147.816000px;}
.wb{width:148.176000px;}
.wc{width:148.536000px;}
.w27{width:177.870000px;}
.w23{width:178.590000px;}
.w1f{width:188.310000px;}
.w1b{width:189.030000px;}
.w17{width:200.370000px;}
.w13{width:201.090000px;}
.w2f{width:206.490000px;}
.w2b{width:207.210000px;}
.w4{width:212.115000px;}
.w6{width:212.655000px;}
.w21{width:260.895000px;}
.w1d{width:261.255000px;}
.w11{width:282.675000px;}
.wd{width:283.035000px;}
.w29{width:298.875000px;}
.w25{width:299.235000px;}
.w31{width:303.015000px;}
.w2d{width:303.375000px;}
.w19{width:311.655000px;}
.w15{width:312.015000px;}
.w3{width:502.125000px;}
.w5{width:515.955000px;}
.w7{width:516.495000px;}
.w8{width:625.065000px;}
.w9{width:719.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.100000px;}
.x29{left:9.360000px;}
.x18{left:10.800000px;}
.x42{left:11.916000px;}
.x2d{left:12.960000px;}
.x31{left:14.220000px;}
.x27{left:16.020000px;}
.x2a{left:18.000000px;}
.x40{left:19.260000px;}
.xd{left:20.700000px;}
.x2b{left:22.500000px;}
.x26{left:24.120000px;}
.x23{left:25.200000px;}
.x2{left:27.000000px;}
.x2e{left:28.260000px;}
.x2c{left:29.340000px;}
.x39{left:30.996000px;}
.x30{left:32.040000px;}
.x1e{left:34.020000px;}
.x33{left:35.100000px;}
.x1f{left:36.720000px;}
.x21{left:39.105000px;}
.x4a{left:40.500000px;}
.x3{left:42.300000px;}
.x36{left:43.920000px;}
.x28{left:45.045000px;}
.x51{left:46.440000px;}
.x48{left:47.700000px;}
.x58{left:49.716000px;}
.x53{left:50.985000px;}
.x10{left:52.020000px;}
.x6{left:53.999987px;}
.x35{left:57.465000px;}
.x11{left:59.580000px;}
.x3f{left:60.840000px;}
.x14{left:62.994000px;}
.x5a{left:64.485000px;}
.x3b{left:65.565000px;}
.x50{left:67.860000px;}
.x2f{left:69.660000px;}
.x38{left:74.700000px;}
.x34{left:76.140000px;}
.x49{left:78.345000px;}
.x45{left:81.045000px;}
.x4c{left:82.125000px;}
.x44{left:84.600000px;}
.x4d{left:89.316000px;}
.x1d{left:92.736000px;}
.x4b{left:95.445000px;}
.x17{left:98.496000px;}
.x41{left:99.540000px;}
.x37{left:102.285000px;}
.x25{left:103.545000px;}
.x52{left:106.785000px;}
.x1{left:108.035987px;}
.x32{left:111.645000px;}
.x57{left:113.805000px;}
.x3e{left:117.945000px;}
.x59{left:123.525000px;}
.x43{left:128.025000px;}
.x1b{left:135.035987px;}
.x13{left:140.616000px;}
.x15{left:157.539000px;}
.x1c{left:162.029987px;}
.x8{left:166.529987px;}
.x9{left:170.669987px;}
.x3a{left:196.770000px;}
.x54{left:203.790000px;}
.xe{left:215.490000px;}
.x20{left:220.710000px;}
.xf{left:221.970000px;}
.xa{left:232.769987px;}
.xc{left:267.195000px;}
.x16{left:312.549000px;}
.x22{left:368.895000px;}
.x3c{left:397.875000px;}
.x4e{left:399.675000px;}
.x55{left:411.015000px;}
.x46{left:420.915000px;}
.x5{left:446.504987px;}
.x4{left:456.044987px;}
.x12{left:473.144987px;}
.x7{left:481.964987px;}
.x19{left:500.144987px;}
.x4f{left:504.645000px;}
.x3d{left:506.445000px;}
.x24{left:517.425000px;}
.x56{left:522.285000px;}
.x1a{left:527.144987px;}
.x47{left:534.345000px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v2{vertical-align:-60.160000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.592000pt;}
.ls16{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.019840pt;}
.ls7{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.199467pt;}
.ls1a{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.592000pt;}
.ls17{letter-spacing:0.736000pt;}
.ls18{letter-spacing:0.800000pt;}
.ls10{letter-spacing:0.960000pt;}
.ls1b{letter-spacing:19.152640pt;}
.lsb{letter-spacing:39.611307pt;}
.ls9{letter-spacing:39.632640pt;}
.ls15{letter-spacing:200.458667pt;}
.lsc{letter-spacing:433.418667pt;}
.ls13{letter-spacing:473.738667pt;}
.ls14{letter-spacing:532.778667pt;}
.lse{letter-spacing:1190.165333pt;}
.ws9{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.872000pt;}
.ws10{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.wsc{word-spacing:-13.096533pt;}
.wsd{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.688000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.686400pt;}
.ws4{word-spacing:-11.639040pt;}
.ws6{word-spacing:-10.720000pt;}
.ws3{word-spacing:-9.433600pt;}
.ws7{word-spacing:0.000000pt;}
._59{margin-left:-8.136320pt;}
._1a{margin-left:-3.671680pt;}
._d{margin-left:-2.227840pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.274880pt;}
._7{width:2.970667pt;}
._10{width:4.568320pt;}
._29{width:5.471360pt;}
._6{width:6.374400pt;}
._c{width:7.861760pt;}
._19{width:8.871040pt;}
._b{width:9.827200pt;}
._12{width:10.783360pt;}
._22{width:11.686400pt;}
._9{width:12.642560pt;}
._a{width:13.917440pt;}
._11{width:14.843947pt;}
._1{width:15.759360pt;}
._f{width:17.210880pt;}
._e{width:18.379520pt;}
._14{width:19.866880pt;}
._5{width:20.929280pt;}
._4{width:21.885440pt;}
._30{width:22.791680pt;}
._16{width:23.691520pt;}
._2b{width:25.125760pt;}
._2c{width:26.453760pt;}
._17{width:27.516160pt;}
._1e{width:28.472320pt;}
._2f{width:29.959680pt;}
._15{width:31.103787pt;}
._3{width:32.084480pt;}
._8{width:33.465600pt;}
._21{width:34.846720pt;}
._13{width:36.227840pt;}
._1f{width:37.502720pt;}
._1d{width:38.936960pt;}
._28{width:40.636800pt;}
._27{width:42.074240pt;}
._4e{width:42.970880pt;}
._23{width:44.089600pt;}
._2d{width:45.484800pt;}
._24{width:47.011200pt;}
._1b{width:48.073600pt;}
._42{width:49.295360pt;}
._1c{width:50.942080pt;}
._2a{width:51.845120pt;}
._20{width:53.438720pt;}
._46{width:54.448000pt;}
._47{width:55.354240pt;}
._40{width:56.360320pt;}
._45{width:57.475840pt;}
._26{width:58.435840pt;}
._25{width:59.547520pt;}
._38{width:61.254400pt;}
._37{width:62.947200pt;}
._32{width:63.850240pt;}
._4b{width:65.034880pt;}
._4c{width:65.975040pt;}
._4a{width:66.878080pt;}
._43{width:67.993600pt;}
._41{width:69.321600pt;}
._3e{width:70.490240pt;}
._44{width:71.618560pt;}
._4d{width:72.986880pt;}
._48{width:74.307840pt;}
._31{width:75.802240pt;}
._2e{width:76.970880pt;}
._49{width:79.467520pt;}
._39{width:81.112320pt;}
._53{width:82.601600pt;}
._5c{width:86.429440pt;}
._3d{width:87.807360pt;}
._3c{width:89.090560pt;}
._5a{width:91.289387pt;}
._3f{width:92.701440pt;}
._18{width:93.847040pt;}
._51{width:95.194240pt;}
._3b{width:96.094080pt;}
._5e{width:101.140480pt;}
._3a{width:103.318400pt;}
._34{width:107.143040pt;}
._35{width:108.109440pt;}
._36{width:109.374080pt;}
._33{width:112.883200pt;}
._58{width:117.687467pt;}
._52{width:121.751040pt;}
._57{width:127.470720pt;}
._5d{width:133.496960pt;}
._54{width:147.734187pt;}
._5b{width:154.313600pt;}
._55{width:158.709547pt;}
._4f{width:162.318720pt;}
._50{width:163.237760pt;}
._56{width:173.873067pt;}
.fsa{font-size:5.120000pt;}
.fsc{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs7{font-size:39.127524pt;}
.fs1{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs9{font-size:55.992837pt;}
.fs5{font-size:58.880000pt;}
.fs6{font-size:62.064349pt;}
.fsb{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:72.858149pt;}
.y59{bottom:-8.320000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:2.880000pt;}
.y5{bottom:3.200000pt;}
.y46{bottom:4.160000pt;}
.y58{bottom:4.320000pt;}
.y56{bottom:4.800000pt;}
.y9e{bottom:10.720000pt;}
.yab{bottom:10.880000pt;}
.y10d{bottom:10.920000pt;}
.y9d{bottom:18.400000pt;}
.y11d{bottom:18.426667pt;}
.y43{bottom:18.560000pt;}
.y115{bottom:18.586667pt;}
.y10e{bottom:18.600000pt;}
.ya6{bottom:26.080000pt;}
.y11b{bottom:26.106667pt;}
.ya2{bottom:26.240000pt;}
.y113{bottom:26.266667pt;}
.ye0{bottom:26.280000pt;}
.y55{bottom:28.320000pt;}
.ya4{bottom:33.760000pt;}
.y11c{bottom:33.786667pt;}
.ye1{bottom:33.800000pt;}
.ya0{bottom:33.920000pt;}
.y114{bottom:33.946667pt;}
.y124{bottom:33.960000pt;}
.y42{bottom:34.240000pt;}
.ya9{bottom:41.440000pt;}
.y122{bottom:41.640000pt;}
.ya5{bottom:49.120000pt;}
.ya1{bottom:49.280000pt;}
.y123{bottom:49.320000pt;}
.y41{bottom:49.920000pt;}
.y3{bottom:51.680000pt;}
.yaa{bottom:56.800000pt;}
.y54{bottom:57.280000pt;}
.ya8{bottom:64.480000pt;}
.y40{bottom:65.440000pt;}
.y2{bottom:71.200000pt;}
.y3f{bottom:81.120000pt;}
.y3e{bottom:96.800000pt;}
.y57{bottom:101.120000pt;}
.y134{bottom:104.320000pt;}
.y10a{bottom:104.960000pt;}
.y95{bottom:109.600000pt;}
.y3d{bottom:112.360000pt;}
.y133{bottom:119.680000pt;}
.y108{bottom:120.320000pt;}
.yda{bottom:122.080000pt;}
.y94{bottom:124.960000pt;}
.y3c{bottom:128.040000pt;}
.y13e{bottom:134.720000pt;}
.y132{bottom:135.040000pt;}
.ya3{bottom:135.200000pt;}
.y107{bottom:135.680000pt;}
.y51{bottom:136.640000pt;}
.yd8{bottom:137.600000pt;}
.y142{bottom:140.000000pt;}
.y93{bottom:140.320000pt;}
.y3b{bottom:143.720000pt;}
.y131{bottom:150.400000pt;}
.y106{bottom:151.040000pt;}
.y50{bottom:152.000000pt;}
.yd7{bottom:152.960000pt;}
.y92{bottom:155.680000pt;}
.y3a{bottom:159.240000pt;}
.y13d{bottom:163.200000pt;}
.y130{bottom:165.600000pt;}
.y105{bottom:166.400000pt;}
.y4f{bottom:167.360000pt;}
.yd6{bottom:168.320000pt;}
.y91{bottom:171.040000pt;}
.y39{bottom:174.920000pt;}
.y12f{bottom:180.960000pt;}
.y104{bottom:181.600000pt;}
.y4e{bottom:182.720000pt;}
.yd5{bottom:183.680000pt;}
.y90{bottom:186.400000pt;}
.y38{bottom:190.600000pt;}
.y12e{bottom:196.346667pt;}
.y103{bottom:196.986667pt;}
.y9f{bottom:197.146667pt;}
.y4d{bottom:197.946667pt;}
.yd4{bottom:199.066667pt;}
.y141{bottom:201.306667pt;}
.y8f{bottom:201.626667pt;}
.y37{bottom:206.120000pt;}
.y13c{bottom:209.786667pt;}
.y12d{bottom:211.706667pt;}
.y102{bottom:212.346667pt;}
.y4c{bottom:213.306667pt;}
.yd3{bottom:214.426667pt;}
.y140{bottom:216.666667pt;}
.y8e{bottom:216.986667pt;}
.y36{bottom:221.800000pt;}
.y12c{bottom:227.066667pt;}
.y101{bottom:227.706667pt;}
.y4b{bottom:228.666667pt;}
.yd2{bottom:229.626667pt;}
.y8d{bottom:232.346667pt;}
.y35{bottom:237.480000pt;}
.y12b{bottom:242.426667pt;}
.y100{bottom:243.066667pt;}
.y4a{bottom:244.026667pt;}
.yd1{bottom:244.986667pt;}
.y8c{bottom:247.706667pt;}
.y34{bottom:253.160000pt;}
.y13b{bottom:256.506667pt;}
.y12a{bottom:257.626667pt;}
.yff{bottom:258.426667pt;}
.y49{bottom:259.066667pt;}
.y9c{bottom:259.226667pt;}
.y52{bottom:259.386667pt;}
.y24{bottom:259.880000pt;}
.yd0{bottom:260.346667pt;}
.y8b{bottom:263.066667pt;}
.y33{bottom:268.680000pt;}
.y129{bottom:272.986667pt;}
.yfe{bottom:273.626667pt;}
.y48{bottom:274.426667pt;}
.ycf{bottom:275.706667pt;}
.y23{bottom:276.200000pt;}
.y8a{bottom:278.426667pt;}
.y32{bottom:284.360000pt;}
.y47{bottom:287.066667pt;}
.y128{bottom:288.346667pt;}
.y45{bottom:288.986667pt;}
.yce{bottom:291.066667pt;}
.y22{bottom:292.360000pt;}
.y89{bottom:293.626667pt;}
.y12{bottom:294.266667pt;}
.y31{bottom:300.040000pt;}
.y13a{bottom:303.226667pt;}
.y127{bottom:303.706667pt;}
.yfd{bottom:304.346667pt;}
.ycd{bottom:306.426667pt;}
.y21{bottom:308.520000pt;}
.y9b{bottom:308.666667pt;}
.y88{bottom:308.986667pt;}
.y30{bottom:315.586667pt;}
.y126{bottom:318.746667pt;}
.y135{bottom:319.066667pt;}
.yfc{bottom:319.706667pt;}
.ycc{bottom:321.626667pt;}
.y20{bottom:322.306667pt;}
.y87{bottom:324.346667pt;}
.y2f{bottom:331.266667pt;}
.y139{bottom:334.426667pt;}
.y1f{bottom:334.786667pt;}
.yfb{bottom:335.066667pt;}
.ycb{bottom:336.986667pt;}
.y86{bottom:339.706667pt;}
.y2e{bottom:346.946667pt;}
.y125{bottom:347.226667pt;}
.y1e{bottom:347.266667pt;}
.yfa{bottom:350.426667pt;}
.yca{bottom:352.346667pt;}
.y85{bottom:355.066667pt;}
.y1d{bottom:359.746667pt;}
.y2d{bottom:362.466667pt;}
.yf9{bottom:365.626667pt;}
.yc9{bottom:367.706667pt;}
.y84{bottom:370.426667pt;}
.y1c{bottom:372.226667pt;}
.y2c{bottom:378.146667pt;}
.yf8{bottom:380.986667pt;}
.y138{bottom:381.146667pt;}
.yc8{bottom:383.066667pt;}
.y1b{bottom:384.546667pt;}
.y83{bottom:385.626667pt;}
.y121{bottom:393.786667pt;}
.y2b{bottom:393.826667pt;}
.yf7{bottom:396.346667pt;}
.y1a{bottom:396.866667pt;}
.yc7{bottom:398.466667pt;}
.y82{bottom:401.026667pt;}
.y19{bottom:409.186667pt;}
.y2a{bottom:409.506667pt;}
.yf6{bottom:411.746667pt;}
.yc6{bottom:413.666667pt;}
.y81{bottom:416.386667pt;}
.y18{bottom:421.666667pt;}
.y29{bottom:425.026667pt;}
.yf5{bottom:427.106667pt;}
.y137{bottom:427.906667pt;}
.yc5{bottom:429.026667pt;}
.y80{bottom:431.746667pt;}
.y17{bottom:434.146667pt;}
.y28{bottom:440.706667pt;}
.yf4{bottom:442.306667pt;}
.yc4{bottom:444.386667pt;}
.y16{bottom:446.626667pt;}
.y7f{bottom:447.106667pt;}
.y120{bottom:455.906667pt;}
.y27{bottom:456.386667pt;}
.yf3{bottom:457.666667pt;}
.y15{bottom:459.586667pt;}
.yc3{bottom:459.746667pt;}
.y7e{bottom:462.306667pt;}
.y26{bottom:471.906667pt;}
.yf2{bottom:473.026667pt;}
.yc2{bottom:475.106667pt;}
.y14{bottom:475.586667pt;}
.y136{bottom:477.346667pt;}
.y7d{bottom:477.666667pt;}
.yf1{bottom:488.386667pt;}
.y25{bottom:490.306667pt;}
.y13{bottom:490.946667pt;}
.y7c{bottom:493.026667pt;}
.y11f{bottom:502.466667pt;}
.y117{bottom:503.426667pt;}
.yf0{bottom:503.746667pt;}
.yc1{bottom:505.666667pt;}
.y7b{bottom:508.386667pt;}
.yef{bottom:519.106667pt;}
.yc0{bottom:521.026667pt;}
.y7a{bottom:523.746667pt;}
.y116{bottom:531.906667pt;}
.yee{bottom:534.306667pt;}
.ybf{bottom:536.386667pt;}
.y79{bottom:539.106667pt;}
.y11e{bottom:549.186667pt;}
.yed{bottom:549.666667pt;}
.ybe{bottom:551.746667pt;}
.y13f{bottom:553.986667pt;}
.y78{bottom:554.306667pt;}
.yec{bottom:565.026667pt;}
.ybd{bottom:567.106667pt;}
.y77{bottom:569.666667pt;}
.yeb{bottom:580.386667pt;}
.ybc{bottom:582.306667pt;}
.y76{bottom:585.026667pt;}
.y112{bottom:593.826667pt;}
.yea{bottom:595.746667pt;}
.y11a{bottom:595.906667pt;}
.ybb{bottom:597.666667pt;}
.y75{bottom:600.386667pt;}
.ye9{bottom:611.133333pt;}
.yba{bottom:613.053333pt;}
.y74{bottom:615.773333pt;}
.ye8{bottom:626.333333pt;}
.yb9{bottom:628.413333pt;}
.y73{bottom:631.133333pt;}
.y111{bottom:640.573333pt;}
.ye7{bottom:641.693333pt;}
.y119{bottom:642.493333pt;}
.yb8{bottom:643.773333pt;}
.y72{bottom:646.333333pt;}
.ye6{bottom:657.053333pt;}
.yb7{bottom:659.133333pt;}
.y71{bottom:661.693333pt;}
.ye5{bottom:672.413333pt;}
.yb6{bottom:674.333333pt;}
.y70{bottom:677.053333pt;}
.ye4{bottom:687.773333pt;}
.yb5{bottom:689.693333pt;}
.y118{bottom:692.093333pt;}
.y6f{bottom:692.413333pt;}
.y110{bottom:702.493333pt;}
.ye3{bottom:702.813333pt;}
.y109{bottom:703.133333pt;}
.yb4{bottom:705.053333pt;}
.y6e{bottom:707.773333pt;}
.yb3{bottom:720.413333pt;}
.y6d{bottom:722.973333pt;}
.ye2{bottom:731.133333pt;}
.yb2{bottom:735.773333pt;}
.y9a{bottom:738.013333pt;}
.y6c{bottom:738.333333pt;}
.y10f{bottom:749.213333pt;}
.yb1{bottom:750.973333pt;}
.y6b{bottom:753.693333pt;}
.yb0{bottom:766.333333pt;}
.y6a{bottom:769.053333pt;}
.yaf{bottom:781.693333pt;}
.y69{bottom:784.413333pt;}
.ydf{bottom:793.213333pt;}
.yae{bottom:796.733333pt;}
.yd9{bottom:797.053333pt;}
.y68{bottom:799.773333pt;}
.y11{bottom:802.013333pt;}
.y10c{bottom:811.133333pt;}
.y67{bottom:814.973333pt;}
.y10{bottom:823.973333pt;}
.yad{bottom:825.253333pt;}
.y66{bottom:830.373333pt;}
.yde{bottom:839.813333pt;}
.ye{bottom:841.893333pt;}
.y96{bottom:845.413333pt;}
.y65{bottom:845.733333pt;}
.yf{bottom:847.173333pt;}
.y10b{bottom:860.773333pt;}
.y64{bottom:861.093333pt;}
.yd{bottom:861.253333pt;}
.y99{bottom:876.133333pt;}
.y63{bottom:876.453333pt;}
.yc{bottom:881.733333pt;}
.ydd{bottom:886.533333pt;}
.yac{bottom:887.173333pt;}
.y62{bottom:891.813333pt;}
.yb{bottom:904.613333pt;}
.y97{bottom:906.693333pt;}
.y61{bottom:907.013333pt;}
.y60{bottom:922.373333pt;}
.ya{bottom:925.413333pt;}
.ydc{bottom:933.253333pt;}
.y5f{bottom:937.733333pt;}
.y9{bottom:946.533333pt;}
.ya7{bottom:949.253333pt;}
.y53{bottom:951.333333pt;}
.y98{bottom:952.773333pt;}
.y5e{bottom:953.093333pt;}
.y8{bottom:967.813333pt;}
.y5d{bottom:968.453333pt;}
.ydb{bottom:979.813333pt;}
.y5c{bottom:983.813333pt;}
.y7{bottom:988.933333pt;}
.y5b{bottom:999.013333pt;}
.y6{bottom:1010.053333pt;}
.y5a{bottom:1014.373333pt;}
.y4{bottom:1041.120000pt;}
.y1{bottom:1058.880000pt;}
.h15{height:5.025000pt;}
.h16{height:5.160000pt;}
.h17{height:5.262553pt;}
.h14{height:5.280000pt;}
.h1d{height:14.240000pt;}
.h4{height:15.360000pt;}
.h21{height:30.560000pt;}
.h26{height:30.720000pt;}
.h2a{height:30.752000pt;}
.h1f{height:36.138125pt;}
.h10{height:36.305625pt;}
.h20{height:37.090625pt;}
.h12{height:40.640625pt;}
.hb{height:40.732364pt;}
.h13{height:40.764316pt;}
.ha{height:42.032838pt;}
.h1e{height:42.063437pt;}
.h3{height:42.649687pt;}
.h1c{height:43.215000pt;}
.hf{height:44.073883pt;}
.h11{height:44.638750pt;}
.he{height:44.975625pt;}
.h27{height:45.920000pt;}
.h29{height:45.952000pt;}
.h28{height:46.080000pt;}
.h2b{height:46.112000pt;}
.h5{height:52.134375pt;}
.h18{height:53.535000pt;}
.h19{height:54.598989pt;}
.hc{height:55.298750pt;}
.h9{height:59.340000pt;}
.h22{height:61.280000pt;}
.h23{height:61.312000pt;}
.h25{height:61.440000pt;}
.h1b{height:64.500000pt;}
.h2{height:68.748750pt;}
.h7{height:69.660000pt;}
.h6{height:70.773750pt;}
.h1a{height:72.160000pt;}
.h8{height:75.846471pt;}
.h24{height:76.672000pt;}
.hd{height:502.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w28{width:92.512000pt;}
.w24{width:93.312000pt;}
.w18{width:95.712000pt;}
.w14{width:96.512000pt;}
.w30{width:98.272000pt;}
.w2c{width:98.912000pt;}
.w20{width:100.192000pt;}
.w1c{width:100.832000pt;}
.w16{width:108.032000pt;}
.w12{width:108.512000pt;}
.we{width:113.440000pt;}
.wa{width:113.760000pt;}
.w26{width:116.800000pt;}
.w22{width:117.120000pt;}
.w1e{width:118.880000pt;}
.w1a{width:119.200000pt;}
.w2e{width:120.832000pt;}
.w2a{width:121.152000pt;}
.wf{width:131.072000pt;}
.w10{width:131.392000pt;}
.wb{width:131.712000pt;}
.wc{width:132.032000pt;}
.w27{width:158.106667pt;}
.w23{width:158.746667pt;}
.w1f{width:167.386667pt;}
.w1b{width:168.026667pt;}
.w17{width:178.106667pt;}
.w13{width:178.746667pt;}
.w2f{width:183.546667pt;}
.w2b{width:184.186667pt;}
.w4{width:188.546667pt;}
.w6{width:189.026667pt;}
.w21{width:231.906667pt;}
.w1d{width:232.226667pt;}
.w11{width:251.266667pt;}
.wd{width:251.586667pt;}
.w29{width:265.666667pt;}
.w25{width:265.986667pt;}
.w31{width:269.346667pt;}
.w2d{width:269.666667pt;}
.w19{width:277.026667pt;}
.w15{width:277.346667pt;}
.w3{width:446.333333pt;}
.w5{width:458.626667pt;}
.w7{width:459.106667pt;}
.w8{width:555.613333pt;}
.w9{width:639.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.200000pt;}
.x29{left:8.320000pt;}
.x18{left:9.600000pt;}
.x42{left:10.592000pt;}
.x2d{left:11.520000pt;}
.x31{left:12.640000pt;}
.x27{left:14.240000pt;}
.x2a{left:16.000000pt;}
.x40{left:17.120000pt;}
.xd{left:18.400000pt;}
.x2b{left:20.000000pt;}
.x26{left:21.440000pt;}
.x23{left:22.400000pt;}
.x2{left:24.000000pt;}
.x2e{left:25.120000pt;}
.x2c{left:26.080000pt;}
.x39{left:27.552000pt;}
.x30{left:28.480000pt;}
.x1e{left:30.240000pt;}
.x33{left:31.200000pt;}
.x1f{left:32.640000pt;}
.x21{left:34.760000pt;}
.x4a{left:36.000000pt;}
.x3{left:37.600000pt;}
.x36{left:39.040000pt;}
.x28{left:40.040000pt;}
.x51{left:41.280000pt;}
.x48{left:42.400000pt;}
.x58{left:44.192000pt;}
.x53{left:45.320000pt;}
.x10{left:46.240000pt;}
.x6{left:47.999988pt;}
.x35{left:51.080000pt;}
.x11{left:52.960000pt;}
.x3f{left:54.080000pt;}
.x14{left:55.994667pt;}
.x5a{left:57.320000pt;}
.x3b{left:58.280000pt;}
.x50{left:60.320000pt;}
.x2f{left:61.920000pt;}
.x38{left:66.400000pt;}
.x34{left:67.680000pt;}
.x49{left:69.640000pt;}
.x45{left:72.040000pt;}
.x4c{left:73.000000pt;}
.x44{left:75.200000pt;}
.x4d{left:79.392000pt;}
.x1d{left:82.432000pt;}
.x4b{left:84.840000pt;}
.x17{left:87.552000pt;}
.x41{left:88.480000pt;}
.x37{left:90.920000pt;}
.x25{left:92.040000pt;}
.x52{left:94.920000pt;}
.x1{left:96.031988pt;}
.x32{left:99.240000pt;}
.x57{left:101.160000pt;}
.x3e{left:104.840000pt;}
.x59{left:109.800000pt;}
.x43{left:113.800000pt;}
.x1b{left:120.031988pt;}
.x13{left:124.992000pt;}
.x15{left:140.034667pt;}
.x1c{left:144.026655pt;}
.x8{left:148.026655pt;}
.x9{left:151.706655pt;}
.x3a{left:174.906667pt;}
.x54{left:181.146667pt;}
.xe{left:191.546667pt;}
.x20{left:196.186667pt;}
.xf{left:197.306667pt;}
.xa{left:206.906655pt;}
.xc{left:237.506667pt;}
.x16{left:277.821333pt;}
.x22{left:327.906667pt;}
.x3c{left:353.666667pt;}
.x4e{left:355.266667pt;}
.x55{left:365.346667pt;}
.x46{left:374.146667pt;}
.x5{left:396.893322pt;}
.x4{left:405.373322pt;}
.x12{left:420.573322pt;}
.x7{left:428.413322pt;}
.x19{left:444.573322pt;}
.x4f{left:448.573333pt;}
.x3d{left:450.173333pt;}
.x24{left:459.933333pt;}
.x56{left:464.253333pt;}
.x1a{left:468.573322pt;}
.x47{left:474.973333pt;}
}




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