
    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_8f24f1052997500ae9b5d951.woff')format("woff");}.ff1{font-family:ff1;line-height:0.981000;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_64d6794ee841b4d0ad89dd34.woff')format("woff");}.ff2{font-family:ff2;line-height:1.041000;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_b04c4c6f615a737a28090b24.woff')format("woff");}.ff3{font-family:ff3;line-height:0.751000;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_6d52283b216fc0209a410156.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c15177907ce836dcdf5bc755.woff')format("woff");}.ff5{font-family:ff5;line-height:0.943848;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_bb86d96c2db99bf64a4ec737.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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;}
.m2{transform:matrix(0.236239,0.000000,-0.081799,0.236239,0,0);-ms-transform:matrix(0.236239,0.000000,-0.081799,0.236239,0,0);-webkit-transform:matrix(0.236239,0.000000,-0.081799,0.236239,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-36.738000px;}
.v3{vertical-align:-26.358000px;}
.v4{vertical-align:-23.472000px;}
.v6{vertical-align:-18.708000px;}
.v2{vertical-align:-17.010000px;}
.v9{vertical-align:-15.612000px;}
.va{vertical-align:-12.444000px;}
.v8{vertical-align:-11.316000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:17.082000px;}
.v1{vertical-align:25.686000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.005880px;}
.lse{letter-spacing:0.011880px;}
.ls4{letter-spacing:0.048000px;}
.lsa{letter-spacing:0.050040px;}
.ls5{letter-spacing:0.054000px;}
.ls8{letter-spacing:0.056040px;}
.ls12{letter-spacing:0.060600px;}
.ls13{letter-spacing:0.066600px;}
.ls9{letter-spacing:0.168000px;}
.ls7{letter-spacing:0.174000px;}
.ls11{letter-spacing:0.228000px;}
.lsc{letter-spacing:39.307056px;}
.lsb{letter-spacing:39.313056px;}
.ls1{letter-spacing:59.105304px;}
.lsd{letter-spacing:76.126512px;}
.ls10{letter-spacing:81.781380px;}
.ls2{letter-spacing:114.444252px;}
.ls3{letter-spacing:114.450252px;}
.ls6{letter-spacing:123.086148px;}
.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;}
}
.ws2{word-spacing:-47.520000px;}
.ws8{word-spacing:-34.312080px;}
.ws10{word-spacing:-31.557240px;}
.ws7{word-spacing:-26.417160px;}
.ws4{word-spacing:-23.760000px;}
.ws16{word-spacing:-22.846560px;}
.ws0{word-spacing:-21.102840px;}
.ws1a{word-spacing:-19.929042px;}
.wse{word-spacing:-18.483960px;}
.ws15{word-spacing:-17.545440px;}
.wsc{word-spacing:-15.828120px;}
.wsf{word-spacing:-13.986720px;}
.wsd{word-spacing:-13.977272px;}
.wsa{word-spacing:-13.844160px;}
.wsb{word-spacing:-13.207920px;}
.ws1c{word-spacing:-12.269400px;}
.ws6{word-spacing:-10.552080px;}
.ws1b{word-spacing:-9.349378px;}
.ws18{word-spacing:-9.233400px;}
.ws19{word-spacing:-8.834760px;}
.ws13{word-spacing:-8.805276px;}
.ws14{word-spacing:-6.993360px;}
.ws9{word-spacing:-2.892000px;}
.ws17{word-spacing:-2.034000px;}
.ws3{word-spacing:-0.192018px;}
.ws11{word-spacing:-0.127836px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:692.151600px;}
.ws5{word-spacing:1039.845978px;}
._9{margin-left:-12.633084px;}
._8{margin-left:-10.273164px;}
._2{margin-left:-8.640000px;}
._b{margin-left:-6.795612px;}
._c{margin-left:-5.697504px;}
._3{margin-left:-4.320000px;}
._1{margin-left:-2.808000px;}
._0{margin-left:-1.512000px;}
._4{width:1.757772px;}
._5{width:3.024000px;}
._7{width:4.027884px;}
._a{width:6.238560px;}
._e{width:687.000504px;}
._6{width:1031.121906px;}
._d{width:3634.976040px;}
.fc9{color:transparent;}
.fc8{color:rgb(54,0,100);}
.fc7{color:rgb(39,106,104);}
.fc5{color:rgb(142,88,182);}
.fc6{color:rgb(59,75,33);}
.fc3{color:rgb(243,164,71);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(38,38,38);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(33,33,33);}
.fs1e{font-size:25.230000px;}
.fs16{font-size:31.788000px;}
.fs1c{font-size:32.352000px;}
.fs18{font-size:35.976000px;}
.fse{font-size:37.758000px;}
.fs1b{font-size:40.158000px;}
.fs1a{font-size:41.970000px;}
.fs1d{font-size:42.497174px;}
.fs5{font-size:47.964000px;}
.fsc{font-size:48.642000px;}
.fs7{font-size:54.084000px;}
.fs1f{font-size:55.770000px;}
.fs21{font-size:59.958000px;}
.fsa{font-size:60.036000px;}
.fs9{font-size:62.928000px;}
.fsd{font-size:63.533053px;}
.fs13{font-size:63.576000px;}
.fsb{font-size:71.946000px;}
.fs14{font-size:79.752000px;}
.fsf{font-size:84.018000px;}
.fs11{font-size:89.970000px;}
.fs2{font-size:95.922000px;}
.fs17{font-size:103.848000px;}
.fs1{font-size:108.000000px;}
.fs19{font-size:111.654000px;}
.fs3{font-size:120.078000px;}
.fs15{font-size:127.836000px;}
.fs12{font-size:143.442000px;}
.fs6{font-size:155.964000px;}
.fs20{font-size:159.624000px;}
.fs8{font-size:168.036000px;}
.fs4{font-size:192.018000px;}
.fs0{font-size:216.000000px;}
.fs10{font-size:239.982000px;}
.y96{bottom:-116.836500px;}
.y95{bottom:-108.861000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y72{bottom:6.123000px;}
.y97{bottom:12.100500px;}
.y2c{bottom:15.732000px;}
.y12{bottom:18.156000px;}
.ye7{bottom:22.833000px;}
.y2b{bottom:26.404500px;}
.ye6{bottom:42.988500px;}
.y5d{bottom:44.602500px;}
.y2a{bottom:45.666000px;}
.y1f{bottom:49.024500px;}
.y69{bottom:56.338500px;}
.y5c{bottom:62.971500px;}
.ye5{bottom:63.142500px;}
.y31{bottom:64.246500px;}
.y29{bottom:64.927500px;}
.y93{bottom:69.313500px;}
.y46{bottom:69.604500px;}
.ye4{bottom:83.296500px;}
.y1e{bottom:86.101500px;}
.y5b{bottom:94.945500px;}
.y1a{bottom:95.200500px;}
.y45{bottom:100.303500px;}
.y68{bottom:103.110000px;}
.ye3{bottom:103.450500px;}
.y11{bottom:104.172000px;}
.y3b{bottom:110.508000px;}
.y5a{bottom:113.314500px;}
.y70{bottom:121.945500px;}
.y1d{bottom:123.178500px;}
.yc7{bottom:123.604500px;}
.y67{bottom:129.046500px;}
.y19{bottom:132.277500px;}
.y3a{bottom:132.661500px;}
.y90{bottom:137.161500px;}
.y7{bottom:138.145500px;}
.y44{bottom:138.655500px;}
.y92{bottom:141.291000px;}
.yc6{bottom:143.760000px;}
.y59{bottom:150.051000px;}
.y28{bottom:150.732000px;}
.y66{bottom:154.983000px;}
.y39{bottom:163.360500px;}
.yc5{bottom:163.914000px;}
.y6{bottom:167.655000px;}
.y58{bottom:168.420000px;}
.y43{bottom:169.356000px;}
.y65{bottom:180.921000px;}
.y2f{bottom:181.728000px;}
.y6f{bottom:183.897000px;}
.yc4{bottom:184.068000px;}
.y1c{bottom:187.681500px;}
.y5{bottom:197.163000px;}
.y2e{bottom:203.881500px;}
.ya3{bottom:204.222000px;}
.y57{bottom:205.156500px;}
.ye{bottom:206.178000px;}
.y64{bottom:206.857500px;}
.y6e{bottom:207.240000px;}
.y91{bottom:211.995000px;}
.y10{bottom:212.385000px;}
.y27{bottom:215.829000px;}
.y38{bottom:217.912500px;}
.y42{bottom:218.466000px;}
.y56{bottom:223.525500px;}
.ya2{bottom:224.377500px;}
.y2d{bottom:226.033500px;}
.y4{bottom:227.565000px;}
.y6d{bottom:230.583000px;}
.y4a{bottom:234.622500px;}
.y1b{bottom:235.771500px;}
.y63{bottom:237.472500px;}
.yc{bottom:239.215500px;}
.y23{bottom:244.360500px;}
.ya1{bottom:244.531500px;}
.y6c{bottom:254.266500px;}
.y55{bottom:260.262000px;}
.yc3{bottom:264.685500px;}
.y41{bottom:267.576000px;}
.y49{bottom:267.916500px;}
.y37{bottom:272.466000px;}
.yb{bottom:276.292500px;}
.y54{bottom:278.631000px;}
.y26{bottom:280.927500px;}
.y18{bottom:283.861500px;}
.ya0{bottom:284.839500px;}
.y62{bottom:288.921000px;}
.yd{bottom:289.600500px;}
.y98{bottom:294.663000px;}
.y22{bottom:296.022000px;}
.y48{bottom:301.209000px;}
.y8e{bottom:304.993500px;}
.y53{bottom:315.367500px;}
.y40{bottom:316.686000px;}
.ya{bottom:318.600000px;}
.yf{bottom:318.684000px;}
.y36{bottom:321.150000px;}
.y8d{bottom:325.149000px;}
.yc2{bottom:325.360500px;}
.y3{bottom:326.763000px;}
.y17{bottom:331.950000px;}
.y52{bottom:333.736500px;}
.y61{bottom:340.369500px;}
.yc1{bottom:342.114000px;}
.y85{bottom:345.303000px;}
.y25{bottom:346.024500px;}
.y21{bottom:347.683500px;}
.y51{bottom:352.105500px;}
.yc0{bottom:358.866000px;}
.y84{bottom:365.457000px;}
.y3f{bottom:365.796000px;}
.y9{bottom:372.600000px;}
.y94{bottom:373.710000px;}
.y16{bottom:380.040000px;}
.y35{bottom:381.571500px;}
.y83{bottom:385.611000px;}
.y50{bottom:388.842000px;}
.y6b{bottom:391.138500px;}
.y60{bottom:391.818000px;}
.ybf{bottom:392.371500px;}
.y2{bottom:393.391500px;}
.y82{bottom:405.766500px;}
.y4f{bottom:407.211000px;}
.ybe{bottom:409.125000px;}
.y24{bottom:411.123000px;}
.y3e{bottom:414.906000px;}
.ybd{bottom:425.877000px;}
.y81{bottom:425.920500px;}
.y15{bottom:428.130000px;}
.y34{bottom:436.123500px;}
.y13{bottom:442.969500px;}
.y5f{bottom:443.266500px;}
.y4e{bottom:443.947500px;}
.y6a{bottom:445.053000px;}
.y80{bottom:446.074500px;}
.y3d{bottom:454.833000px;}
.ybc{bottom:459.382500px;}
.y4d{bottom:462.316500px;}
.y7f{bottom:466.228500px;}
.ybb{bottom:476.136000px;}
.y14{bottom:476.220000px;}
.y33{bottom:484.809000px;}
.y7e{bottom:486.382500px;}
.yba{bottom:492.888000px;}
.y3c{bottom:493.993500px;}
.y5e{bottom:494.716500px;}
.y4c{bottom:499.053000px;}
.y7d{bottom:506.538000px;}
.y4b{bottom:517.422000px;}
.yb9{bottom:526.393500px;}
.y7c{bottom:526.692000px;}
.yb8{bottom:543.147000px;}
.y7b{bottom:546.846000px;}
.y20{bottom:561.769500px;}
.y8{bottom:561.811500px;}
.y32{bottom:563.683500px;}
.y47{bottom:565.681500px;}
.y7a{bottom:567.000000px;}
.yb7{bottom:576.652500px;}
.y8c{bottom:587.155500px;}
.yb6{bottom:593.404500px;}
.y79{bottom:607.309500px;}
.yb5{bottom:610.158000px;}
.y30{bottom:633.372000px;}
.y8f{bottom:652.293000px;}
.yc8{bottom:662.739000px;}
.yb4{bottom:669.838500px;}
.yfe{bottom:681.942000px;}
.yb3{bottom:682.650000px;}
.ya8{bottom:684.883500px;}
.y10a{bottom:689.748000px;}
.yfd{bottom:694.159500px;}
.ycd{bottom:695.008500px;}
.yb2{bottom:695.461500px;}
.ye2{bottom:698.572500px;}
.ya7{bottom:709.545000px;}
.yfc{bottom:715.428000px;}
.y9f{bottom:715.597500px;}
.ye1{bottom:718.992000px;}
.y109{bottom:720.858000px;}
.yd7{bottom:725.779500px;}
.yfb{bottom:727.645500px;}
.y111{bottom:733.386000px;}
.ya6{bottom:734.206500px;}
.y108{bottom:738.109500px;}
.y9e{bottom:740.259000px;}
.yd6{bottom:740.514000px;}
.y78{bottom:744.162000px;}
.ye0{bottom:744.501000px;}
.yfa{bottom:752.080500px;}
.yb1{bottom:752.533500px;}
.y107{bottom:755.361000px;}
.yd5{bottom:760.933500px;}
.y77{bottom:763.789500px;}
.yf9{bottom:764.298000px;}
.ydf{bottom:764.920500px;}
.y106{bottom:772.614000px;}
.ycb{bottom:773.151000px;}
.y110{bottom:774.592500px;}
.ya5{bottom:777.109500px;}
.y76{bottom:783.417000px;}
.yca{bottom:787.885500px;}
.yf8{bottom:788.734500px;}
.y105{bottom:789.865500px;}
.y10f{bottom:790.119000px;}
.yb0{bottom:795.832500px;}
.yd4{bottom:797.218500px;}
.yde{bottom:797.586000px;}
.yf7{bottom:800.952000px;}
.yc9{bottom:802.620000px;}
.y75{bottom:803.638500px;}
.y10e{bottom:805.647000px;}
.yeb{bottom:808.333500px;}
.ya4{bottom:809.097000px;}
.y104{bottom:810.228000px;}
.y8a{bottom:811.387500px;}
.yac{bottom:814.809000px;}
.y10d{bottom:821.398500px;}
.yf6{bottom:825.387000px;}
.ydd{bottom:830.251500px;}
.yea{bottom:830.478000px;}
.yd3{bottom:833.503500px;}
.y89{bottom:836.049000px;}
.yf5{bottom:837.604500px;}
.yaf{bottom:839.131500px;}
.y9d{bottom:841.083000px;}
.y103{bottom:844.449000px;}
.y8b{bottom:844.902000px;}
.yab{bottom:849.172500px;}
.ye9{bottom:852.622500px;}
.yf4{bottom:862.039500px;}
.ydc{bottom:862.917000px;}
.y88{bottom:864.189000px;}
.yd2{bottom:865.887000px;}
.y74{bottom:869.619000px;}
.y9c{bottom:873.070500px;}
.yf3{bottom:874.257000px;}
.y102{bottom:878.670000px;}
.yae{bottom:882.430500px;}
.yaa{bottom:883.534500px;}
.yf2{bottom:886.476000px;}
.ydb{bottom:895.582500px;}
.y87{bottom:900.106500px;}
.y9b{bottom:905.056500px;}
.yd1{bottom:906.075000px;}
.yf1{bottom:910.911000px;}
.y10c{bottom:912.438000px;}
.y101{bottom:912.891000px;}
.y73{bottom:913.936500px;}
.yf0{bottom:923.128500px;}
.yad{bottom:925.731000px;}
.yda{bottom:928.248000px;}
.y9a{bottom:937.042500px;}
.yd0{bottom:942.360000px;}
.y100{bottom:947.112000px;}
.yef{bottom:947.563500px;}
.y10b{bottom:948.298500px;}
.yd9{bottom:954.804000px;}
.yee{bottom:959.781000px;}
.y99{bottom:969.030000px;}
.ycf{bottom:974.742000px;}
.yd8{bottom:980.851500px;}
.yff{bottom:981.331500px;}
.yed{bottom:984.217500px;}
.yec{bottom:996.435000px;}
.ya9{bottom:1025.932500px;}
.y86{bottom:1025.961000px;}
.yce{bottom:1027.204500px;}
.ye8{bottom:1028.533500px;}
.ycc{bottom:1073.559000px;}
.y71{bottom:1168.144500px;}
.h2b{height:23.142533px;}
.h2c{height:24.190668px;}
.h32{height:32.969718px;}
.h39{height:33.343170px;}
.h30{height:34.457370px;}
.h36{height:34.629666px;}
.h37{height:34.635666px;}
.h38{height:34.890180px;}
.hd{height:36.500604px;}
.h33{height:39.378444px;}
.h35{height:43.455666px;}
.h31{height:44.206195px;}
.h3c{height:45.628038px;}
.h3a{height:45.787170px;}
.h2e{height:47.944392px;}
.h13{height:49.289556px;}
.h1a{height:50.270778px;}
.h12{height:51.663888px;}
.h17{height:51.930000px;}
.h18{height:51.936000px;}
.h19{height:52.160637px;}
.h22{height:52.195896px;}
.h23{height:52.975863px;}
.h21{height:54.750906px;}
.h14{height:59.067666px;}
.h25{height:60.691272px;}
.h16{height:65.196000px;}
.h27{height:65.476392px;}
.h1d{height:68.467170px;}
.h1b{height:68.978778px;}
.h10{height:72.220038px;}
.hf{height:72.226038px;}
.h2a{height:77.773272px;}
.h5{height:78.751962px;}
.h4{height:82.188000px;}
.h2d{height:85.259208px;}
.ha{height:88.668000px;}
.h7{height:91.379358px;}
.h2f{height:91.667934px;}
.h29{height:94.087296px;}
.h26{height:97.283196px;}
.h9{height:98.584038px;}
.h34{height:104.953356px;}
.h20{height:109.159362px;}
.hc{height:117.065358px;}
.h24{height:117.765882px;}
.h3b{height:121.473864px;}
.he{height:128.046444px;}
.h11{height:137.957556px;}
.hb{height:141.325248px;}
.h8{height:146.125698px;}
.h15{height:157.646778px;}
.h3{height:164.376000px;}
.h6{height:177.336000px;}
.h1c{height:182.626302px;}
.h28{height:445.435500px;}
.h2{height:669.642000px;}
.h0{height:669.685039px;}
.h1{height:669.750000px;}
.h1f{height:1187.956500px;}
.h1e{height:1188.000000px;}
.w5{width:791.886000px;}
.w4{width:917.956500px;}
.w3{width:918.000000px;}
.w1{width:1190.250000px;}
.w2{width:1190.508000px;}
.w0{width:1190.551181px;}
.x0{left:0.000000px;}
.x3c{left:63.013500px;}
.x38{left:91.800000px;}
.x45{left:144.949500px;}
.x41{left:172.657500px;}
.x40{left:219.463500px;}
.x4c{left:232.701000px;}
.x37{left:234.115500px;}
.x4b{left:237.057000px;}
.x5e{left:238.612500px;}
.x52{left:246.220500px;}
.x36{left:252.612000px;}
.x4f{left:253.912500px;}
.x19{left:255.118500px;}
.x3{left:257.244000px;}
.xb{left:259.582500px;}
.x18{left:261.666000px;}
.x32{left:264.004500px;}
.x49{left:265.197000px;}
.x4a{left:268.053000px;}
.x21{left:275.442000px;}
.x3a{left:282.760500px;}
.x2{left:285.052500px;}
.x1c{left:287.008500px;}
.x24{left:289.092000px;}
.x14{left:291.259500px;}
.x35{left:293.365500px;}
.xf{left:297.637500px;}
.x1d{left:299.764500px;}
.x15{left:303.973500px;}
.x16{left:308.268000px;}
.x46{left:318.960000px;}
.x48{left:328.746000px;}
.x5{left:330.378000px;}
.x1e{left:338.031000px;}
.x47{left:341.869500px;}
.x2d{left:343.857000px;}
.x1{left:346.323000px;}
.x43{left:360.759000px;}
.x4e{left:373.318500px;}
.x5f{left:376.089000px;}
.x7{left:381.231000px;}
.x11{left:384.802500px;}
.x3f{left:393.114000px;}
.x13{left:399.514500px;}
.x12{left:419.244000px;}
.x44{left:421.198500px;}
.x39{left:429.145500px;}
.x42{left:431.293500px;}
.x60{left:461.047500px;}
.x1b{left:466.525500px;}
.x33{left:470.692500px;}
.x53{left:492.100500px;}
.x10{left:495.822000px;}
.x54{left:507.996000px;}
.x3e{left:537.349500px;}
.xe{left:538.512000px;}
.xd{left:542.380500px;}
.x55{left:549.174000px;}
.x4{left:550.459500px;}
.x50{left:559.354500px;}
.x51{left:584.808000px;}
.xa{left:591.024000px;}
.x34{left:598.422000px;}
.x58{left:603.531000px;}
.x17{left:605.905500px;}
.x4d{left:608.622000px;}
.x22{left:645.108000px;}
.x5b{left:646.971000px;}
.xc{left:648.424500px;}
.x5d{left:666.147000px;}
.x27{left:667.558500px;}
.x23{left:669.004500px;}
.x3d{left:671.688000px;}
.x3b{left:692.278500px;}
.x59{left:695.361000px;}
.x56{left:704.977500px;}
.x5a{left:711.114000px;}
.x30{left:712.927500px;}
.x57{left:721.069500px;}
.x25{left:730.914000px;}
.x1f{left:746.220000px;}
.x5c{left:766.291500px;}
.x20{left:784.488000px;}
.x9{left:807.874500px;}
.x2a{left:812.635500px;}
.x1a{left:820.290000px;}
.x2e{left:877.947000px;}
.x31{left:906.775500px;}
.x6{left:946.063500px;}
.x2b{left:950.697000px;}
.x26{left:965.154000px;}
.x2c{left:974.380500px;}
.x29{left:989.347500px;}
.x8{left:1009.842000px;}
.x2f{left:1057.336500px;}
.x28{left:1137.613500px;}
@media print{
.v5{vertical-align:-32.656000pt;}
.v3{vertical-align:-23.429333pt;}
.v4{vertical-align:-20.864000pt;}
.v6{vertical-align:-16.629333pt;}
.v2{vertical-align:-15.120000pt;}
.v9{vertical-align:-13.877333pt;}
.va{vertical-align:-11.061333pt;}
.v8{vertical-align:-10.058667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:15.184000pt;}
.v1{vertical-align:22.832000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.005227pt;}
.lse{letter-spacing:0.010560pt;}
.ls4{letter-spacing:0.042667pt;}
.lsa{letter-spacing:0.044480pt;}
.ls5{letter-spacing:0.048000pt;}
.ls8{letter-spacing:0.049813pt;}
.ls12{letter-spacing:0.053867pt;}
.ls13{letter-spacing:0.059200pt;}
.ls9{letter-spacing:0.149333pt;}
.ls7{letter-spacing:0.154667pt;}
.ls11{letter-spacing:0.202667pt;}
.lsc{letter-spacing:34.939605pt;}
.lsb{letter-spacing:34.944939pt;}
.ls1{letter-spacing:52.538048pt;}
.lsd{letter-spacing:67.668011pt;}
.ls10{letter-spacing:72.694560pt;}
.ls2{letter-spacing:101.728224pt;}
.ls3{letter-spacing:101.733557pt;}
.ls6{letter-spacing:109.409909pt;}
.ws2{word-spacing:-42.240000pt;}
.ws8{word-spacing:-30.499627pt;}
.ws10{word-spacing:-28.050880pt;}
.ws7{word-spacing:-23.481920pt;}
.ws4{word-spacing:-21.120000pt;}
.ws16{word-spacing:-20.308053pt;}
.ws0{word-spacing:-18.758080pt;}
.ws1a{word-spacing:-17.714704pt;}
.wse{word-spacing:-16.430187pt;}
.ws15{word-spacing:-15.595947pt;}
.wsc{word-spacing:-14.069440pt;}
.wsf{word-spacing:-12.432640pt;}
.wsd{word-spacing:-12.424242pt;}
.wsa{word-spacing:-12.305920pt;}
.wsb{word-spacing:-11.740373pt;}
.ws1c{word-spacing:-10.906133pt;}
.ws6{word-spacing:-9.379627pt;}
.ws1b{word-spacing:-8.310559pt;}
.ws18{word-spacing:-8.207467pt;}
.ws19{word-spacing:-7.853120pt;}
.ws13{word-spacing:-7.826912pt;}
.ws14{word-spacing:-6.216320pt;}
.ws9{word-spacing:-2.570667pt;}
.ws17{word-spacing:-1.808000pt;}
.ws3{word-spacing:-0.170683pt;}
.ws11{word-spacing:-0.113632pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:615.245867pt;}
.ws5{word-spacing:924.307536pt;}
._9{margin-left:-11.229408pt;}
._8{margin-left:-9.131701pt;}
._2{margin-left:-7.680000pt;}
._b{margin-left:-6.040544pt;}
._c{margin-left:-5.064448pt;}
._3{margin-left:-3.840000pt;}
._1{margin-left:-2.496000pt;}
._0{margin-left:-1.344000pt;}
._4{width:1.562464pt;}
._5{width:2.688000pt;}
._7{width:3.580341pt;}
._a{width:5.545387pt;}
._e{width:610.667115pt;}
._6{width:916.552805pt;}
._d{width:3231.089813pt;}
.fs1e{font-size:22.426667pt;}
.fs16{font-size:28.256000pt;}
.fs1c{font-size:28.757333pt;}
.fs18{font-size:31.978667pt;}
.fse{font-size:33.562667pt;}
.fs1b{font-size:35.696000pt;}
.fs1a{font-size:37.306667pt;}
.fs1d{font-size:37.775266pt;}
.fs5{font-size:42.634667pt;}
.fsc{font-size:43.237333pt;}
.fs7{font-size:48.074667pt;}
.fs1f{font-size:49.573333pt;}
.fs21{font-size:53.296000pt;}
.fsa{font-size:53.365333pt;}
.fs9{font-size:55.936000pt;}
.fsd{font-size:56.473825pt;}
.fs13{font-size:56.512000pt;}
.fsb{font-size:63.952000pt;}
.fs14{font-size:70.890667pt;}
.fsf{font-size:74.682667pt;}
.fs11{font-size:79.973333pt;}
.fs2{font-size:85.264000pt;}
.fs17{font-size:92.309333pt;}
.fs1{font-size:96.000000pt;}
.fs19{font-size:99.248000pt;}
.fs3{font-size:106.736000pt;}
.fs15{font-size:113.632000pt;}
.fs12{font-size:127.504000pt;}
.fs6{font-size:138.634667pt;}
.fs20{font-size:141.888000pt;}
.fs8{font-size:149.365333pt;}
.fs4{font-size:170.682667pt;}
.fs0{font-size:192.000000pt;}
.fs10{font-size:213.317333pt;}
.y96{bottom:-103.854667pt;}
.y95{bottom:-96.765333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y72{bottom:5.442667pt;}
.y97{bottom:10.756000pt;}
.y2c{bottom:13.984000pt;}
.y12{bottom:16.138667pt;}
.ye7{bottom:20.296000pt;}
.y2b{bottom:23.470667pt;}
.ye6{bottom:38.212000pt;}
.y5d{bottom:39.646667pt;}
.y2a{bottom:40.592000pt;}
.y1f{bottom:43.577333pt;}
.y69{bottom:50.078667pt;}
.y5c{bottom:55.974667pt;}
.ye5{bottom:56.126667pt;}
.y31{bottom:57.108000pt;}
.y29{bottom:57.713333pt;}
.y93{bottom:61.612000pt;}
.y46{bottom:61.870667pt;}
.ye4{bottom:74.041333pt;}
.y1e{bottom:76.534667pt;}
.y5b{bottom:84.396000pt;}
.y1a{bottom:84.622667pt;}
.y45{bottom:89.158667pt;}
.y68{bottom:91.653333pt;}
.ye3{bottom:91.956000pt;}
.y11{bottom:92.597333pt;}
.y3b{bottom:98.229333pt;}
.y5a{bottom:100.724000pt;}
.y70{bottom:108.396000pt;}
.y1d{bottom:109.492000pt;}
.yc7{bottom:109.870667pt;}
.y67{bottom:114.708000pt;}
.y19{bottom:117.580000pt;}
.y3a{bottom:117.921333pt;}
.y90{bottom:121.921333pt;}
.y7{bottom:122.796000pt;}
.y44{bottom:123.249333pt;}
.y92{bottom:125.592000pt;}
.yc6{bottom:127.786667pt;}
.y59{bottom:133.378667pt;}
.y28{bottom:133.984000pt;}
.y66{bottom:137.762667pt;}
.y39{bottom:145.209333pt;}
.yc5{bottom:145.701333pt;}
.y6{bottom:149.026667pt;}
.y58{bottom:149.706667pt;}
.y43{bottom:150.538667pt;}
.y65{bottom:160.818667pt;}
.y2f{bottom:161.536000pt;}
.y6f{bottom:163.464000pt;}
.yc4{bottom:163.616000pt;}
.y1c{bottom:166.828000pt;}
.y5{bottom:175.256000pt;}
.y2e{bottom:181.228000pt;}
.ya3{bottom:181.530667pt;}
.y57{bottom:182.361333pt;}
.ye{bottom:183.269333pt;}
.y64{bottom:183.873333pt;}
.y6e{bottom:184.213333pt;}
.y91{bottom:188.440000pt;}
.y10{bottom:188.786667pt;}
.y27{bottom:191.848000pt;}
.y38{bottom:193.700000pt;}
.y42{bottom:194.192000pt;}
.y56{bottom:198.689333pt;}
.ya2{bottom:199.446667pt;}
.y2d{bottom:200.918667pt;}
.y4{bottom:202.280000pt;}
.y6d{bottom:204.962667pt;}
.y4a{bottom:208.553333pt;}
.y1b{bottom:209.574667pt;}
.y63{bottom:211.086667pt;}
.yc{bottom:212.636000pt;}
.y23{bottom:217.209333pt;}
.ya1{bottom:217.361333pt;}
.y6c{bottom:226.014667pt;}
.y55{bottom:231.344000pt;}
.yc3{bottom:235.276000pt;}
.y41{bottom:237.845333pt;}
.y49{bottom:238.148000pt;}
.y37{bottom:242.192000pt;}
.yb{bottom:245.593333pt;}
.y54{bottom:247.672000pt;}
.y26{bottom:249.713333pt;}
.y18{bottom:252.321333pt;}
.ya0{bottom:253.190667pt;}
.y62{bottom:256.818667pt;}
.yd{bottom:257.422667pt;}
.y98{bottom:261.922667pt;}
.y22{bottom:263.130667pt;}
.y48{bottom:267.741333pt;}
.y8e{bottom:271.105333pt;}
.y53{bottom:280.326667pt;}
.y40{bottom:281.498667pt;}
.ya{bottom:283.200000pt;}
.yf{bottom:283.274667pt;}
.y36{bottom:285.466667pt;}
.y8d{bottom:289.021333pt;}
.yc2{bottom:289.209333pt;}
.y3{bottom:290.456000pt;}
.y17{bottom:295.066667pt;}
.y52{bottom:296.654667pt;}
.y61{bottom:302.550667pt;}
.yc1{bottom:304.101333pt;}
.y85{bottom:306.936000pt;}
.y25{bottom:307.577333pt;}
.y21{bottom:309.052000pt;}
.y51{bottom:312.982667pt;}
.yc0{bottom:318.992000pt;}
.y84{bottom:324.850667pt;}
.y3f{bottom:325.152000pt;}
.y9{bottom:331.200000pt;}
.y94{bottom:332.186667pt;}
.y16{bottom:337.813333pt;}
.y35{bottom:339.174667pt;}
.y83{bottom:342.765333pt;}
.y50{bottom:345.637333pt;}
.y6b{bottom:347.678667pt;}
.y60{bottom:348.282667pt;}
.ybf{bottom:348.774667pt;}
.y2{bottom:349.681333pt;}
.y82{bottom:360.681333pt;}
.y4f{bottom:361.965333pt;}
.ybe{bottom:363.666667pt;}
.y24{bottom:365.442667pt;}
.y3e{bottom:368.805333pt;}
.ybd{bottom:378.557333pt;}
.y81{bottom:378.596000pt;}
.y15{bottom:380.560000pt;}
.y34{bottom:387.665333pt;}
.y13{bottom:393.750667pt;}
.y5f{bottom:394.014667pt;}
.y4e{bottom:394.620000pt;}
.y6a{bottom:395.602667pt;}
.y80{bottom:396.510667pt;}
.y3d{bottom:404.296000pt;}
.ybc{bottom:408.340000pt;}
.y4d{bottom:410.948000pt;}
.y7f{bottom:414.425333pt;}
.ybb{bottom:423.232000pt;}
.y14{bottom:423.306667pt;}
.y33{bottom:430.941333pt;}
.y7e{bottom:432.340000pt;}
.yba{bottom:438.122667pt;}
.y3c{bottom:439.105333pt;}
.y5e{bottom:439.748000pt;}
.y4c{bottom:443.602667pt;}
.y7d{bottom:450.256000pt;}
.y4b{bottom:459.930667pt;}
.yb9{bottom:467.905333pt;}
.y7c{bottom:468.170667pt;}
.yb8{bottom:482.797333pt;}
.y7b{bottom:486.085333pt;}
.y20{bottom:499.350667pt;}
.y8{bottom:499.388000pt;}
.y32{bottom:501.052000pt;}
.y47{bottom:502.828000pt;}
.y7a{bottom:504.000000pt;}
.yb7{bottom:512.580000pt;}
.y8c{bottom:521.916000pt;}
.yb6{bottom:527.470667pt;}
.y79{bottom:539.830667pt;}
.yb5{bottom:542.362667pt;}
.y30{bottom:562.997333pt;}
.y8f{bottom:579.816000pt;}
.yc8{bottom:589.101333pt;}
.yb4{bottom:595.412000pt;}
.yfe{bottom:606.170667pt;}
.yb3{bottom:606.800000pt;}
.ya8{bottom:608.785333pt;}
.y10a{bottom:613.109333pt;}
.yfd{bottom:617.030667pt;}
.ycd{bottom:617.785333pt;}
.yb2{bottom:618.188000pt;}
.ye2{bottom:620.953333pt;}
.ya7{bottom:630.706667pt;}
.yfc{bottom:635.936000pt;}
.y9f{bottom:636.086667pt;}
.ye1{bottom:639.104000pt;}
.y109{bottom:640.762667pt;}
.yd7{bottom:645.137333pt;}
.yfb{bottom:646.796000pt;}
.y111{bottom:651.898667pt;}
.ya6{bottom:652.628000pt;}
.y108{bottom:656.097333pt;}
.y9e{bottom:658.008000pt;}
.yd6{bottom:658.234667pt;}
.y78{bottom:661.477333pt;}
.ye0{bottom:661.778667pt;}
.yfa{bottom:668.516000pt;}
.yb1{bottom:668.918667pt;}
.y107{bottom:671.432000pt;}
.yd5{bottom:676.385333pt;}
.y77{bottom:678.924000pt;}
.yf9{bottom:679.376000pt;}
.ydf{bottom:679.929333pt;}
.y106{bottom:686.768000pt;}
.ycb{bottom:687.245333pt;}
.y110{bottom:688.526667pt;}
.ya5{bottom:690.764000pt;}
.y76{bottom:696.370667pt;}
.yca{bottom:700.342667pt;}
.yf8{bottom:701.097333pt;}
.y105{bottom:702.102667pt;}
.y10f{bottom:702.328000pt;}
.yb0{bottom:707.406667pt;}
.yd4{bottom:708.638667pt;}
.yde{bottom:708.965333pt;}
.yf7{bottom:711.957333pt;}
.yc9{bottom:713.440000pt;}
.y75{bottom:714.345333pt;}
.y10e{bottom:716.130667pt;}
.yeb{bottom:718.518667pt;}
.ya4{bottom:719.197333pt;}
.y104{bottom:720.202667pt;}
.y8a{bottom:721.233333pt;}
.yac{bottom:724.274667pt;}
.y10d{bottom:730.132000pt;}
.yf6{bottom:733.677333pt;}
.ydd{bottom:738.001333pt;}
.yea{bottom:738.202667pt;}
.yd3{bottom:740.892000pt;}
.y89{bottom:743.154667pt;}
.yf5{bottom:744.537333pt;}
.yaf{bottom:745.894667pt;}
.y9d{bottom:747.629333pt;}
.y103{bottom:750.621333pt;}
.y8b{bottom:751.024000pt;}
.yab{bottom:754.820000pt;}
.ye9{bottom:757.886667pt;}
.yf4{bottom:766.257333pt;}
.ydc{bottom:767.037333pt;}
.y88{bottom:768.168000pt;}
.yd2{bottom:769.677333pt;}
.y74{bottom:772.994667pt;}
.y9c{bottom:776.062667pt;}
.yf3{bottom:777.117333pt;}
.y102{bottom:781.040000pt;}
.yae{bottom:784.382667pt;}
.yaa{bottom:785.364000pt;}
.yf2{bottom:787.978667pt;}
.ydb{bottom:796.073333pt;}
.y87{bottom:800.094667pt;}
.y9b{bottom:804.494667pt;}
.yd1{bottom:805.400000pt;}
.yf1{bottom:809.698667pt;}
.y10c{bottom:811.056000pt;}
.y101{bottom:811.458667pt;}
.y73{bottom:812.388000pt;}
.yf0{bottom:820.558667pt;}
.yad{bottom:822.872000pt;}
.yda{bottom:825.109333pt;}
.y9a{bottom:832.926667pt;}
.yd0{bottom:837.653333pt;}
.y100{bottom:841.877333pt;}
.yef{bottom:842.278667pt;}
.y10b{bottom:842.932000pt;}
.yd9{bottom:848.714667pt;}
.yee{bottom:853.138667pt;}
.y99{bottom:861.360000pt;}
.ycf{bottom:866.437333pt;}
.yd8{bottom:871.868000pt;}
.yff{bottom:872.294667pt;}
.yed{bottom:874.860000pt;}
.yec{bottom:885.720000pt;}
.ya9{bottom:911.940000pt;}
.y86{bottom:911.965333pt;}
.yce{bottom:913.070667pt;}
.ye8{bottom:914.252000pt;}
.ycc{bottom:954.274667pt;}
.y71{bottom:1038.350667pt;}
.h2b{height:20.571141pt;}
.h2c{height:21.502816pt;}
.h32{height:29.306416pt;}
.h39{height:29.638373pt;}
.h30{height:30.628773pt;}
.h36{height:30.781925pt;}
.h37{height:30.787259pt;}
.h38{height:31.013493pt;}
.hd{height:32.444981pt;}
.h33{height:35.003061pt;}
.h35{height:38.627259pt;}
.h31{height:39.294396pt;}
.h3c{height:40.558256pt;}
.h3a{height:40.699707pt;}
.h2e{height:42.617237pt;}
.h13{height:43.812939pt;}
.h1a{height:44.685136pt;}
.h12{height:45.923456pt;}
.h17{height:46.160000pt;}
.h18{height:46.165333pt;}
.h19{height:46.365011pt;}
.h22{height:46.396352pt;}
.h23{height:47.089656pt;}
.h21{height:48.667472pt;}
.h14{height:52.504592pt;}
.h25{height:53.947797pt;}
.h16{height:57.952000pt;}
.h27{height:58.201237pt;}
.h1d{height:60.859707pt;}
.h1b{height:61.314469pt;}
.h10{height:64.195589pt;}
.hf{height:64.200923pt;}
.h2a{height:69.131797pt;}
.h5{height:70.001744pt;}
.h4{height:73.056000pt;}
.h2d{height:75.785963pt;}
.ha{height:78.816000pt;}
.h7{height:81.226096pt;}
.h2f{height:81.482608pt;}
.h29{height:83.633152pt;}
.h26{height:86.473952pt;}
.h9{height:87.630256pt;}
.h34{height:93.291872pt;}
.h20{height:97.030544pt;}
.hc{height:104.058096pt;}
.h24{height:104.680784pt;}
.h3b{height:107.976768pt;}
.he{height:113.819061pt;}
.h11{height:122.628939pt;}
.hb{height:125.622443pt;}
.h8{height:129.889509pt;}
.h15{height:140.130469pt;}
.h3{height:146.112000pt;}
.h6{height:157.632000pt;}
.h1c{height:162.334491pt;}
.h28{height:395.942667pt;}
.h2{height:595.237333pt;}
.h0{height:595.275591pt;}
.h1{height:595.333333pt;}
.h1f{height:1055.961333pt;}
.h1e{height:1056.000000pt;}
.w5{width:703.898667pt;}
.w4{width:815.961333pt;}
.w3{width:816.000000pt;}
.w1{width:1058.000000pt;}
.w2{width:1058.229333pt;}
.w0{width:1058.267717pt;}
.x0{left:0.000000pt;}
.x3c{left:56.012000pt;}
.x38{left:81.600000pt;}
.x45{left:128.844000pt;}
.x41{left:153.473333pt;}
.x40{left:195.078667pt;}
.x4c{left:206.845333pt;}
.x37{left:208.102667pt;}
.x4b{left:210.717333pt;}
.x5e{left:212.100000pt;}
.x52{left:218.862667pt;}
.x36{left:224.544000pt;}
.x4f{left:225.700000pt;}
.x19{left:226.772000pt;}
.x3{left:228.661333pt;}
.xb{left:230.740000pt;}
.x18{left:232.592000pt;}
.x32{left:234.670667pt;}
.x49{left:235.730667pt;}
.x4a{left:238.269333pt;}
.x21{left:244.837333pt;}
.x3a{left:251.342667pt;}
.x2{left:253.380000pt;}
.x1c{left:255.118667pt;}
.x24{left:256.970667pt;}
.x14{left:258.897333pt;}
.x35{left:260.769333pt;}
.xf{left:264.566667pt;}
.x1d{left:266.457333pt;}
.x15{left:270.198667pt;}
.x16{left:274.016000pt;}
.x46{left:283.520000pt;}
.x48{left:292.218667pt;}
.x5{left:293.669333pt;}
.x1e{left:300.472000pt;}
.x47{left:303.884000pt;}
.x2d{left:305.650667pt;}
.x1{left:307.842667pt;}
.x43{left:320.674667pt;}
.x4e{left:331.838667pt;}
.x5f{left:334.301333pt;}
.x7{left:338.872000pt;}
.x11{left:342.046667pt;}
.x3f{left:349.434667pt;}
.x13{left:355.124000pt;}
.x12{left:372.661333pt;}
.x44{left:374.398667pt;}
.x39{left:381.462667pt;}
.x42{left:383.372000pt;}
.x60{left:409.820000pt;}
.x1b{left:414.689333pt;}
.x33{left:418.393333pt;}
.x53{left:437.422667pt;}
.x10{left:440.730667pt;}
.x54{left:451.552000pt;}
.x3e{left:477.644000pt;}
.xe{left:478.677333pt;}
.xd{left:482.116000pt;}
.x55{left:488.154667pt;}
.x4{left:489.297333pt;}
.x50{left:497.204000pt;}
.x51{left:519.829333pt;}
.xa{left:525.354667pt;}
.x34{left:531.930667pt;}
.x58{left:536.472000pt;}
.x17{left:538.582667pt;}
.x4d{left:540.997333pt;}
.x22{left:573.429333pt;}
.x5b{left:575.085333pt;}
.xc{left:576.377333pt;}
.x5d{left:592.130667pt;}
.x27{left:593.385333pt;}
.x23{left:594.670667pt;}
.x3d{left:597.056000pt;}
.x3b{left:615.358667pt;}
.x59{left:618.098667pt;}
.x56{left:626.646667pt;}
.x5a{left:632.101333pt;}
.x30{left:633.713333pt;}
.x57{left:640.950667pt;}
.x25{left:649.701333pt;}
.x1f{left:663.306667pt;}
.x5c{left:681.148000pt;}
.x20{left:697.322667pt;}
.x9{left:718.110667pt;}
.x2a{left:722.342667pt;}
.x1a{left:729.146667pt;}
.x2e{left:780.397333pt;}
.x31{left:806.022667pt;}
.x6{left:840.945333pt;}
.x2b{left:845.064000pt;}
.x26{left:857.914667pt;}
.x2c{left:866.116000pt;}
.x29{left:879.420000pt;}
.x8{left:897.637333pt;}
.x2f{left:939.854667pt;}
.x28{left:1011.212000pt;}
}




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