
    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_d0828cceea9e17607214f1e9.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_4897abd946f832742e8eefa4.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_e9a30f89858129642a96fe3e.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_832e8acb9dab776779ae505e.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_35704cbdd5342da6bdb81526.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f725dfdccfdd09ddc6e4e649.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7d965b85ebad7cd36c6f8f34.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c664886795baa287d010ebdd.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cf31ae26b927fea130dacb24.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_5f13fb5fea4c5b124e4422e4.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e71f9af59608970cf683b7af.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_d05a7245a02eba4c11cf7e67.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_34c6794f08f040b84f90886b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.112305;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_398bb0083ddb704e468c2f4f.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b694c58f7be1b56b2d299cf7.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_5b9c5d60da426bf34e302f17.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.708008;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);}
.v1{vertical-align:-88.740000px;}
.v2{vertical-align:-69.120000px;}
.v3{vertical-align:-67.800000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.666000px;}
.ls1a{letter-spacing:-0.612000px;}
.ls1c{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.069600px;}
.ls12{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.022320px;}
.lsb{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.224400px;}
.ls17{letter-spacing:0.259920px;}
.ls1b{letter-spacing:0.298800px;}
.ls18{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.612000px;}
.ls14{letter-spacing:0.828000px;}
.ls13{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.080000px;}
.ls16{letter-spacing:21.546720px;}
.ls15{letter-spacing:32.580000px;}
.lsc{letter-spacing:44.562720px;}
.ls3{letter-spacing:104.724000px;}
.ls11{letter-spacing:617.376000px;}
.ls10{letter-spacing:732.576000px;}
.lse{letter-spacing:744.816000px;}
.ls9{letter-spacing:881.616000px;}
.lsf{letter-spacing:890.976000px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws8{word-spacing:-16.020000px;}
.ws10{word-spacing:-15.552000px;}
.ws1{word-spacing:-15.300000px;}
.wse{word-spacing:-15.246600px;}
.wsc{word-spacing:-15.093600px;}
.wsa{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.274000px;}
.ws5{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.147200px;}
.ws6{word-spacing:-12.060000px;}
.ws0{word-spacing:-10.924560px;}
.ws4{word-spacing:-10.612800px;}
.ws7{word-spacing:0.000000px;}
._4b{margin-left:-9.153360px;}
._14{margin-left:-3.764880px;}
._10{margin-left:-2.569680px;}
._1{margin-left:-1.477440px;}
._0{width:1.434240px;}
._5{width:2.552880px;}
._b{width:3.918000px;}
._e{width:5.438160px;}
._11{width:6.519360px;}
._3{width:8.246880px;}
._9{width:9.485280px;}
._4{width:10.577520px;}
._2{width:11.892240px;}
._1a{width:12.908160px;}
._8{width:14.461920px;}
._a{width:15.640560px;}
._18{width:16.852320px;}
._3c{width:17.868240px;}
._f{width:18.910800px;}
._d{width:20.736720px;}
._c{width:21.872160px;}
._23{width:23.195280px;}
._20{width:24.919920px;}
._13{width:26.772480px;}
._12{width:28.146960px;}
._17{width:30.059280px;}
._16{width:31.134960px;}
._29{width:32.304000px;}
._6{width:33.405840px;}
._7{width:34.421760px;}
._24{width:35.915760px;}
._2e{width:36.991440px;}
._26{width:38.186640px;}
._22{width:39.262320px;}
._1b{width:40.816080px;}
._19{width:42.831360px;}
._1f{width:44.059680px;}
._21{width:45.178560px;}
._1e{width:46.596240px;}
._1d{width:48.453600px;}
._1c{width:50.078880px;}
._2d{width:51.632640px;}
._15{width:52.670160px;}
._30{width:54.645600px;}
._3d{width:55.696320px;}
._31{width:56.779920px;}
._39{width:57.780000px;}
._3e{width:59.760000px;}
._37{width:61.254000px;}
._28{width:62.269920px;}
._25{width:64.242000px;}
._3a{width:66.214080px;}
._32{width:67.767840px;}
._35{width:69.082560px;}
._27{width:70.098480px;}
._38{width:71.174160px;}
._4c{width:72.548640px;}
._51{width:74.580480px;}
._2a{width:76.253760px;}
._2b{width:77.389200px;}
._36{width:79.062480px;}
._3f{width:80.556480px;}
._4a{width:83.185920px;}
._3b{width:84.560400px;}
._43{width:85.760640px;}
._2c{width:87.352560px;}
._47{width:88.624080px;}
._2f{width:89.699760px;}
._42{width:92.453760px;}
._40{width:94.021920px;}
._46{width:108.165600px;}
._45{width:109.181520px;}
._4f{width:110.878320px;}
._44{width:113.484240px;}
._41{width:119.476800px;}
._33{width:121.286880px;}
._34{width:122.567760px;}
._4d{width:130.827360px;}
._50{width:155.831040px;}
._4e{width:158.615760px;}
._49{width:178.719120px;}
._48{width:200.145600px;}
.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);}
.fs9{font-size:5.760000px;}
.fsb{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs8{font-size:62.991941px;}
.fs5{font-size:66.240000px;}
.fs6{font-size:69.822393px;}
.fsa{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:81.965417px;}
.y0{bottom:0.000000px;}
.y48{bottom:3.240000px;}
.y5{bottom:3.600000px;}
.y4a{bottom:4.680000px;}
.y55{bottom:5.400000px;}
.y58{bottom:8.640000px;}
.ya2{bottom:12.060000px;}
.yf7{bottom:12.105000px;}
.ya0{bottom:12.240000px;}
.ya3{bottom:20.700000px;}
.yf8{bottom:20.745000px;}
.y47{bottom:20.880000px;}
.y57{bottom:23.040000px;}
.y9f{bottom:29.520000px;}
.y54{bottom:31.860000px;}
.y9e{bottom:38.160000px;}
.y46{bottom:38.520000px;}
.y45{bottom:55.980000px;}
.y3{bottom:58.140000px;}
.y53{bottom:64.440000px;}
.y44{bottom:73.620000px;}
.y2{bottom:80.100000px;}
.y43{bottom:91.260000px;}
.y108{bottom:108.540000px;}
.y42{bottom:108.720000px;}
.y56{bottom:113.580000px;}
.yd7{bottom:113.760000px;}
.yc0{bottom:115.920000px;}
.y140{bottom:121.140000px;}
.y14c{bottom:122.940000px;}
.y93{bottom:123.300000px;}
.y41{bottom:126.360000px;}
.y107{bottom:126.540000px;}
.ybd{bottom:133.200000px;}
.y13f{bottom:138.420000px;}
.y14b{bottom:140.220000px;}
.y92{bottom:140.580000px;}
.y40{bottom:144.000000px;}
.y106{bottom:144.540000px;}
.yd6{bottom:149.040000px;}
.ybc{bottom:150.300000px;}
.y13e{bottom:155.700000px;}
.y14a{bottom:157.500000px;}
.y91{bottom:157.860000px;}
.y3f{bottom:161.460000px;}
.y50{bottom:167.400000px;}
.ybb{bottom:167.580000px;}
.y13d{bottom:172.800000px;}
.y90{bottom:175.140000px;}
.y3e{bottom:179.100000px;}
.y105{bottom:183.060000px;}
.yd5{bottom:184.320000px;}
.y4f{bottom:184.680000px;}
.yba{bottom:184.860000px;}
.y13c{bottom:190.080000px;}
.y8f{bottom:192.060000px;}
.y9a{bottom:192.420000px;}
.y3d{bottom:196.785000px;}
.y104{bottom:200.700000px;}
.y4e{bottom:201.960000px;}
.yb9{bottom:202.140000px;}
.y13b{bottom:207.360000px;}
.y8e{bottom:209.700000px;}
.y3c{bottom:214.425000px;}
.y103{bottom:217.830000px;}
.y4d{bottom:218.730000px;}
.y51{bottom:219.090000px;}
.yb8{bottom:219.450000px;}
.yd4{bottom:222.870000px;}
.y13a{bottom:224.670000px;}
.y8d{bottom:226.830000px;}
.y3b{bottom:231.885000px;}
.y102{bottom:235.110000px;}
.y4c{bottom:236.010000px;}
.yb7{bottom:236.730000px;}
.yd3{bottom:240.330000px;}
.y139{bottom:241.950000px;}
.y8c{bottom:244.110000px;}
.y3a{bottom:249.525000px;}
.y4b{bottom:250.410000px;}
.y101{bottom:252.390000px;}
.y49{bottom:252.570000px;}
.yb6{bottom:253.830000px;}
.yd2{bottom:257.610000px;}
.y11{bottom:258.510000px;}
.y138{bottom:259.230000px;}
.y8b{bottom:261.390000px;}
.y39{bottom:267.165000px;}
.y100{bottom:269.670000px;}
.yb5{bottom:270.750000px;}
.ybf{bottom:271.110000px;}
.yd1{bottom:274.890000px;}
.y137{bottom:276.330000px;}
.y156{bottom:278.310000px;}
.y8a{bottom:278.670000px;}
.y38{bottom:284.625000px;}
.yff{bottom:286.950000px;}
.yb4{bottom:288.030000px;}
.ybe{bottom:288.390000px;}
.yd0{bottom:292.170000px;}
.y136{bottom:293.610000px;}
.y89{bottom:295.950000px;}
.y37{bottom:302.265000px;}
.yfe{bottom:304.230000px;}
.yb3{bottom:305.670000px;}
.ycf{bottom:309.450000px;}
.y135{bottom:310.890000px;}
.y88{bottom:313.230000px;}
.y36{bottom:319.905000px;}
.yfd{bottom:321.330000px;}
.yb2{bottom:322.950000px;}
.yce{bottom:326.730000px;}
.y146{bottom:327.810000px;}
.y134{bottom:328.170000px;}
.y87{bottom:330.330000px;}
.y35{bottom:337.365000px;}
.yfc{bottom:338.610000px;}
.yb1{bottom:340.230000px;}
.ycd{bottom:343.830000px;}
.y145{bottom:345.090000px;}
.y133{bottom:345.450000px;}
.y150{bottom:347.250000px;}
.y86{bottom:347.610000px;}
.y24{bottom:351.045000px;}
.y34{bottom:355.005000px;}
.yfb{bottom:355.890000px;}
.yb0{bottom:357.330000px;}
.ycc{bottom:361.110000px;}
.y132{bottom:362.730000px;}
.y85{bottom:364.890000px;}
.y23{bottom:369.945000px;}
.y33{bottom:372.645000px;}
.yfa{bottom:373.170000px;}
.yaf{bottom:374.610000px;}
.ycb{bottom:378.390000px;}
.y131{bottom:379.830000px;}
.y84{bottom:382.170000px;}
.y22{bottom:385.785000px;}
.y32{bottom:390.285000px;}
.yae{bottom:391.890000px;}
.yca{bottom:395.670000px;}
.y130{bottom:396.750000px;}
.y144{bottom:397.110000px;}
.y83{bottom:399.450000px;}
.y21{bottom:401.445000px;}
.yf9{bottom:404.850000px;}
.y31{bottom:407.745000px;}
.yad{bottom:409.170000px;}
.yc9{bottom:412.950000px;}
.y12f{bottom:414.390000px;}
.y82{bottom:416.730000px;}
.y20{bottom:417.285000px;}
.y30{bottom:425.415000px;}
.yac{bottom:426.450000px;}
.yc8{bottom:430.230000px;}
.y12e{bottom:431.670000px;}
.y1f{bottom:432.975000px;}
.y155{bottom:433.470000px;}
.y81{bottom:433.830000px;}
.yf6{bottom:440.130000px;}
.y2f{bottom:443.055000px;}
.yab{bottom:443.730000px;}
.y1e{bottom:447.015000px;}
.y12d{bottom:448.995000px;}
.y80{bottom:451.155000px;}
.y2e{bottom:460.515000px;}
.yaa{bottom:460.875000px;}
.y1d{bottom:461.055000px;}
.yc7{bottom:461.775000px;}
.y12c{bottom:466.095000px;}
.y7f{bottom:468.075000px;}
.y99{bottom:468.435000px;}
.y1c{bottom:475.095000px;}
.yf5{bottom:475.275000px;}
.y2d{bottom:478.155000px;}
.y12b{bottom:483.375000px;}
.y7e{bottom:485.355000px;}
.y98{bottom:485.715000px;}
.y1b{bottom:489.135000px;}
.y2c{bottom:495.795000px;}
.y12a{bottom:500.655000px;}
.y149{bottom:502.635000px;}
.y1a{bottom:502.995000px;}
.ya9{bottom:509.835000px;}
.yf4{bottom:510.555000px;}
.y2b{bottom:513.255000px;}
.yc6{bottom:514.335000px;}
.y19{bottom:516.675000px;}
.y129{bottom:517.935000px;}
.y148{bottom:519.735000px;}
.y7d{bottom:520.095000px;}
.y18{bottom:530.535000px;}
.y2a{bottom:530.895000px;}
.y128{bottom:535.215000px;}
.y7c{bottom:537.375000px;}
.y17{bottom:544.575000px;}
.y29{bottom:548.535000px;}
.yf3{bottom:549.075000px;}
.yc5{bottom:549.615000px;}
.y127{bottom:552.495000px;}
.y7b{bottom:554.655000px;}
.y16{bottom:558.615000px;}
.ya8{bottom:562.395000px;}
.y28{bottom:565.995000px;}
.yf2{bottom:566.715000px;}
.y126{bottom:569.595000px;}
.y97{bottom:571.575000px;}
.y7a{bottom:571.935000px;}
.y15{bottom:572.835000px;}
.y27{bottom:583.635000px;}
.yf1{bottom:583.995000px;}
.yc4{bottom:584.895000px;}
.y125{bottom:586.875000px;}
.y14{bottom:587.415000px;}
.y154{bottom:588.855000px;}
.y79{bottom:589.215000px;}
.ya7{bottom:597.495000px;}
.yf0{bottom:601.095000px;}
.y26{bottom:601.275000px;}
.y124{bottom:604.155000px;}
.y13{bottom:605.235000px;}
.y153{bottom:606.135000px;}
.y78{bottom:606.495000px;}
.yef{bottom:618.375000px;}
.y123{bottom:621.435000px;}
.y25{bottom:621.975000px;}
.y12{bottom:622.515000px;}
.y152{bottom:623.235000px;}
.y77{bottom:623.595000px;}
.ya6{bottom:632.775000px;}
.yee{bottom:635.655000px;}
.y122{bottom:638.355000px;}
.y143{bottom:638.715000px;}
.y76{bottom:640.875000px;}
.yed{bottom:652.935000px;}
.y121{bottom:655.995000px;}
.y15a{bottom:657.795000px;}
.y75{bottom:658.155000px;}
.yec{bottom:670.215000px;}
.y120{bottom:673.095000px;}
.y74{bottom:675.435000px;}
.ya5{bottom:685.365000px;}
.yeb{bottom:687.525000px;}
.y11f{bottom:690.405000px;}
.y73{bottom:692.745000px;}
.yea{bottom:704.625000px;}
.y11e{bottom:707.685000px;}
.y72{bottom:710.025000px;}
.ya4{bottom:720.645000px;}
.ye9{bottom:721.905000px;}
.y11d{bottom:724.965000px;}
.y71{bottom:727.125000px;}
.y11c{bottom:742.245000px;}
.y159{bottom:744.045000px;}
.y70{bottom:744.405000px;}
.ye8{bottom:753.585000px;}
.ya1{bottom:755.925000px;}
.y11b{bottom:759.525000px;}
.yc3{bottom:761.325000px;}
.y6f{bottom:761.685000px;}
.y11a{bottom:776.625000px;}
.y96{bottom:778.605000px;}
.y6e{bottom:778.965000px;}
.ye7{bottom:788.865000px;}
.y9d{bottom:791.025000px;}
.y119{bottom:793.905000px;}
.y6d{bottom:796.245000px;}
.y118{bottom:811.185000px;}
.y6c{bottom:813.345000px;}
.ye6{bottom:824.145000px;}
.y142{bottom:828.105000px;}
.y117{bottom:828.465000px;}
.y14f{bottom:830.265000px;}
.y6b{bottom:830.625000px;}
.y9c{bottom:843.585000px;}
.y141{bottom:845.385000px;}
.y116{bottom:845.745000px;}
.y14e{bottom:847.545000px;}
.y6a{bottom:847.905000px;}
.ye5{bottom:859.245000px;}
.y115{bottom:862.845000px;}
.y69{bottom:865.185000px;}
.y114{bottom:880.125000px;}
.y9b{bottom:882.105000px;}
.y68{bottom:882.465000px;}
.y113{bottom:897.405000px;}
.ye4{bottom:897.765000px;}
.y158{bottom:899.385000px;}
.y67{bottom:899.745000px;}
.y112{bottom:914.685000px;}
.ye3{bottom:915.405000px;}
.y157{bottom:916.485000px;}
.y66{bottom:916.845000px;}
.y10{bottom:922.110000px;}
.y111{bottom:932.010000px;}
.ye2{bottom:932.730000px;}
.y65{bottom:934.170000px;}
.yf{bottom:939.390000px;}
.y110{bottom:949.290000px;}
.ye1{bottom:950.010000px;}
.y64{bottom:951.090000px;}
.y95{bottom:951.450000px;}
.ye{bottom:956.670000px;}
.y10f{bottom:966.390000px;}
.ye0{bottom:967.290000px;}
.y147{bottom:968.370000px;}
.y63{bottom:968.730000px;}
.yd{bottom:975.750000px;}
.y10e{bottom:983.670000px;}
.ydf{bottom:984.390000px;}
.y62{bottom:986.010000px;}
.yc{bottom:995.190000px;}
.y10d{bottom:1000.950000px;}
.yde{bottom:1001.670000px;}
.y94{bottom:1002.930000px;}
.y61{bottom:1003.290000px;}
.yb{bottom:1017.510000px;}
.y10c{bottom:1018.230000px;}
.ydd{bottom:1018.950000px;}
.y60{bottom:1020.390000px;}
.y10b{bottom:1035.510000px;}
.ydc{bottom:1036.230000px;}
.y5f{bottom:1037.670000px;}
.ya{bottom:1041.090000px;}
.y10a{bottom:1052.790000px;}
.ydb{bottom:1053.510000px;}
.y151{bottom:1054.590000px;}
.y5e{bottom:1054.950000px;}
.y9{bottom:1064.850000px;}
.y52{bottom:1070.250000px;}
.yda{bottom:1070.790000px;}
.y5d{bottom:1072.230000px;}
.y109{bottom:1084.290000px;}
.yd9{bottom:1087.890000px;}
.y8{bottom:1088.790000px;}
.yc2{bottom:1089.150000px;}
.y5c{bottom:1089.510000px;}
.yc1{bottom:1106.430000px;}
.y5b{bottom:1106.790000px;}
.y7{bottom:1112.550000px;}
.yd8{bottom:1119.570000px;}
.y5a{bottom:1123.890000px;}
.y6{bottom:1136.310000px;}
.y14d{bottom:1140.810000px;}
.y59{bottom:1141.170000px;}
.y4{bottom:1171.260000px;}
.y1{bottom:1191.240000px;}
.h13{height:5.653125px;}
.h14{height:5.805000px;}
.h15{height:5.920372px;}
.h12{height:5.940000px;}
.h24{height:17.100000px;}
.h4{height:17.280000px;}
.h1b{height:34.200000px;}
.h20{height:34.380000px;}
.h26{height:34.416000px;}
.h21{height:34.560000px;}
.h25{height:34.596000px;}
.h1d{height:40.655391px;}
.he{height:40.843828px;}
.h10{height:45.720703px;}
.h11{height:45.859856px;}
.h1c{height:47.321367px;}
.h3{height:47.980898px;}
.h1a{height:48.616875px;}
.hf{height:50.218594px;}
.hd{height:50.597578px;}
.h23{height:51.660000px;}
.h1f{height:51.840000px;}
.h22{height:51.876000px;}
.h1e{height:53.573906px;}
.h5{height:58.651172px;}
.h16{height:60.226875px;}
.h17{height:61.423863px;}
.hb{height:62.211094px;}
.h9{height:66.757500px;}
.h19{height:72.562500px;}
.ha{height:72.686202px;}
.h2{height:77.342344px;}
.h7{height:78.367500px;}
.h6{height:79.620469px;}
.h18{height:81.180000px;}
.h8{height:85.327280px;}
.hc{height:636.195000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w37{width:87.120000px;}
.w33{width:87.840000px;}
.w2f{width:93.600000px;}
.w38{width:93.816000px;}
.w2b{width:94.320000px;}
.w34{width:94.716000px;}
.w28{width:95.436000px;}
.w24{width:96.156000px;}
.wf{width:100.476000px;}
.wb{width:101.376000px;}
.w27{width:113.400000px;}
.w10{width:113.976000px;}
.w23{width:114.120000px;}
.wc{width:114.696000px;}
.w30{width:119.196000px;}
.w2c{width:119.916000px;}
.w18{width:129.276000px;}
.w14{width:129.996000px;}
.w1e{width:133.020000px;}
.w1a{width:133.380000px;}
.w1f{width:133.776000px;}
.w1b{width:134.496000px;}
.w20{width:136.116000px;}
.w1c{width:136.836000px;}
.we{width:140.580000px;}
.wa{width:140.940000px;}
.w17{width:143.460000px;}
.w13{width:144.360000px;}
.w16{width:159.150000px;}
.w12{width:159.510000px;}
.w26{width:171.570000px;}
.w22{width:171.930000px;}
.w2e{width:176.790000px;}
.w2a{width:177.150000px;}
.w36{width:194.430000px;}
.w32{width:194.790000px;}
.w4{width:212.115000px;}
.w6{width:212.655000px;}
.w19{width:241.410000px;}
.w15{width:241.770000px;}
.w21{width:270.570000px;}
.w1d{width:270.930000px;}
.w31{width:283.890000px;}
.w2d{width:284.250000px;}
.w29{width:293.070000px;}
.w25{width:293.430000px;}
.w39{width:297.930000px;}
.w35{width:298.290000px;}
.w11{width:317.010000px;}
.wd{width:317.370000px;}
.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;}
.x9{left:8.100000px;}
.x21{left:9.720000px;}
.x1c{left:10.800000px;}
.x3c{left:12.600000px;}
.x29{left:13.680000px;}
.x1f{left:14.805000px;}
.x27{left:15.840000px;}
.x1d{left:16.920000px;}
.x28{left:19.260000px;}
.xb{left:20.700000px;}
.x26{left:22.500000px;}
.x2d{left:23.940000px;}
.x30{left:25.740000px;}
.x2{left:27.000000px;}
.x2b{left:28.440000px;}
.x3b{left:30.090000px;}
.x3{left:31.140000px;}
.x31{left:32.400000px;}
.x43{left:33.480000px;}
.x2e{left:34.920000px;}
.x3d{left:36.720000px;}
.x51{left:37.800000px;}
.x2c{left:39.825000px;}
.x39{left:41.250000px;}
.x25{left:42.345000px;}
.x32{left:44.100000px;}
.x45{left:45.540000px;}
.x2a{left:46.800000px;}
.x3e{left:48.954000px;}
.x2f{left:52.380000px;}
.x6{left:53.999987px;}
.x24{left:55.254000px;}
.x14{left:62.460000px;}
.x15{left:67.320000px;}
.x4b{left:70.734000px;}
.xe{left:76.680000px;}
.x53{left:79.554000px;}
.xf{left:81.360000px;}
.x46{left:83.340000px;}
.x44{left:86.040000px;}
.x16{left:87.660000px;}
.x17{left:90.900000px;}
.x42{left:95.040000px;}
.xc{left:99.540000px;}
.x10{left:101.700000px;}
.xd{left:103.860000px;}
.x4a{left:106.380000px;}
.x1{left:108.035987px;}
.x11{left:109.440000px;}
.x58{left:110.880000px;}
.x4c{left:112.320000px;}
.x4d{left:114.120000px;}
.x52{left:115.245000px;}
.x59{left:116.460000px;}
.x23{left:118.260000px;}
.x5a{left:121.535987px;}
.x33{left:123.120000px;}
.x57{left:125.685000px;}
.x34{left:135.035987px;}
.x19{left:140.616000px;}
.x1a{left:157.539000px;}
.x35{left:162.029987px;}
.x7{left:213.869987px;}
.x8{left:214.949987px;}
.x3f{left:242.130000px;}
.x1e{left:250.410000px;}
.xa{left:267.195000px;}
.x37{left:268.275000px;}
.x47{left:280.695000px;}
.x4e{left:285.915000px;}
.x36{left:293.474987px;}
.x54{left:303.555000px;}
.x1b{left:312.549000px;}
.x20{left:351.795000px;}
.x40{left:376.635000px;}
.x4f{left:380.235000px;}
.x55{left:391.395000px;}
.x48{left:394.815000px;}
.x38{left:412.635000px;}
.x12{left:418.935000px;}
.x13{left:423.975000px;}
.x5{left:446.504987px;}
.x4{left:454.244987px;}
.x22{left:466.485000px;}
.x18{left:473.144987px;}
.x56{left:486.105000px;}
.x49{left:490.965000px;}
.x50{left:500.145000px;}
.x41{left:513.465000px;}
.x3a{left:542.625000px;}
@media print{
.v1{vertical-align:-78.880000pt;}
.v2{vertical-align:-61.440000pt;}
.v3{vertical-align:-60.266667pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.592000pt;}
.ls1a{letter-spacing:-0.544000pt;}
.ls1c{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.061867pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.019840pt;}
.lsb{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.199467pt;}
.ls17{letter-spacing:0.231040pt;}
.ls1b{letter-spacing:0.265600pt;}
.ls18{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.544000pt;}
.ls14{letter-spacing:0.736000pt;}
.ls13{letter-spacing:0.800000pt;}
.ls8{letter-spacing:0.960000pt;}
.ls16{letter-spacing:19.152640pt;}
.ls15{letter-spacing:28.960000pt;}
.lsc{letter-spacing:39.611307pt;}
.ls3{letter-spacing:93.088000pt;}
.ls11{letter-spacing:548.778667pt;}
.ls10{letter-spacing:651.178667pt;}
.lse{letter-spacing:662.058667pt;}
.ls9{letter-spacing:783.658667pt;}
.lsf{letter-spacing:791.978667pt;}
.wsb{word-spacing:-53.120000pt;}
.ws8{word-spacing:-14.240000pt;}
.ws10{word-spacing:-13.824000pt;}
.ws1{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.552533pt;}
.wsc{word-spacing:-13.416533pt;}
.wsa{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.ws9{word-spacing:-12.688000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.686400pt;}
.ws6{word-spacing:-10.720000pt;}
.ws0{word-spacing:-9.710720pt;}
.ws4{word-spacing:-9.433600pt;}
.ws7{word-spacing:0.000000pt;}
._4b{margin-left:-8.136320pt;}
._14{margin-left:-3.346560pt;}
._10{margin-left:-2.284160pt;}
._1{margin-left:-1.313280pt;}
._0{width:1.274880pt;}
._5{width:2.269227pt;}
._b{width:3.482667pt;}
._e{width:4.833920pt;}
._11{width:5.794987pt;}
._3{width:7.330560pt;}
._9{width:8.431360pt;}
._4{width:9.402240pt;}
._2{width:10.570880pt;}
._1a{width:11.473920pt;}
._8{width:12.855040pt;}
._a{width:13.902720pt;}
._18{width:14.979840pt;}
._3c{width:15.882880pt;}
._f{width:16.809600pt;}
._d{width:18.432640pt;}
._c{width:19.441920pt;}
._23{width:20.618027pt;}
._20{width:22.151040pt;}
._13{width:23.797760pt;}
._12{width:25.019520pt;}
._17{width:26.719360pt;}
._16{width:27.675520pt;}
._29{width:28.714667pt;}
._6{width:29.694080pt;}
._7{width:30.597120pt;}
._24{width:31.925120pt;}
._2e{width:32.881280pt;}
._26{width:33.943680pt;}
._22{width:34.899840pt;}
._1b{width:36.280960pt;}
._19{width:38.072320pt;}
._1f{width:39.164160pt;}
._21{width:40.158720pt;}
._1e{width:41.418880pt;}
._1d{width:43.069867pt;}
._1c{width:44.514560pt;}
._2d{width:45.895680pt;}
._15{width:46.817920pt;}
._30{width:48.573867pt;}
._3d{width:49.507840pt;}
._31{width:50.471040pt;}
._39{width:51.360000pt;}
._3e{width:53.120000pt;}
._37{width:54.448000pt;}
._28{width:55.351040pt;}
._25{width:57.104000pt;}
._3a{width:58.856960pt;}
._32{width:60.238080pt;}
._35{width:61.406720pt;}
._27{width:62.309760pt;}
._38{width:63.265920pt;}
._4c{width:64.487680pt;}
._51{width:66.293760pt;}
._2a{width:67.781120pt;}
._2b{width:68.790400pt;}
._36{width:70.277760pt;}
._3f{width:71.605760pt;}
._4a{width:73.943040pt;}
._3b{width:75.164800pt;}
._43{width:76.231680pt;}
._2c{width:77.646720pt;}
._47{width:78.776960pt;}
._2f{width:79.733120pt;}
._42{width:82.181120pt;}
._40{width:83.575040pt;}
._46{width:96.147200pt;}
._45{width:97.050240pt;}
._4f{width:98.558507pt;}
._44{width:100.874880pt;}
._41{width:106.201600pt;}
._33{width:107.810560pt;}
._34{width:108.949120pt;}
._4d{width:116.290987pt;}
._50{width:138.516480pt;}
._4e{width:140.991787pt;}
._49{width:158.861440pt;}
._48{width:177.907200pt;}
.fs9{font-size:5.120000pt;}
.fsb{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs8{font-size:55.992837pt;}
.fs5{font-size:58.880000pt;}
.fs6{font-size:62.064349pt;}
.fsa{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:72.858149pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:2.880000pt;}
.y5{bottom:3.200000pt;}
.y4a{bottom:4.160000pt;}
.y55{bottom:4.800000pt;}
.y58{bottom:7.680000pt;}
.ya2{bottom:10.720000pt;}
.yf7{bottom:10.760000pt;}
.ya0{bottom:10.880000pt;}
.ya3{bottom:18.400000pt;}
.yf8{bottom:18.440000pt;}
.y47{bottom:18.560000pt;}
.y57{bottom:20.480000pt;}
.y9f{bottom:26.240000pt;}
.y54{bottom:28.320000pt;}
.y9e{bottom:33.920000pt;}
.y46{bottom:34.240000pt;}
.y45{bottom:49.760000pt;}
.y3{bottom:51.680000pt;}
.y53{bottom:57.280000pt;}
.y44{bottom:65.440000pt;}
.y2{bottom:71.200000pt;}
.y43{bottom:81.120000pt;}
.y108{bottom:96.480000pt;}
.y42{bottom:96.640000pt;}
.y56{bottom:100.960000pt;}
.yd7{bottom:101.120000pt;}
.yc0{bottom:103.040000pt;}
.y140{bottom:107.680000pt;}
.y14c{bottom:109.280000pt;}
.y93{bottom:109.600000pt;}
.y41{bottom:112.320000pt;}
.y107{bottom:112.480000pt;}
.ybd{bottom:118.400000pt;}
.y13f{bottom:123.040000pt;}
.y14b{bottom:124.640000pt;}
.y92{bottom:124.960000pt;}
.y40{bottom:128.000000pt;}
.y106{bottom:128.480000pt;}
.yd6{bottom:132.480000pt;}
.ybc{bottom:133.600000pt;}
.y13e{bottom:138.400000pt;}
.y14a{bottom:140.000000pt;}
.y91{bottom:140.320000pt;}
.y3f{bottom:143.520000pt;}
.y50{bottom:148.800000pt;}
.ybb{bottom:148.960000pt;}
.y13d{bottom:153.600000pt;}
.y90{bottom:155.680000pt;}
.y3e{bottom:159.200000pt;}
.y105{bottom:162.720000pt;}
.yd5{bottom:163.840000pt;}
.y4f{bottom:164.160000pt;}
.yba{bottom:164.320000pt;}
.y13c{bottom:168.960000pt;}
.y8f{bottom:170.720000pt;}
.y9a{bottom:171.040000pt;}
.y3d{bottom:174.920000pt;}
.y104{bottom:178.400000pt;}
.y4e{bottom:179.520000pt;}
.yb9{bottom:179.680000pt;}
.y13b{bottom:184.320000pt;}
.y8e{bottom:186.400000pt;}
.y3c{bottom:190.600000pt;}
.y103{bottom:193.626667pt;}
.y4d{bottom:194.426667pt;}
.y51{bottom:194.746667pt;}
.yb8{bottom:195.066667pt;}
.yd4{bottom:198.106667pt;}
.y13a{bottom:199.706667pt;}
.y8d{bottom:201.626667pt;}
.y3b{bottom:206.120000pt;}
.y102{bottom:208.986667pt;}
.y4c{bottom:209.786667pt;}
.yb7{bottom:210.426667pt;}
.yd3{bottom:213.626667pt;}
.y139{bottom:215.066667pt;}
.y8c{bottom:216.986667pt;}
.y3a{bottom:221.800000pt;}
.y4b{bottom:222.586667pt;}
.y101{bottom:224.346667pt;}
.y49{bottom:224.506667pt;}
.yb6{bottom:225.626667pt;}
.yd2{bottom:228.986667pt;}
.y11{bottom:229.786667pt;}
.y138{bottom:230.426667pt;}
.y8b{bottom:232.346667pt;}
.y39{bottom:237.480000pt;}
.y100{bottom:239.706667pt;}
.yb5{bottom:240.666667pt;}
.ybf{bottom:240.986667pt;}
.yd1{bottom:244.346667pt;}
.y137{bottom:245.626667pt;}
.y156{bottom:247.386667pt;}
.y8a{bottom:247.706667pt;}
.y38{bottom:253.000000pt;}
.yff{bottom:255.066667pt;}
.yb4{bottom:256.026667pt;}
.ybe{bottom:256.346667pt;}
.yd0{bottom:259.706667pt;}
.y136{bottom:260.986667pt;}
.y89{bottom:263.066667pt;}
.y37{bottom:268.680000pt;}
.yfe{bottom:270.426667pt;}
.yb3{bottom:271.706667pt;}
.ycf{bottom:275.066667pt;}
.y135{bottom:276.346667pt;}
.y88{bottom:278.426667pt;}
.y36{bottom:284.360000pt;}
.yfd{bottom:285.626667pt;}
.yb2{bottom:287.066667pt;}
.yce{bottom:290.426667pt;}
.y146{bottom:291.386667pt;}
.y134{bottom:291.706667pt;}
.y87{bottom:293.626667pt;}
.y35{bottom:299.880000pt;}
.yfc{bottom:300.986667pt;}
.yb1{bottom:302.426667pt;}
.ycd{bottom:305.626667pt;}
.y145{bottom:306.746667pt;}
.y133{bottom:307.066667pt;}
.y150{bottom:308.666667pt;}
.y86{bottom:308.986667pt;}
.y24{bottom:312.040000pt;}
.y34{bottom:315.560000pt;}
.yfb{bottom:316.346667pt;}
.yb0{bottom:317.626667pt;}
.ycc{bottom:320.986667pt;}
.y132{bottom:322.426667pt;}
.y85{bottom:324.346667pt;}
.y23{bottom:328.840000pt;}
.y33{bottom:331.240000pt;}
.yfa{bottom:331.706667pt;}
.yaf{bottom:332.986667pt;}
.ycb{bottom:336.346667pt;}
.y131{bottom:337.626667pt;}
.y84{bottom:339.706667pt;}
.y22{bottom:342.920000pt;}
.y32{bottom:346.920000pt;}
.yae{bottom:348.346667pt;}
.yca{bottom:351.706667pt;}
.y130{bottom:352.666667pt;}
.y144{bottom:352.986667pt;}
.y83{bottom:355.066667pt;}
.y21{bottom:356.840000pt;}
.yf9{bottom:359.866667pt;}
.y31{bottom:362.440000pt;}
.yad{bottom:363.706667pt;}
.yc9{bottom:367.066667pt;}
.y12f{bottom:368.346667pt;}
.y82{bottom:370.426667pt;}
.y20{bottom:370.920000pt;}
.y30{bottom:378.146667pt;}
.yac{bottom:379.066667pt;}
.yc8{bottom:382.426667pt;}
.y12e{bottom:383.706667pt;}
.y1f{bottom:384.866667pt;}
.y155{bottom:385.306667pt;}
.y81{bottom:385.626667pt;}
.yf6{bottom:391.226667pt;}
.y2f{bottom:393.826667pt;}
.yab{bottom:394.426667pt;}
.y1e{bottom:397.346667pt;}
.y12d{bottom:399.106667pt;}
.y80{bottom:401.026667pt;}
.y2e{bottom:409.346667pt;}
.yaa{bottom:409.666667pt;}
.y1d{bottom:409.826667pt;}
.yc7{bottom:410.466667pt;}
.y12c{bottom:414.306667pt;}
.y7f{bottom:416.066667pt;}
.y99{bottom:416.386667pt;}
.y1c{bottom:422.306667pt;}
.yf5{bottom:422.466667pt;}
.y2d{bottom:425.026667pt;}
.y12b{bottom:429.666667pt;}
.y7e{bottom:431.426667pt;}
.y98{bottom:431.746667pt;}
.y1b{bottom:434.786667pt;}
.y2c{bottom:440.706667pt;}
.y12a{bottom:445.026667pt;}
.y149{bottom:446.786667pt;}
.y1a{bottom:447.106667pt;}
.ya9{bottom:453.186667pt;}
.yf4{bottom:453.826667pt;}
.y2b{bottom:456.226667pt;}
.yc6{bottom:457.186667pt;}
.y19{bottom:459.266667pt;}
.y129{bottom:460.386667pt;}
.y148{bottom:461.986667pt;}
.y7d{bottom:462.306667pt;}
.y18{bottom:471.586667pt;}
.y2a{bottom:471.906667pt;}
.y128{bottom:475.746667pt;}
.y7c{bottom:477.666667pt;}
.y17{bottom:484.066667pt;}
.y29{bottom:487.586667pt;}
.yf3{bottom:488.066667pt;}
.yc5{bottom:488.546667pt;}
.y127{bottom:491.106667pt;}
.y7b{bottom:493.026667pt;}
.y16{bottom:496.546667pt;}
.ya8{bottom:499.906667pt;}
.y28{bottom:503.106667pt;}
.yf2{bottom:503.746667pt;}
.y126{bottom:506.306667pt;}
.y97{bottom:508.066667pt;}
.y7a{bottom:508.386667pt;}
.y15{bottom:509.186667pt;}
.y27{bottom:518.786667pt;}
.yf1{bottom:519.106667pt;}
.yc4{bottom:519.906667pt;}
.y125{bottom:521.666667pt;}
.y14{bottom:522.146667pt;}
.y154{bottom:523.426667pt;}
.y79{bottom:523.746667pt;}
.ya7{bottom:531.106667pt;}
.yf0{bottom:534.306667pt;}
.y26{bottom:534.466667pt;}
.y124{bottom:537.026667pt;}
.y13{bottom:537.986667pt;}
.y153{bottom:538.786667pt;}
.y78{bottom:539.106667pt;}
.yef{bottom:549.666667pt;}
.y123{bottom:552.386667pt;}
.y25{bottom:552.866667pt;}
.y12{bottom:553.346667pt;}
.y152{bottom:553.986667pt;}
.y77{bottom:554.306667pt;}
.ya6{bottom:562.466667pt;}
.yee{bottom:565.026667pt;}
.y122{bottom:567.426667pt;}
.y143{bottom:567.746667pt;}
.y76{bottom:569.666667pt;}
.yed{bottom:580.386667pt;}
.y121{bottom:583.106667pt;}
.y15a{bottom:584.706667pt;}
.y75{bottom:585.026667pt;}
.yec{bottom:595.746667pt;}
.y120{bottom:598.306667pt;}
.y74{bottom:600.386667pt;}
.ya5{bottom:609.213333pt;}
.yeb{bottom:611.133333pt;}
.y11f{bottom:613.693333pt;}
.y73{bottom:615.773333pt;}
.yea{bottom:626.333333pt;}
.y11e{bottom:629.053333pt;}
.y72{bottom:631.133333pt;}
.ya4{bottom:640.573333pt;}
.ye9{bottom:641.693333pt;}
.y11d{bottom:644.413333pt;}
.y71{bottom:646.333333pt;}
.y11c{bottom:659.773333pt;}
.y159{bottom:661.373333pt;}
.y70{bottom:661.693333pt;}
.ye8{bottom:669.853333pt;}
.ya1{bottom:671.933333pt;}
.y11b{bottom:675.133333pt;}
.yc3{bottom:676.733333pt;}
.y6f{bottom:677.053333pt;}
.y11a{bottom:690.333333pt;}
.y96{bottom:692.093333pt;}
.y6e{bottom:692.413333pt;}
.ye7{bottom:701.213333pt;}
.y9d{bottom:703.133333pt;}
.y119{bottom:705.693333pt;}
.y6d{bottom:707.773333pt;}
.y118{bottom:721.053333pt;}
.y6c{bottom:722.973333pt;}
.ye6{bottom:732.573333pt;}
.y142{bottom:736.093333pt;}
.y117{bottom:736.413333pt;}
.y14f{bottom:738.013333pt;}
.y6b{bottom:738.333333pt;}
.y9c{bottom:749.853333pt;}
.y141{bottom:751.453333pt;}
.y116{bottom:751.773333pt;}
.y14e{bottom:753.373333pt;}
.y6a{bottom:753.693333pt;}
.ye5{bottom:763.773333pt;}
.y115{bottom:766.973333pt;}
.y69{bottom:769.053333pt;}
.y114{bottom:782.333333pt;}
.y9b{bottom:784.093333pt;}
.y68{bottom:784.413333pt;}
.y113{bottom:797.693333pt;}
.ye4{bottom:798.013333pt;}
.y158{bottom:799.453333pt;}
.y67{bottom:799.773333pt;}
.y112{bottom:813.053333pt;}
.ye3{bottom:813.693333pt;}
.y157{bottom:814.653333pt;}
.y66{bottom:814.973333pt;}
.y10{bottom:819.653333pt;}
.y111{bottom:828.453333pt;}
.ye2{bottom:829.093333pt;}
.y65{bottom:830.373333pt;}
.yf{bottom:835.013333pt;}
.y110{bottom:843.813333pt;}
.ye1{bottom:844.453333pt;}
.y64{bottom:845.413333pt;}
.y95{bottom:845.733333pt;}
.ye{bottom:850.373333pt;}
.y10f{bottom:859.013333pt;}
.ye0{bottom:859.813333pt;}
.y147{bottom:860.773333pt;}
.y63{bottom:861.093333pt;}
.yd{bottom:867.333333pt;}
.y10e{bottom:874.373333pt;}
.ydf{bottom:875.013333pt;}
.y62{bottom:876.453333pt;}
.yc{bottom:884.613333pt;}
.y10d{bottom:889.733333pt;}
.yde{bottom:890.373333pt;}
.y94{bottom:891.493333pt;}
.y61{bottom:891.813333pt;}
.yb{bottom:904.453333pt;}
.y10c{bottom:905.093333pt;}
.ydd{bottom:905.733333pt;}
.y60{bottom:907.013333pt;}
.y10b{bottom:920.453333pt;}
.ydc{bottom:921.093333pt;}
.y5f{bottom:922.373333pt;}
.ya{bottom:925.413333pt;}
.y10a{bottom:935.813333pt;}
.ydb{bottom:936.453333pt;}
.y151{bottom:937.413333pt;}
.y5e{bottom:937.733333pt;}
.y9{bottom:946.533333pt;}
.y52{bottom:951.333333pt;}
.yda{bottom:951.813333pt;}
.y5d{bottom:953.093333pt;}
.y109{bottom:963.813333pt;}
.yd9{bottom:967.013333pt;}
.y8{bottom:967.813333pt;}
.yc2{bottom:968.133333pt;}
.y5c{bottom:968.453333pt;}
.yc1{bottom:983.493333pt;}
.y5b{bottom:983.813333pt;}
.y7{bottom:988.933333pt;}
.yd8{bottom:995.173333pt;}
.y5a{bottom:999.013333pt;}
.y6{bottom:1010.053333pt;}
.y14d{bottom:1014.053333pt;}
.y59{bottom:1014.373333pt;}
.y4{bottom:1041.120000pt;}
.y1{bottom:1058.880000pt;}
.h13{height:5.025000pt;}
.h14{height:5.160000pt;}
.h15{height:5.262553pt;}
.h12{height:5.280000pt;}
.h24{height:15.200000pt;}
.h4{height:15.360000pt;}
.h1b{height:30.400000pt;}
.h20{height:30.560000pt;}
.h26{height:30.592000pt;}
.h21{height:30.720000pt;}
.h25{height:30.752000pt;}
.h1d{height:36.138125pt;}
.he{height:36.305625pt;}
.h10{height:40.640625pt;}
.h11{height:40.764316pt;}
.h1c{height:42.063437pt;}
.h3{height:42.649687pt;}
.h1a{height:43.215000pt;}
.hf{height:44.638750pt;}
.hd{height:44.975625pt;}
.h23{height:45.920000pt;}
.h1f{height:46.080000pt;}
.h22{height:46.112000pt;}
.h1e{height:47.621250pt;}
.h5{height:52.134375pt;}
.h16{height:53.535000pt;}
.h17{height:54.598989pt;}
.hb{height:55.298750pt;}
.h9{height:59.340000pt;}
.h19{height:64.500000pt;}
.ha{height:64.609957pt;}
.h2{height:68.748750pt;}
.h7{height:69.660000pt;}
.h6{height:70.773750pt;}
.h18{height:72.160000pt;}
.h8{height:75.846471pt;}
.hc{height:565.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w37{width:77.440000pt;}
.w33{width:78.080000pt;}
.w2f{width:83.200000pt;}
.w38{width:83.392000pt;}
.w2b{width:83.840000pt;}
.w34{width:84.192000pt;}
.w28{width:84.832000pt;}
.w24{width:85.472000pt;}
.wf{width:89.312000pt;}
.wb{width:90.112000pt;}
.w27{width:100.800000pt;}
.w10{width:101.312000pt;}
.w23{width:101.440000pt;}
.wc{width:101.952000pt;}
.w30{width:105.952000pt;}
.w2c{width:106.592000pt;}
.w18{width:114.912000pt;}
.w14{width:115.552000pt;}
.w1e{width:118.240000pt;}
.w1a{width:118.560000pt;}
.w1f{width:118.912000pt;}
.w1b{width:119.552000pt;}
.w20{width:120.992000pt;}
.w1c{width:121.632000pt;}
.we{width:124.960000pt;}
.wa{width:125.280000pt;}
.w17{width:127.520000pt;}
.w13{width:128.320000pt;}
.w16{width:141.466667pt;}
.w12{width:141.786667pt;}
.w26{width:152.506667pt;}
.w22{width:152.826667pt;}
.w2e{width:157.146667pt;}
.w2a{width:157.466667pt;}
.w36{width:172.826667pt;}
.w32{width:173.146667pt;}
.w4{width:188.546667pt;}
.w6{width:189.026667pt;}
.w19{width:214.586667pt;}
.w15{width:214.906667pt;}
.w21{width:240.506667pt;}
.w1d{width:240.826667pt;}
.w31{width:252.346667pt;}
.w2d{width:252.666667pt;}
.w29{width:260.506667pt;}
.w25{width:260.826667pt;}
.w39{width:264.826667pt;}
.w35{width:265.146667pt;}
.w11{width:281.786667pt;}
.wd{width:282.106667pt;}
.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;}
.x9{left:7.200000pt;}
.x21{left:8.640000pt;}
.x1c{left:9.600000pt;}
.x3c{left:11.200000pt;}
.x29{left:12.160000pt;}
.x1f{left:13.160000pt;}
.x27{left:14.080000pt;}
.x1d{left:15.040000pt;}
.x28{left:17.120000pt;}
.xb{left:18.400000pt;}
.x26{left:20.000000pt;}
.x2d{left:21.280000pt;}
.x30{left:22.880000pt;}
.x2{left:24.000000pt;}
.x2b{left:25.280000pt;}
.x3b{left:26.746667pt;}
.x3{left:27.680000pt;}
.x31{left:28.800000pt;}
.x43{left:29.760000pt;}
.x2e{left:31.040000pt;}
.x3d{left:32.640000pt;}
.x51{left:33.600000pt;}
.x2c{left:35.400000pt;}
.x39{left:36.666667pt;}
.x25{left:37.640000pt;}
.x32{left:39.200000pt;}
.x45{left:40.480000pt;}
.x2a{left:41.600000pt;}
.x3e{left:43.514667pt;}
.x2f{left:46.560000pt;}
.x6{left:47.999988pt;}
.x24{left:49.114667pt;}
.x14{left:55.520000pt;}
.x15{left:59.840000pt;}
.x4b{left:62.874667pt;}
.xe{left:68.160000pt;}
.x53{left:70.714667pt;}
.xf{left:72.320000pt;}
.x46{left:74.080000pt;}
.x44{left:76.480000pt;}
.x16{left:77.920000pt;}
.x17{left:80.800000pt;}
.x42{left:84.480000pt;}
.xc{left:88.480000pt;}
.x10{left:90.400000pt;}
.xd{left:92.320000pt;}
.x4a{left:94.560000pt;}
.x1{left:96.031988pt;}
.x11{left:97.280000pt;}
.x58{left:98.560000pt;}
.x4c{left:99.840000pt;}
.x4d{left:101.440000pt;}
.x52{left:102.440000pt;}
.x59{left:103.520000pt;}
.x23{left:105.120000pt;}
.x5a{left:108.031988pt;}
.x33{left:109.440000pt;}
.x57{left:111.720000pt;}
.x34{left:120.031988pt;}
.x19{left:124.992000pt;}
.x1a{left:140.034667pt;}
.x35{left:144.026655pt;}
.x7{left:190.106655pt;}
.x8{left:191.066655pt;}
.x3f{left:215.226667pt;}
.x1e{left:222.586667pt;}
.xa{left:237.506667pt;}
.x37{left:238.466667pt;}
.x47{left:249.506667pt;}
.x4e{left:254.146667pt;}
.x36{left:260.866655pt;}
.x54{left:269.826667pt;}
.x1b{left:277.821333pt;}
.x20{left:312.706667pt;}
.x40{left:334.786667pt;}
.x4f{left:337.986667pt;}
.x55{left:347.906667pt;}
.x48{left:350.946667pt;}
.x38{left:366.786667pt;}
.x12{left:372.386667pt;}
.x13{left:376.866667pt;}
.x5{left:396.893322pt;}
.x4{left:403.773322pt;}
.x22{left:414.653333pt;}
.x18{left:420.573322pt;}
.x56{left:432.093333pt;}
.x49{left:436.413333pt;}
.x50{left:444.573333pt;}
.x41{left:456.413333pt;}
.x3a{left:482.333333pt;}
}




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