
    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_72b3332321d6e1779ee6d233.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_96e0dde06a91a4473d66bdeb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.008789;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_54516235d4059791edf91b7c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_19ce84bd1f046db1fda7a52c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_735b17846fb33297352bd8b2.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_7df6944b86de12fd0534aacb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_494ac08ac5f4bd2d41459fbf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_e49f9cd4ae62ec099a091859.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.073242;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_b657e8c1050bc7bf3aef908d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4c7f47ae5f1841c76dd92c6e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969238;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_514c5c8023017a77d389a035.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e1c94af35c421e3655edd595.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v4{vertical-align:-79.920000px;}
.v5{vertical-align:-65.520000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls19{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.624000px;}
.ls12{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.106800px;}
.ls1a{letter-spacing:-0.053280px;}
.lse{letter-spacing:-0.052560px;}
.lsd{letter-spacing:-0.000003px;}
.lsc{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.093600px;}
.ls2{letter-spacing:0.149760px;}
.ls9{letter-spacing:0.174240px;}
.ls3{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.262200px;}
.ls16{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.311760px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.666720px;}
.ls11{letter-spacing:0.900000px;}
.lsa{letter-spacing:2.334240px;}
.lsb{letter-spacing:3.029760px;}
.ls6{letter-spacing:3.774240px;}
.ls1b{letter-spacing:4.469760px;}
.ls1d{letter-spacing:4.500000px;}
.ls1c{letter-spacing:10.260000px;}
.ls8{letter-spacing:13.860000px;}
.ls7{letter-spacing:18.900000px;}
.ls17{letter-spacing:197.436000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-17.639997px;}
.wsa{word-spacing:-16.865400px;}
.ws5{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws8{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.833200px;}
.wsd{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.113200px;}
.ws2{word-spacing:-10.489200px;}
.ws6{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._14{margin-left:-4.371840px;}
._15{margin-left:-3.284880px;}
._6{margin-left:-2.266800px;}
._1{margin-left:-1.088640px;}
._0{width:1.296000px;}
._4{width:3.184320px;}
._5{width:4.307040px;}
._a{width:5.481840px;}
._11{width:6.601920px;}
._7{width:7.608240px;}
._8{width:8.784720px;}
._9{width:9.792240px;}
._13{width:10.885920px;}
._12{width:11.947440px;}
._e{width:13.598400px;}
._16{width:15.559680px;}
._28{width:16.866720px;}
._b{width:18.047520px;}
._c{width:19.169760px;}
._1a{width:20.318880px;}
._1e{width:21.325440px;}
._d{width:22.787280px;}
._18{width:26.959680px;}
._19{width:28.114560px;}
._26{width:30.795120px;}
._27{width:32.610240px;}
._25{width:35.019360px;}
._17{width:38.485440px;}
._29{width:44.461440px;}
._23{width:46.015200px;}
._24{width:47.320560px;}
._22{width:51.333840px;}
._3{width:52.778880px;}
._2{width:54.086880px;}
._1b{width:77.246400px;}
._10{width:102.087840px;}
._f{width:103.504320px;}
._20{width:131.591520px;}
._21{width:132.670560px;}
._1f{width:179.459280px;}
._1d{width:196.560000px;}
._1c{width:198.360000px;}
._2a{width:847.790640px;}
.fc6{color:rgb(46,151,211);}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs1{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y4a{bottom:-119.520060px;}
.y49{bottom:-102.240000px;}
.y48{bottom:-84.960000px;}
.y47{bottom:-67.680000px;}
.y46{bottom:-50.580000px;}
.y45{bottom:-33.300000px;}
.y19{bottom:-16.380000px;}
.y44{bottom:-16.020000px;}
.y0{bottom:0.000000px;}
.y18{bottom:0.900000px;}
.y43{bottom:1.260000px;}
.y103{bottom:2.880000px;}
.y114{bottom:3.060000px;}
.y122{bottom:3.240000px;}
.ybe{bottom:3.420000px;}
.y101{bottom:3.600000px;}
.yc4{bottom:3.780000px;}
.yc2{bottom:4.320000px;}
.ycf{bottom:4.500000px;}
.yeb{bottom:4.680000px;}
.yd0{bottom:4.860000px;}
.yc1{bottom:5.220000px;}
.yf1{bottom:5.400000px;}
.yca{bottom:5.580000px;}
.y7{bottom:5.760000px;}
.yc8{bottom:5.940000px;}
.y10c{bottom:6.120000px;}
.y4f{bottom:6.300000px;}
.yd4{bottom:7.200000px;}
.ye9{bottom:7.560000px;}
.y8{bottom:7.740000px;}
.yc7{bottom:7.920000px;}
.y50{bottom:8.640000px;}
.y110{bottom:9.180000px;}
.y111{bottom:9.540000px;}
.y10e{bottom:11.700000px;}
.ybf{bottom:12.060000px;}
.y4{bottom:13.140000px;}
.yff{bottom:15.120000px;}
.y2{bottom:15.300000px;}
.y113{bottom:16.920000px;}
.yf9{bottom:17.460000px;}
.y29{bottom:18.540000px;}
.y128{bottom:18.900000px;}
.ybd{bottom:20.700000px;}
.y10{bottom:21.420000px;}
.y39{bottom:22.860000px;}
.y17{bottom:23.400000px;}
.yee{bottom:24.120000px;}
.y51{bottom:24.156000px;}
.ycc{bottom:24.480000px;}
.ye8{bottom:24.840000px;}
.yd2{bottom:25.020000px;}
.y9{bottom:25.776000px;}
.yfe{bottom:32.400000px;}
.ye0{bottom:34.200000px;}
.yf8{bottom:34.560000px;}
.y42{bottom:35.814000px;}
.y28{bottom:35.820000px;}
.y4e{bottom:36.756000px;}
.yf{bottom:40.320000px;}
.y16{bottom:40.500000px;}
.y6{bottom:41.256000px;}
.y10a{bottom:41.400000px;}
.ye5{bottom:43.740000px;}
.yd7{bottom:44.145000px;}
.y11f{bottom:48.780000px;}
.yf7{bottom:51.840000px;}
.y41{bottom:52.914000px;}
.y27{bottom:53.100000px;}
.y15{bottom:57.780000px;}
.ye{bottom:59.400000px;}
.y40{bottom:70.194000px;}
.y26{bottom:70.380000px;}
.y14{bottom:75.060000px;}
.yd{bottom:80.100000px;}
.y13{bottom:85.860000px;}
.y3f{bottom:87.474000px;}
.y25{bottom:87.480000px;}
.y38{bottom:92.340000px;}
.y12{bottom:99.540000px;}
.yc{bottom:100.800000px;}
.y3e{bottom:104.754000px;}
.y24{bottom:105.840000px;}
.y37{bottom:109.440000px;}
.y88{bottom:111.996000px;}
.y16c{bottom:117.036000px;}
.y3a{bottom:120.456000px;}
.y3d{bottom:122.034000px;}
.y1a7{bottom:123.516000px;}
.yb9{bottom:124.056000px;}
.y23{bottom:124.380000px;}
.y1e1{bottom:125.316000px;}
.y36{bottom:126.720000px;}
.y87{bottom:130.896000px;}
.y16b{bottom:135.936000px;}
.y3c{bottom:139.314000px;}
.y1a6{bottom:140.796000px;}
.y22{bottom:141.660000px;}
.y1e0{bottom:142.596000px;}
.y35{bottom:144.000000px;}
.y13d{bottom:147.096000px;}
.y86{bottom:149.976000px;}
.y16a{bottom:154.830000px;}
.yb8{bottom:156.270000px;}
.y3b{bottom:156.414000px;}
.y1a5{bottom:158.070000px;}
.y21{bottom:158.760000px;}
.y1df{bottom:159.870000px;}
.y34{bottom:161.280000px;}
.y13c{bottom:166.170000px;}
.y85{bottom:168.870000px;}
.y169{bottom:173.910000px;}
.y1a4{bottom:175.350000px;}
.y20{bottom:176.040000px;}
.y1de{bottom:176.970000px;}
.y33{bottom:178.560000px;}
.y13b{bottom:185.070000px;}
.y84{bottom:187.410000px;}
.yb7{bottom:188.670000px;}
.y1a3{bottom:192.630000px;}
.y168{bottom:192.810000px;}
.y1f{bottom:193.320000px;}
.y1dd{bottom:194.250000px;}
.y32{bottom:195.660000px;}
.y13a{bottom:204.150000px;}
.y83{bottom:206.850000px;}
.y1a2{bottom:209.730000px;}
.y1e{bottom:210.600000px;}
.y1dc{bottom:211.530000px;}
.y167{bottom:211.890000px;}
.y31{bottom:212.940000px;}
.yb6{bottom:220.890000px;}
.y139{bottom:223.050000px;}
.y82{bottom:225.750000px;}
.y1a1{bottom:227.010000px;}
.y1d{bottom:227.925000px;}
.y1db{bottom:228.810000px;}
.y30{bottom:230.220000px;}
.y166{bottom:230.790000px;}
.y138{bottom:241.950000px;}
.y1a0{bottom:244.290000px;}
.y81{bottom:244.830000px;}
.y1c{bottom:245.205000px;}
.y1da{bottom:246.090000px;}
.y2f{bottom:247.500000px;}
.y165{bottom:249.690000px;}
.yb5{bottom:253.110000px;}
.y137{bottom:261.030000px;}
.y19f{bottom:261.570000px;}
.y1b{bottom:261.945000px;}
.y1d9{bottom:263.190000px;}
.y80{bottom:263.730000px;}
.y2e{bottom:264.780000px;}
.y102{bottom:268.050000px;}
.y164{bottom:268.770000px;}
.y19e{bottom:278.850000px;}
.y136{bottom:279.930000px;}
.y1d8{bottom:280.470000px;}
.y2d{bottom:282.090000px;}
.yfd{bottom:282.675000px;}
.y7f{bottom:282.855000px;}
.yb4{bottom:285.375000px;}
.y163{bottom:287.715000px;}
.y2a{bottom:290.415000px;}
.y19d{bottom:296.175000px;}
.y1d7{bottom:297.795000px;}
.y2c{bottom:298.830000px;}
.y135{bottom:299.055000px;}
.y100{bottom:300.675000px;}
.y7e{bottom:301.755000px;}
.yb3{bottom:303.555000px;}
.y162{bottom:306.795000px;}
.y19c{bottom:313.275000px;}
.y1d6{bottom:315.075000px;}
.y2b{bottom:316.110000px;}
.y134{bottom:317.955000px;}
.yfc{bottom:320.475000px;}
.y7d{bottom:320.655000px;}
.yb2{bottom:322.455000px;}
.y161{bottom:325.695000px;}
.y19b{bottom:330.555000px;}
.y1d5{bottom:332.355000px;}
.y133{bottom:336.855000px;}
.y7c{bottom:339.735000px;}
.yf6{bottom:340.635000px;}
.yb1{bottom:341.355000px;}
.y160{bottom:344.595000px;}
.y19a{bottom:347.835000px;}
.y1d4{bottom:349.635000px;}
.y132{bottom:355.935000px;}
.y7b{bottom:358.275000px;}
.yb0{bottom:360.435000px;}
.yfb{bottom:360.615000px;}
.y15f{bottom:363.675000px;}
.y199{bottom:365.115000px;}
.y1d3{bottom:366.735000px;}
.y131{bottom:374.835000px;}
.y7a{bottom:377.715000px;}
.yaf{bottom:379.335000px;}
.yfa{bottom:380.415000px;}
.y198{bottom:382.395000px;}
.y15e{bottom:382.575000px;}
.y1d2{bottom:384.015000px;}
.y130{bottom:393.915000px;}
.y79{bottom:398.415000px;}
.y197{bottom:399.675000px;}
.yf5{bottom:400.575000px;}
.y1d1{bottom:401.295000px;}
.y15d{bottom:401.655000px;}
.y12f{bottom:412.815000px;}
.y196{bottom:416.775000px;}
.y78{bottom:417.315000px;}
.y1d0{bottom:418.575000px;}
.yf4{bottom:420.375000px;}
.y15c{bottom:420.555000px;}
.y12e{bottom:431.895000px;}
.y195{bottom:434.055000px;}
.y1cf{bottom:435.855000px;}
.y77{bottom:436.215000px;}
.yae{bottom:436.395000px;}
.yf3{bottom:437.655000px;}
.y15b{bottom:439.455000px;}
.y12d{bottom:450.795000px;}
.y194{bottom:451.335000px;}
.y1ce{bottom:453.135000px;}
.y76{bottom:455.295000px;}
.yf2{bottom:456.735000px;}
.yad{bottom:456.915000px;}
.y15a{bottom:458.535000px;}
.y193{bottom:468.615000px;}
.y12c{bottom:469.695000px;}
.y1cd{bottom:470.235000px;}
.y75{bottom:474.195000px;}
.yf0{bottom:475.815000px;}
.yac{bottom:475.995000px;}
.y159{bottom:477.435000px;}
.y192{bottom:485.895000px;}
.y1cc{bottom:487.515000px;}
.y12b{bottom:488.775000px;}
.y74{bottom:493.275000px;}
.yab{bottom:494.895000px;}
.yed{bottom:495.795000px;}
.y158{bottom:496.515000px;}
.y191{bottom:502.995000px;}
.y1cb{bottom:504.795000px;}
.y12a{bottom:507.855000px;}
.y73{bottom:512.175000px;}
.yaa{bottom:513.975000px;}
.y157{bottom:515.415000px;}
.yef{bottom:515.595000px;}
.y190{bottom:520.275000px;}
.y1ca{bottom:522.075000px;}
.y72{bottom:531.075000px;}
.ya9{bottom:532.515000px;}
.y156{bottom:534.495000px;}
.yec{bottom:534.675000px;}
.y18f{bottom:537.555000px;}
.y1c9{bottom:539.355000px;}
.y129{bottom:548.535000px;}
.y71{bottom:550.155000px;}
.ya8{bottom:551.775000px;}
.y155{bottom:553.395000px;}
.yea{bottom:553.935000px;}
.y18e{bottom:554.835000px;}
.y1c8{bottom:556.635000px;}
.y127{bottom:564.585000px;}
.y70{bottom:569.085000px;}
.ya7{bottom:570.885000px;}
.y18d{bottom:572.145000px;}
.y154{bottom:572.325000px;}
.ye4{bottom:573.765000px;}
.y6f{bottom:588.165000px;}
.y18c{bottom:589.425000px;}
.ya6{bottom:589.785000px;}
.y1c7{bottom:591.045000px;}
.y153{bottom:591.405000px;}
.y124{bottom:600.945000px;}
.y18b{bottom:606.525000px;}
.y6e{bottom:607.065000px;}
.y1c6{bottom:608.325000px;}
.ya5{bottom:608.865000px;}
.y152{bottom:610.305000px;}
.ye7{bottom:612.825000px;}
.y1a{bottom:620.385000px;}
.y126{bottom:623.445000px;}
.y18a{bottom:623.805000px;}
.y1c5{bottom:625.605000px;}
.y6d{bottom:625.965000px;}
.ya4{bottom:627.765000px;}
.y151{bottom:629.385000px;}
.ye6{bottom:632.805000px;}
.y189{bottom:641.085000px;}
.y1c4{bottom:642.885000px;}
.y6c{bottom:645.045000px;}
.y125{bottom:645.945000px;}
.ya3{bottom:646.665000px;}
.y150{bottom:648.285000px;}
.ye3{bottom:652.605000px;}
.y188{bottom:658.365000px;}
.y1c3{bottom:659.985000px;}
.y6b{bottom:663.945000px;}
.ya2{bottom:665.745000px;}
.y14f{bottom:667.185000px;}
.y123{bottom:668.445000px;}
.ydf{bottom:671.685000px;}
.y187{bottom:675.645000px;}
.y1c2{bottom:677.265000px;}
.y6a{bottom:683.025000px;}
.ya1{bottom:684.285000px;}
.y14e{bottom:686.265000px;}
.y11e{bottom:690.945000px;}
.ye2{bottom:691.665000px;}
.y186{bottom:692.925000px;}
.y1c1{bottom:694.545000px;}
.y69{bottom:701.925000px;}
.ya0{bottom:703.725000px;}
.y14d{bottom:705.165000px;}
.y185{bottom:710.025000px;}
.ye1{bottom:711.465000px;}
.y1c0{bottom:711.825000px;}
.y121{bottom:713.445000px;}
.y68{bottom:720.825000px;}
.y9f{bottom:722.625000px;}
.y14c{bottom:724.245000px;}
.y184{bottom:727.305000px;}
.y1bf{bottom:729.105000px;}
.yde{bottom:731.445000px;}
.y120{bottom:735.945000px;}
.y67{bottom:739.905000px;}
.y9e{bottom:741.525000px;}
.y14b{bottom:743.145000px;}
.y183{bottom:744.585000px;}
.y1be{bottom:746.385000px;}
.ydc{bottom:750.705000px;}
.y11d{bottom:758.445000px;}
.y66{bottom:758.805000px;}
.y9d{bottom:760.605000px;}
.y14a{bottom:762.045000px;}
.y182{bottom:762.225000px;}
.y1bd{bottom:763.485000px;}
.ydd{bottom:769.785000px;}
.y65{bottom:777.885000px;}
.y9c{bottom:779.145000px;}
.y1bc{bottom:780.765000px;}
.y149{bottom:781.125000px;}
.y11c{bottom:782.385000px;}
.y181{bottom:782.925000px;}
.ydb{bottom:789.585000px;}
.y64{bottom:796.785000px;}
.y1bb{bottom:798.045000px;}
.y9b{bottom:798.585000px;}
.y11b{bottom:800.025000px;}
.y180{bottom:803.265000px;}
.yd6{bottom:807.585000px;}
.y1ba{bottom:815.325000px;}
.y63{bottom:815.865000px;}
.y9a{bottom:817.485000px;}
.y11a{bottom:818.925000px;}
.y148{bottom:819.105000px;}
.y17f{bottom:820.545000px;}
.yda{bottom:827.565000px;}
.y1b9{bottom:832.605000px;}
.y62{bottom:834.765000px;}
.y99{bottom:836.205000px;}
.y17e{bottom:837.285000px;}
.y119{bottom:838.005000px;}
.yd9{bottom:847.410000px;}
.y1b8{bottom:849.930000px;}
.y61{bottom:853.710000px;}
.y17d{bottom:854.970000px;}
.y98{bottom:855.510000px;}
.y118{bottom:856.950000px;}
.yd8{bottom:866.490000px;}
.y1b7{bottom:867.030000px;}
.y17c{bottom:872.250000px;}
.y60{bottom:872.790000px;}
.y97{bottom:874.410000px;}
.y117{bottom:875.850000px;}
.y147{bottom:876.030000px;}
.y1b6{bottom:884.310000px;}
.yd5{bottom:886.470000px;}
.y17b{bottom:889.530000px;}
.y5f{bottom:891.690000px;}
.y96{bottom:893.490000px;}
.y116{bottom:894.930000px;}
.y11{bottom:896.190000px;}
.y1b5{bottom:901.590000px;}
.yd1{bottom:906.270000px;}
.y17a{bottom:906.450000px;}
.y5e{bottom:910.770000px;}
.y95{bottom:912.390000px;}
.y115{bottom:913.830000px;}
.y146{bottom:914.010000px;}
.y1b4{bottom:918.870000px;}
.y179{bottom:924.090000px;}
.yd3{bottom:926.250000px;}
.y112{bottom:928.770000px;}
.y5d{bottom:929.670000px;}
.y94{bottom:931.470000px;}
.y145{bottom:932.910000px;}
.y1b3{bottom:936.150000px;}
.y1e3{bottom:939.570000px;}
.y178{bottom:941.190000px;}
.yce{bottom:947.850000px;}
.y5c{bottom:948.570000px;}
.y93{bottom:950.370000px;}
.y144{bottom:951.990000px;}
.y1b2{bottom:953.430000px;}
.y1e2{bottom:956.310000px;}
.y10f{bottom:957.210000px;}
.y177{bottom:958.110000px;}
.ycb{bottom:966.930000px;}
.y5b{bottom:967.650000px;}
.y92{bottom:969.270000px;}
.y1b1{bottom:970.530000px;}
.y143{bottom:970.890000px;}
.y176{bottom:975.750000px;}
.y10d{bottom:981.150000px;}
.y5a{bottom:986.550000px;}
.ycd{bottom:986.730000px;}
.y1b0{bottom:987.810000px;}
.y91{bottom:988.350000px;}
.y142{bottom:989.790000px;}
.y175{bottom:993.030000px;}
.y1af{bottom:1005.090000px;}
.y59{bottom:1005.630000px;}
.yc9{bottom:1006.710000px;}
.y90{bottom:1007.250000px;}
.y109{bottom:1007.430000px;}
.y141{bottom:1008.870000px;}
.y174{bottom:1009.950000px;}
.yb{bottom:1013.190000px;}
.y1ae{bottom:1022.370000px;}
.y58{bottom:1024.530000px;}
.y8f{bottom:1026.330000px;}
.yc6{bottom:1026.510000px;}
.y173{bottom:1027.590000px;}
.y140{bottom:1027.770000px;}
.y10b{bottom:1028.130000px;}
.y1ad{bottom:1039.650000px;}
.y57{bottom:1043.430000px;}
.y172{bottom:1045.050000px;}
.y8e{bottom:1045.230000px;}
.y13f{bottom:1046.850000px;}
.yc5{bottom:1049.010000px;}
.y1ac{bottom:1056.750000px;}
.y56{bottom:1062.510000px;}
.y8d{bottom:1063.770000px;}
.y171{bottom:1063.950000px;}
.y13e{bottom:1065.750000px;}
.yc3{bottom:1067.010000px;}
.y108{bottom:1067.190000px;}
.y1ab{bottom:1074.030000px;}
.y55{bottom:1081.410000px;}
.y170{bottom:1083.030000px;}
.y8c{bottom:1083.210000px;}
.y107{bottom:1084.650000px;}
.yc0{bottom:1085.010000px;}
.y1aa{bottom:1091.310000px;}
.y54{bottom:1100.490000px;}
.y16f{bottom:1101.930000px;}
.y8b{bottom:1102.110000px;}
.y106{bottom:1103.730000px;}
.ybc{bottom:1104.090000px;}
.y1a9{bottom:1108.590000px;}
.y53{bottom:1119.390000px;}
.y16e{bottom:1121.010000px;}
.y8a{bottom:1121.190000px;}
.y105{bottom:1122.630000px;}
.y1a8{bottom:1125.870000px;}
.ya{bottom:1134.720000px;}
.y52{bottom:1138.500000px;}
.y89{bottom:1139.760000px;}
.y16d{bottom:1140.120000px;}
.y104{bottom:1141.740000px;}
.ybb{bottom:1143.180000px;}
.y5{bottom:1144.440000px;}
.y3{bottom:1155.240000px;}
.y4d{bottom:1159.740000px;}
.yba{bottom:1173.060000px;}
.y4c{bottom:1179.000000px;}
.y1{bottom:1188.360000px;}
.y4b{bottom:1196.280000px;}
.h32{height:13.716000px;}
.h31{height:17.100000px;}
.h20{height:17.280000px;}
.h24{height:18.360000px;}
.h1f{height:19.080000px;}
.h2c{height:19.116000px;}
.h23{height:19.260000px;}
.h2f{height:19.440000px;}
.h35{height:19.980000px;}
.h26{height:20.700000px;}
.h7{height:21.240000px;}
.h21{height:21.780000px;}
.h1a{height:22.140000px;}
.h37{height:23.040000px;}
.h36{height:25.560000px;}
.h38{height:27.720000px;}
.hb{height:29.678906px;}
.h3b{height:31.140000px;}
.h2{height:32.040000px;}
.h4{height:32.400000px;}
.h5{height:34.020000px;}
.h34{height:34.560000px;}
.h1e{height:34.596000px;}
.h13{height:38.158594px;}
.h2b{height:38.340000px;}
.h11{height:40.985156px;}
.h12{height:45.004219px;}
.h6{height:47.344922px;}
.h39{height:48.616875px;}
.h17{height:49.868086px;}
.h18{height:51.239531px;}
.h3d{height:52.998047px;}
.h3{height:54.000000px;}
.h3c{height:54.421875px;}
.h33{height:55.260000px;}
.hf{height:55.275469px;}
.h1b{height:55.503491px;}
.h28{height:56.160000px;}
.h30{height:57.240000px;}
.h2d{height:58.140000px;}
.h8{height:58.621992px;}
.h9{height:58.651172px;}
.h22{height:58.860000px;}
.h25{height:59.940000px;}
.h15{height:60.226875px;}
.h3a{height:62.280000px;}
.h1d{height:64.978594px;}
.he{height:65.010937px;}
.ha{height:65.884219px;}
.h1c{height:66.757500px;}
.hd{height:72.562500px;}
.h29{height:78.120000px;}
.h2e{height:79.020000px;}
.h2a{height:97.200000px;}
.h27{height:97.956000px;}
.h10{height:117.000000px;}
.hc{height:117.396000px;}
.h19{height:169.950000px;}
.h14{height:275.790000px;}
.h16{height:329.970000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:28.800000px;}
.w8{width:30.420000px;}
.w10{width:39.060000px;}
.we{width:48.600000px;}
.w13{width:49.176000px;}
.w1f{width:52.200000px;}
.w16{width:57.600000px;}
.w11{width:58.680000px;}
.w12{width:58.860000px;}
.wf{width:68.796000px;}
.wd{width:68.940000px;}
.w1b{width:105.696000px;}
.wc{width:107.136000px;}
.wa{width:107.820000px;}
.wb{width:108.216000px;}
.w19{width:116.280000px;}
.w1a{width:116.316000px;}
.w1c{width:116.640000px;}
.w1e{width:198.570000px;}
.w18{width:221.790000px;}
.w15{width:246.450000px;}
.w9{width:255.450000px;}
.w14{width:372.855000px;}
.w20{width:427.035000px;}
.w17{width:647.565000px;}
.w7{width:652.425000px;}
.w4{width:659.085000px;}
.w1d{width:676.725000px;}
.w21{width:677.805000px;}
.w2{width:680.325000px;}
.w6{width:691.305000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:2.340000px;}
.x3{left:8.100000px;}
.x21{left:11.340000px;}
.x2{left:14.220000px;}
.x2f{left:16.200000px;}
.x23{left:17.640000px;}
.x12{left:18.720000px;}
.x24{left:20.010000px;}
.x2a{left:21.780000px;}
.x28{left:22.860000px;}
.x38{left:23.940000px;}
.xc{left:25.740000px;}
.x26{left:26.820000px;}
.x22{left:28.080000px;}
.x1d{left:29.370000px;}
.x1c{left:32.070000px;}
.xa{left:33.840000px;}
.x37{left:35.100000px;}
.x1f{left:36.360000px;}
.x19{left:37.980000px;}
.x2e{left:40.500000px;}
.x2b{left:42.480000px;}
.x1a{left:50.400000px;}
.x7{left:56.154000px;}
.x2d{left:60.840000px;}
.x5{left:95.796000px;}
.x17{left:105.156000px;}
.x1{left:106.416000px;}
.x31{left:107.675987px;}
.xe{left:116.454000px;}
.x10{left:127.794000px;}
.x8{left:135.894000px;}
.x16{left:159.329987px;}
.xf{left:162.174000px;}
.x3c{left:164.910000px;}
.x11{left:168.654000px;}
.x3e{left:196.410000px;}
.x40{left:197.670000px;}
.x3d{left:199.650000px;}
.x3f{left:202.170000px;}
.x3a{left:304.815000px;}
.xb{left:320.259000px;}
.x33{left:328.035000px;}
.x9{left:344.019000px;}
.xd{left:345.639000px;}
.x32{left:348.374987px;}
.x30{left:351.615000px;}
.x3b{left:357.015000px;}
.x18{left:360.615000px;}
.x25{left:409.215000px;}
.x34{left:444.315000px;}
.x4{left:446.474987px;}
.x1b{left:468.435000px;}
.x27{left:478.005000px;}
.x29{left:517.065000px;}
.x35{left:560.625000px;}
.x1e{left:576.645000px;}
.x2c{left:634.605000px;}
.x13{left:657.464987px;}
.x36{left:666.330000px;}
.x20{left:683.790000px;}
.x6{left:754.890000px;}
.x14{left:758.670000px;}
.x15{left:786.749987px;}
@media print{
.v4{vertical-align:-71.040000pt;}
.v5{vertical-align:-58.240000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls19{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.554667pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.094933pt;}
.ls1a{letter-spacing:-0.047360pt;}
.lse{letter-spacing:-0.046720pt;}
.lsd{letter-spacing:-0.000003pt;}
.lsc{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.083200pt;}
.ls2{letter-spacing:0.133120pt;}
.ls9{letter-spacing:0.154880pt;}
.ls3{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.233067pt;}
.ls16{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.277120pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.592640pt;}
.ls11{letter-spacing:0.800000pt;}
.lsa{letter-spacing:2.074880pt;}
.lsb{letter-spacing:2.693120pt;}
.ls6{letter-spacing:3.354880pt;}
.ls1b{letter-spacing:3.973120pt;}
.ls1d{letter-spacing:4.000000pt;}
.ls1c{letter-spacing:9.120000pt;}
.ls8{letter-spacing:12.320000pt;}
.ls7{letter-spacing:16.800000pt;}
.ls17{letter-spacing:175.498667pt;}
.ws0{word-spacing:-15.679997pt;}
.wsa{word-spacing:-14.991467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.185067pt;}
.wsd{word-spacing:-10.720000pt;}
.ws1{word-spacing:-9.878400pt;}
.ws2{word-spacing:-9.323733pt;}
.ws6{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._14{margin-left:-3.886080pt;}
._15{margin-left:-2.919893pt;}
._6{margin-left:-2.014933pt;}
._1{margin-left:-0.967680pt;}
._0{width:1.152000pt;}
._4{width:2.830507pt;}
._5{width:3.828480pt;}
._a{width:4.872747pt;}
._11{width:5.868373pt;}
._7{width:6.762880pt;}
._8{width:7.808640pt;}
._9{width:8.704213pt;}
._13{width:9.676373pt;}
._12{width:10.619947pt;}
._e{width:12.087467pt;}
._16{width:13.830827pt;}
._28{width:14.992640pt;}
._b{width:16.042240pt;}
._c{width:17.039787pt;}
._1a{width:18.061227pt;}
._1e{width:18.955947pt;}
._d{width:20.255360pt;}
._18{width:23.964160pt;}
._19{width:24.990720pt;}
._26{width:27.373440pt;}
._27{width:28.986880pt;}
._25{width:31.128320pt;}
._17{width:34.209280pt;}
._29{width:39.521280pt;}
._23{width:40.902400pt;}
._24{width:42.062720pt;}
._22{width:45.630080pt;}
._3{width:46.914560pt;}
._2{width:48.077227pt;}
._1b{width:68.663467pt;}
._10{width:90.744747pt;}
._f{width:92.003840pt;}
._20{width:116.970240pt;}
._21{width:117.929387pt;}
._1f{width:159.519360pt;}
._1d{width:174.720000pt;}
._1c{width:176.320000pt;}
._2a{width:753.591680pt;}
.fs5{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y4a{bottom:-106.240053pt;}
.y49{bottom:-90.880000pt;}
.y48{bottom:-75.520000pt;}
.y47{bottom:-60.160000pt;}
.y46{bottom:-44.960000pt;}
.y45{bottom:-29.600000pt;}
.y19{bottom:-14.560000pt;}
.y44{bottom:-14.240000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:0.800000pt;}
.y43{bottom:1.120000pt;}
.y103{bottom:2.560000pt;}
.y114{bottom:2.720000pt;}
.y122{bottom:2.880000pt;}
.ybe{bottom:3.040000pt;}
.y101{bottom:3.200000pt;}
.yc4{bottom:3.360000pt;}
.yc2{bottom:3.840000pt;}
.ycf{bottom:4.000000pt;}
.yeb{bottom:4.160000pt;}
.yd0{bottom:4.320000pt;}
.yc1{bottom:4.640000pt;}
.yf1{bottom:4.800000pt;}
.yca{bottom:4.960000pt;}
.y7{bottom:5.120000pt;}
.yc8{bottom:5.280000pt;}
.y10c{bottom:5.440000pt;}
.y4f{bottom:5.600000pt;}
.yd4{bottom:6.400000pt;}
.ye9{bottom:6.720000pt;}
.y8{bottom:6.880000pt;}
.yc7{bottom:7.040000pt;}
.y50{bottom:7.680000pt;}
.y110{bottom:8.160000pt;}
.y111{bottom:8.480000pt;}
.y10e{bottom:10.400000pt;}
.ybf{bottom:10.720000pt;}
.y4{bottom:11.680000pt;}
.yff{bottom:13.440000pt;}
.y2{bottom:13.600000pt;}
.y113{bottom:15.040000pt;}
.yf9{bottom:15.520000pt;}
.y29{bottom:16.480000pt;}
.y128{bottom:16.800000pt;}
.ybd{bottom:18.400000pt;}
.y10{bottom:19.040000pt;}
.y39{bottom:20.320000pt;}
.y17{bottom:20.800000pt;}
.yee{bottom:21.440000pt;}
.y51{bottom:21.472000pt;}
.ycc{bottom:21.760000pt;}
.ye8{bottom:22.080000pt;}
.yd2{bottom:22.240000pt;}
.y9{bottom:22.912000pt;}
.yfe{bottom:28.800000pt;}
.ye0{bottom:30.400000pt;}
.yf8{bottom:30.720000pt;}
.y42{bottom:31.834667pt;}
.y28{bottom:31.840000pt;}
.y4e{bottom:32.672000pt;}
.yf{bottom:35.840000pt;}
.y16{bottom:36.000000pt;}
.y6{bottom:36.672000pt;}
.y10a{bottom:36.800000pt;}
.ye5{bottom:38.880000pt;}
.yd7{bottom:39.240000pt;}
.y11f{bottom:43.360000pt;}
.yf7{bottom:46.080000pt;}
.y41{bottom:47.034667pt;}
.y27{bottom:47.200000pt;}
.y15{bottom:51.360000pt;}
.ye{bottom:52.800000pt;}
.y40{bottom:62.394667pt;}
.y26{bottom:62.560000pt;}
.y14{bottom:66.720000pt;}
.yd{bottom:71.200000pt;}
.y13{bottom:76.320000pt;}
.y3f{bottom:77.754667pt;}
.y25{bottom:77.760000pt;}
.y38{bottom:82.080000pt;}
.y12{bottom:88.480000pt;}
.yc{bottom:89.600000pt;}
.y3e{bottom:93.114667pt;}
.y24{bottom:94.080000pt;}
.y37{bottom:97.280000pt;}
.y88{bottom:99.552000pt;}
.y16c{bottom:104.032000pt;}
.y3a{bottom:107.072000pt;}
.y3d{bottom:108.474667pt;}
.y1a7{bottom:109.792000pt;}
.yb9{bottom:110.272000pt;}
.y23{bottom:110.560000pt;}
.y1e1{bottom:111.392000pt;}
.y36{bottom:112.640000pt;}
.y87{bottom:116.352000pt;}
.y16b{bottom:120.832000pt;}
.y3c{bottom:123.834667pt;}
.y1a6{bottom:125.152000pt;}
.y22{bottom:125.920000pt;}
.y1e0{bottom:126.752000pt;}
.y35{bottom:128.000000pt;}
.y13d{bottom:130.752000pt;}
.y86{bottom:133.312000pt;}
.y16a{bottom:137.626667pt;}
.yb8{bottom:138.906667pt;}
.y3b{bottom:139.034667pt;}
.y1a5{bottom:140.506667pt;}
.y21{bottom:141.120000pt;}
.y1df{bottom:142.106667pt;}
.y34{bottom:143.360000pt;}
.y13c{bottom:147.706667pt;}
.y85{bottom:150.106667pt;}
.y169{bottom:154.586667pt;}
.y1a4{bottom:155.866667pt;}
.y20{bottom:156.480000pt;}
.y1de{bottom:157.306667pt;}
.y33{bottom:158.720000pt;}
.y13b{bottom:164.506667pt;}
.y84{bottom:166.586667pt;}
.yb7{bottom:167.706667pt;}
.y1a3{bottom:171.226667pt;}
.y168{bottom:171.386667pt;}
.y1f{bottom:171.840000pt;}
.y1dd{bottom:172.666667pt;}
.y32{bottom:173.920000pt;}
.y13a{bottom:181.466667pt;}
.y83{bottom:183.866667pt;}
.y1a2{bottom:186.426667pt;}
.y1e{bottom:187.200000pt;}
.y1dc{bottom:188.026667pt;}
.y167{bottom:188.346667pt;}
.y31{bottom:189.280000pt;}
.yb6{bottom:196.346667pt;}
.y139{bottom:198.266667pt;}
.y82{bottom:200.666667pt;}
.y1a1{bottom:201.786667pt;}
.y1d{bottom:202.600000pt;}
.y1db{bottom:203.386667pt;}
.y30{bottom:204.640000pt;}
.y166{bottom:205.146667pt;}
.y138{bottom:215.066667pt;}
.y1a0{bottom:217.146667pt;}
.y81{bottom:217.626667pt;}
.y1c{bottom:217.960000pt;}
.y1da{bottom:218.746667pt;}
.y2f{bottom:220.000000pt;}
.y165{bottom:221.946667pt;}
.yb5{bottom:224.986667pt;}
.y137{bottom:232.026667pt;}
.y19f{bottom:232.506667pt;}
.y1b{bottom:232.840000pt;}
.y1d9{bottom:233.946667pt;}
.y80{bottom:234.426667pt;}
.y2e{bottom:235.360000pt;}
.y102{bottom:238.266667pt;}
.y164{bottom:238.906667pt;}
.y19e{bottom:247.866667pt;}
.y136{bottom:248.826667pt;}
.y1d8{bottom:249.306667pt;}
.y2d{bottom:250.746667pt;}
.yfd{bottom:251.266667pt;}
.y7f{bottom:251.426667pt;}
.yb4{bottom:253.666667pt;}
.y163{bottom:255.746667pt;}
.y2a{bottom:258.146667pt;}
.y19d{bottom:263.266667pt;}
.y1d7{bottom:264.706667pt;}
.y2c{bottom:265.626667pt;}
.y135{bottom:265.826667pt;}
.y100{bottom:267.266667pt;}
.y7e{bottom:268.226667pt;}
.yb3{bottom:269.826667pt;}
.y162{bottom:272.706667pt;}
.y19c{bottom:278.466667pt;}
.y1d6{bottom:280.066667pt;}
.y2b{bottom:280.986667pt;}
.y134{bottom:282.626667pt;}
.yfc{bottom:284.866667pt;}
.y7d{bottom:285.026667pt;}
.yb2{bottom:286.626667pt;}
.y161{bottom:289.506667pt;}
.y19b{bottom:293.826667pt;}
.y1d5{bottom:295.426667pt;}
.y133{bottom:299.426667pt;}
.y7c{bottom:301.986667pt;}
.yf6{bottom:302.786667pt;}
.yb1{bottom:303.426667pt;}
.y160{bottom:306.306667pt;}
.y19a{bottom:309.186667pt;}
.y1d4{bottom:310.786667pt;}
.y132{bottom:316.386667pt;}
.y7b{bottom:318.466667pt;}
.yb0{bottom:320.386667pt;}
.yfb{bottom:320.546667pt;}
.y15f{bottom:323.266667pt;}
.y199{bottom:324.546667pt;}
.y1d3{bottom:325.986667pt;}
.y131{bottom:333.186667pt;}
.y7a{bottom:335.746667pt;}
.yaf{bottom:337.186667pt;}
.yfa{bottom:338.146667pt;}
.y198{bottom:339.906667pt;}
.y15e{bottom:340.066667pt;}
.y1d2{bottom:341.346667pt;}
.y130{bottom:350.146667pt;}
.y79{bottom:354.146667pt;}
.y197{bottom:355.266667pt;}
.yf5{bottom:356.066667pt;}
.y1d1{bottom:356.706667pt;}
.y15d{bottom:357.026667pt;}
.y12f{bottom:366.946667pt;}
.y196{bottom:370.466667pt;}
.y78{bottom:370.946667pt;}
.y1d0{bottom:372.066667pt;}
.yf4{bottom:373.666667pt;}
.y15c{bottom:373.826667pt;}
.y12e{bottom:383.906667pt;}
.y195{bottom:385.826667pt;}
.y1cf{bottom:387.426667pt;}
.y77{bottom:387.746667pt;}
.yae{bottom:387.906667pt;}
.yf3{bottom:389.026667pt;}
.y15b{bottom:390.626667pt;}
.y12d{bottom:400.706667pt;}
.y194{bottom:401.186667pt;}
.y1ce{bottom:402.786667pt;}
.y76{bottom:404.706667pt;}
.yf2{bottom:405.986667pt;}
.yad{bottom:406.146667pt;}
.y15a{bottom:407.586667pt;}
.y193{bottom:416.546667pt;}
.y12c{bottom:417.506667pt;}
.y1cd{bottom:417.986667pt;}
.y75{bottom:421.506667pt;}
.yf0{bottom:422.946667pt;}
.yac{bottom:423.106667pt;}
.y159{bottom:424.386667pt;}
.y192{bottom:431.906667pt;}
.y1cc{bottom:433.346667pt;}
.y12b{bottom:434.466667pt;}
.y74{bottom:438.466667pt;}
.yab{bottom:439.906667pt;}
.yed{bottom:440.706667pt;}
.y158{bottom:441.346667pt;}
.y191{bottom:447.106667pt;}
.y1cb{bottom:448.706667pt;}
.y12a{bottom:451.426667pt;}
.y73{bottom:455.266667pt;}
.yaa{bottom:456.866667pt;}
.y157{bottom:458.146667pt;}
.yef{bottom:458.306667pt;}
.y190{bottom:462.466667pt;}
.y1ca{bottom:464.066667pt;}
.y72{bottom:472.066667pt;}
.ya9{bottom:473.346667pt;}
.y156{bottom:475.106667pt;}
.yec{bottom:475.266667pt;}
.y18f{bottom:477.826667pt;}
.y1c9{bottom:479.426667pt;}
.y129{bottom:487.586667pt;}
.y71{bottom:489.026667pt;}
.ya8{bottom:490.466667pt;}
.y155{bottom:491.906667pt;}
.yea{bottom:492.386667pt;}
.y18e{bottom:493.186667pt;}
.y1c8{bottom:494.786667pt;}
.y127{bottom:501.853333pt;}
.y70{bottom:505.853333pt;}
.ya7{bottom:507.453333pt;}
.y18d{bottom:508.573333pt;}
.y154{bottom:508.733333pt;}
.ye4{bottom:510.013333pt;}
.y6f{bottom:522.813333pt;}
.y18c{bottom:523.933333pt;}
.ya6{bottom:524.253333pt;}
.y1c7{bottom:525.373333pt;}
.y153{bottom:525.693333pt;}
.y124{bottom:534.173333pt;}
.y18b{bottom:539.133333pt;}
.y6e{bottom:539.613333pt;}
.y1c6{bottom:540.733333pt;}
.ya5{bottom:541.213333pt;}
.y152{bottom:542.493333pt;}
.ye7{bottom:544.733333pt;}
.y1a{bottom:551.453333pt;}
.y126{bottom:554.173333pt;}
.y18a{bottom:554.493333pt;}
.y1c5{bottom:556.093333pt;}
.y6d{bottom:556.413333pt;}
.ya4{bottom:558.013333pt;}
.y151{bottom:559.453333pt;}
.ye6{bottom:562.493333pt;}
.y189{bottom:569.853333pt;}
.y1c4{bottom:571.453333pt;}
.y6c{bottom:573.373333pt;}
.y125{bottom:574.173333pt;}
.ya3{bottom:574.813333pt;}
.y150{bottom:576.253333pt;}
.ye3{bottom:580.093333pt;}
.y188{bottom:585.213333pt;}
.y1c3{bottom:586.653333pt;}
.y6b{bottom:590.173333pt;}
.ya2{bottom:591.773333pt;}
.y14f{bottom:593.053333pt;}
.y123{bottom:594.173333pt;}
.ydf{bottom:597.053333pt;}
.y187{bottom:600.573333pt;}
.y1c2{bottom:602.013333pt;}
.y6a{bottom:607.133333pt;}
.ya1{bottom:608.253333pt;}
.y14e{bottom:610.013333pt;}
.y11e{bottom:614.173333pt;}
.ye2{bottom:614.813333pt;}
.y186{bottom:615.933333pt;}
.y1c1{bottom:617.373333pt;}
.y69{bottom:623.933333pt;}
.ya0{bottom:625.533333pt;}
.y14d{bottom:626.813333pt;}
.y185{bottom:631.133333pt;}
.ye1{bottom:632.413333pt;}
.y1c0{bottom:632.733333pt;}
.y121{bottom:634.173333pt;}
.y68{bottom:640.733333pt;}
.y9f{bottom:642.333333pt;}
.y14c{bottom:643.773333pt;}
.y184{bottom:646.493333pt;}
.y1bf{bottom:648.093333pt;}
.yde{bottom:650.173333pt;}
.y120{bottom:654.173333pt;}
.y67{bottom:657.693333pt;}
.y9e{bottom:659.133333pt;}
.y14b{bottom:660.573333pt;}
.y183{bottom:661.853333pt;}
.y1be{bottom:663.453333pt;}
.ydc{bottom:667.293333pt;}
.y11d{bottom:674.173333pt;}
.y66{bottom:674.493333pt;}
.y9d{bottom:676.093333pt;}
.y14a{bottom:677.373333pt;}
.y182{bottom:677.533333pt;}
.y1bd{bottom:678.653333pt;}
.ydd{bottom:684.253333pt;}
.y65{bottom:691.453333pt;}
.y9c{bottom:692.573333pt;}
.y1bc{bottom:694.013333pt;}
.y149{bottom:694.333333pt;}
.y11c{bottom:695.453333pt;}
.y181{bottom:695.933333pt;}
.ydb{bottom:701.853333pt;}
.y64{bottom:708.253333pt;}
.y1bb{bottom:709.373333pt;}
.y9b{bottom:709.853333pt;}
.y11b{bottom:711.133333pt;}
.y180{bottom:714.013333pt;}
.yd6{bottom:717.853333pt;}
.y1ba{bottom:724.733333pt;}
.y63{bottom:725.213333pt;}
.y9a{bottom:726.653333pt;}
.y11a{bottom:727.933333pt;}
.y148{bottom:728.093333pt;}
.y17f{bottom:729.373333pt;}
.yda{bottom:735.613333pt;}
.y1b9{bottom:740.093333pt;}
.y62{bottom:742.013333pt;}
.y99{bottom:743.293333pt;}
.y17e{bottom:744.253333pt;}
.y119{bottom:744.893333pt;}
.yd9{bottom:753.253333pt;}
.y1b8{bottom:755.493333pt;}
.y61{bottom:758.853333pt;}
.y17d{bottom:759.973333pt;}
.y98{bottom:760.453333pt;}
.y118{bottom:761.733333pt;}
.yd8{bottom:770.213333pt;}
.y1b7{bottom:770.693333pt;}
.y17c{bottom:775.333333pt;}
.y60{bottom:775.813333pt;}
.y97{bottom:777.253333pt;}
.y117{bottom:778.533333pt;}
.y147{bottom:778.693333pt;}
.y1b6{bottom:786.053333pt;}
.yd5{bottom:787.973333pt;}
.y17b{bottom:790.693333pt;}
.y5f{bottom:792.613333pt;}
.y96{bottom:794.213333pt;}
.y116{bottom:795.493333pt;}
.y11{bottom:796.613333pt;}
.y1b5{bottom:801.413333pt;}
.yd1{bottom:805.573333pt;}
.y17a{bottom:805.733333pt;}
.y5e{bottom:809.573333pt;}
.y95{bottom:811.013333pt;}
.y115{bottom:812.293333pt;}
.y146{bottom:812.453333pt;}
.y1b4{bottom:816.773333pt;}
.y179{bottom:821.413333pt;}
.yd3{bottom:823.333333pt;}
.y112{bottom:825.573333pt;}
.y5d{bottom:826.373333pt;}
.y94{bottom:827.973333pt;}
.y145{bottom:829.253333pt;}
.y1b3{bottom:832.133333pt;}
.y1e3{bottom:835.173333pt;}
.y178{bottom:836.613333pt;}
.yce{bottom:842.533333pt;}
.y5c{bottom:843.173333pt;}
.y93{bottom:844.773333pt;}
.y144{bottom:846.213333pt;}
.y1b2{bottom:847.493333pt;}
.y1e2{bottom:850.053333pt;}
.y10f{bottom:850.853333pt;}
.y177{bottom:851.653333pt;}
.ycb{bottom:859.493333pt;}
.y5b{bottom:860.133333pt;}
.y92{bottom:861.573333pt;}
.y1b1{bottom:862.693333pt;}
.y143{bottom:863.013333pt;}
.y176{bottom:867.333333pt;}
.y10d{bottom:872.133333pt;}
.y5a{bottom:876.933333pt;}
.ycd{bottom:877.093333pt;}
.y1b0{bottom:878.053333pt;}
.y91{bottom:878.533333pt;}
.y142{bottom:879.813333pt;}
.y175{bottom:882.693333pt;}
.y1af{bottom:893.413333pt;}
.y59{bottom:893.893333pt;}
.yc9{bottom:894.853333pt;}
.y90{bottom:895.333333pt;}
.y109{bottom:895.493333pt;}
.y141{bottom:896.773333pt;}
.y174{bottom:897.733333pt;}
.yb{bottom:900.613333pt;}
.y1ae{bottom:908.773333pt;}
.y58{bottom:910.693333pt;}
.y8f{bottom:912.293333pt;}
.yc6{bottom:912.453333pt;}
.y173{bottom:913.413333pt;}
.y140{bottom:913.573333pt;}
.y10b{bottom:913.893333pt;}
.y1ad{bottom:924.133333pt;}
.y57{bottom:927.493333pt;}
.y172{bottom:928.933333pt;}
.y8e{bottom:929.093333pt;}
.y13f{bottom:930.533333pt;}
.yc5{bottom:932.453333pt;}
.y1ac{bottom:939.333333pt;}
.y56{bottom:944.453333pt;}
.y8d{bottom:945.573333pt;}
.y171{bottom:945.733333pt;}
.y13e{bottom:947.333333pt;}
.yc3{bottom:948.453333pt;}
.y108{bottom:948.613333pt;}
.y1ab{bottom:954.693333pt;}
.y55{bottom:961.253333pt;}
.y170{bottom:962.693333pt;}
.y8c{bottom:962.853333pt;}
.y107{bottom:964.133333pt;}
.yc0{bottom:964.453333pt;}
.y1aa{bottom:970.053333pt;}
.y54{bottom:978.213333pt;}
.y16f{bottom:979.493333pt;}
.y8b{bottom:979.653333pt;}
.y106{bottom:981.093333pt;}
.ybc{bottom:981.413333pt;}
.y1a9{bottom:985.413333pt;}
.y53{bottom:995.013333pt;}
.y16e{bottom:996.453333pt;}
.y8a{bottom:996.613333pt;}
.y105{bottom:997.893333pt;}
.y1a8{bottom:1000.773333pt;}
.ya{bottom:1008.640000pt;}
.y52{bottom:1012.000000pt;}
.y89{bottom:1013.120000pt;}
.y16d{bottom:1013.440000pt;}
.y104{bottom:1014.880000pt;}
.ybb{bottom:1016.160000pt;}
.y5{bottom:1017.280000pt;}
.y3{bottom:1026.880000pt;}
.y4d{bottom:1030.880000pt;}
.yba{bottom:1042.720000pt;}
.y4c{bottom:1048.000000pt;}
.y1{bottom:1056.320000pt;}
.y4b{bottom:1063.360000pt;}
.h32{height:12.192000pt;}
.h31{height:15.200000pt;}
.h20{height:15.360000pt;}
.h24{height:16.320000pt;}
.h1f{height:16.960000pt;}
.h2c{height:16.992000pt;}
.h23{height:17.120000pt;}
.h2f{height:17.280000pt;}
.h35{height:17.760000pt;}
.h26{height:18.400000pt;}
.h7{height:18.880000pt;}
.h21{height:19.360000pt;}
.h1a{height:19.680000pt;}
.h37{height:20.480000pt;}
.h36{height:22.720000pt;}
.h38{height:24.640000pt;}
.hb{height:26.381250pt;}
.h3b{height:27.680000pt;}
.h2{height:28.480000pt;}
.h4{height:28.800000pt;}
.h5{height:30.240000pt;}
.h34{height:30.720000pt;}
.h1e{height:30.752000pt;}
.h13{height:33.918750pt;}
.h2b{height:34.080000pt;}
.h11{height:36.431250pt;}
.h12{height:40.003750pt;}
.h6{height:42.084375pt;}
.h39{height:43.215000pt;}
.h17{height:44.327188pt;}
.h18{height:45.546250pt;}
.h3d{height:47.109375pt;}
.h3{height:48.000000pt;}
.h3c{height:48.375000pt;}
.h33{height:49.120000pt;}
.hf{height:49.133750pt;}
.h1b{height:49.336436pt;}
.h28{height:49.920000pt;}
.h30{height:50.880000pt;}
.h2d{height:51.680000pt;}
.h8{height:52.108438pt;}
.h9{height:52.134375pt;}
.h22{height:52.320000pt;}
.h25{height:53.280000pt;}
.h15{height:53.535000pt;}
.h3a{height:55.360000pt;}
.h1d{height:57.758750pt;}
.he{height:57.787500pt;}
.ha{height:58.563750pt;}
.h1c{height:59.340000pt;}
.hd{height:64.500000pt;}
.h29{height:69.440000pt;}
.h2e{height:70.240000pt;}
.h2a{height:86.400000pt;}
.h27{height:87.072000pt;}
.h10{height:104.000000pt;}
.hc{height:104.352000pt;}
.h19{height:151.066667pt;}
.h14{height:245.146667pt;}
.h16{height:293.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:25.600000pt;}
.w8{width:27.040000pt;}
.w10{width:34.720000pt;}
.we{width:43.200000pt;}
.w13{width:43.712000pt;}
.w1f{width:46.400000pt;}
.w16{width:51.200000pt;}
.w11{width:52.160000pt;}
.w12{width:52.320000pt;}
.wf{width:61.152000pt;}
.wd{width:61.280000pt;}
.w1b{width:93.952000pt;}
.wc{width:95.232000pt;}
.wa{width:95.840000pt;}
.wb{width:96.192000pt;}
.w19{width:103.360000pt;}
.w1a{width:103.392000pt;}
.w1c{width:103.680000pt;}
.w1e{width:176.506667pt;}
.w18{width:197.146667pt;}
.w15{width:219.066667pt;}
.w9{width:227.066667pt;}
.w14{width:331.426667pt;}
.w20{width:379.586667pt;}
.w17{width:575.613333pt;}
.w7{width:579.933333pt;}
.w4{width:585.853333pt;}
.w1d{width:601.533333pt;}
.w21{width:602.493333pt;}
.w2{width:604.733333pt;}
.w6{width:614.493333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:2.080000pt;}
.x3{left:7.200000pt;}
.x21{left:10.080000pt;}
.x2{left:12.640000pt;}
.x2f{left:14.400000pt;}
.x23{left:15.680000pt;}
.x12{left:16.640000pt;}
.x24{left:17.786667pt;}
.x2a{left:19.360000pt;}
.x28{left:20.320000pt;}
.x38{left:21.280000pt;}
.xc{left:22.880000pt;}
.x26{left:23.840000pt;}
.x22{left:24.960000pt;}
.x1d{left:26.106667pt;}
.x1c{left:28.506667pt;}
.xa{left:30.080000pt;}
.x37{left:31.200000pt;}
.x1f{left:32.320000pt;}
.x19{left:33.760000pt;}
.x2e{left:36.000000pt;}
.x2b{left:37.760000pt;}
.x1a{left:44.800000pt;}
.x7{left:49.914667pt;}
.x2d{left:54.080000pt;}
.x5{left:85.152000pt;}
.x17{left:93.472000pt;}
.x1{left:94.592000pt;}
.x31{left:95.711988pt;}
.xe{left:103.514667pt;}
.x10{left:113.594667pt;}
.x8{left:120.794667pt;}
.x16{left:141.626655pt;}
.xf{left:144.154667pt;}
.x3c{left:146.586667pt;}
.x11{left:149.914667pt;}
.x3e{left:174.586667pt;}
.x40{left:175.706667pt;}
.x3d{left:177.466667pt;}
.x3f{left:179.706667pt;}
.x3a{left:270.946667pt;}
.xb{left:284.674667pt;}
.x33{left:291.586667pt;}
.x9{left:305.794667pt;}
.xd{left:307.234667pt;}
.x32{left:309.666655pt;}
.x30{left:312.546667pt;}
.x3b{left:317.346667pt;}
.x18{left:320.546667pt;}
.x25{left:363.746667pt;}
.x34{left:394.946667pt;}
.x4{left:396.866655pt;}
.x1b{left:416.386667pt;}
.x27{left:424.893333pt;}
.x29{left:459.613333pt;}
.x35{left:498.333333pt;}
.x1e{left:512.573333pt;}
.x2c{left:564.093333pt;}
.x13{left:584.413322pt;}
.x36{left:592.293333pt;}
.x20{left:607.813333pt;}
.x6{left:671.013333pt;}
.x14{left:674.373333pt;}
.x15{left:699.333322pt;}
}




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