
    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_de95c10806d782c7db5bd4fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.071777;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_596144bd436c14e662500be0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.773926;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_11df1fedb45f680e8504c65e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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_3f4cf0c0bf1caac9869a3b2b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136230;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_f65049c883a1ae60ef24759a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_97d3f47f32333754364bfac5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f4b84181471064b48bc78825.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_04f6f216bdfd3a4b9d40cec6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4c65cfd6d3d39968f9758dfb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.753906;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_bb6b47f360379b3e287ae156.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b457009890503196c0fd749d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.758789;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);}
.v6{vertical-align:-56.160000px;}
.v1{vertical-align:-52.680000px;}
.v5{vertical-align:-31.260000px;}
.v4{vertical-align:-18.720000px;}
.v3{vertical-align:-12.420000px;}
.v2{vertical-align:-6.240000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.624000px;}
.ls16{letter-spacing:-0.496200px;}
.ls12{letter-spacing:-0.423600px;}
.ls4{letter-spacing:-0.351600px;}
.ls17{letter-spacing:-0.190200px;}
.ls3{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.195600px;}
.ls5{letter-spacing:0.345600px;}
.lsd{letter-spacing:0.506880px;}
.ls18{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.535680px;}
.lsf{letter-spacing:0.624000px;}
.ls19{letter-spacing:0.626880px;}
.ls6{letter-spacing:0.708000px;}
.ls1a{letter-spacing:0.771840px;}
.ls7{letter-spacing:1.584000px;}
.ls11{letter-spacing:10.702080px;}
.ls1b{letter-spacing:20.782080px;}
.ls1c{letter-spacing:25.114080px;}
.ls1{letter-spacing:27.516000px;}
.ls8{letter-spacing:33.264000px;}
.lsc{letter-spacing:48.154080px;}
.ls2{letter-spacing:51.996000px;}
.lse{letter-spacing:58.222080px;}
.ls10{letter-spacing:72.622080px;}
.lsa{letter-spacing:102.384000px;}
.lsb{letter-spacing:114.480000px;}
.ls15{letter-spacing:159.836640px;}
.ls14{letter-spacing:160.016640px;}
.ls9{letter-spacing:191.676000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-20.355600px;}
.ws6{word-spacing:-20.160000px;}
.wsa{word-spacing:-19.536000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.473600px;}
.ws1{word-spacing:-16.122000px;}
.ws9{word-spacing:-14.970240px;}
.wsd{word-spacing:-13.701024px;}
.wse{word-spacing:-13.668480px;}
.ws2{word-spacing:-13.074720px;}
.ws8{word-spacing:-12.366720px;}
.ws4{word-spacing:0.000000px;}
.wsc{word-spacing:71.251344px;}
.wsb{word-spacing:116.775600px;}
.wsf{word-spacing:146.168160px;}
.ws7{word-spacing:707.609280px;}
._2d{margin-left:-15.205920px;}
._2{margin-left:-2.728320px;}
._1{margin-left:-1.584000px;}
._0{width:1.152000px;}
._5{width:2.388000px;}
._b{width:4.220640px;}
._a{width:5.472000px;}
._c{width:7.200000px;}
._d{width:8.208000px;}
._1b{width:9.302400px;}
._15{width:10.368000px;}
._14{width:11.520000px;}
._16{width:12.528000px;}
._12{width:14.160960px;}
._11{width:15.264000px;}
._17{width:16.439040px;}
._1d{width:17.879040px;}
._10{width:19.944000px;}
._e{width:21.384000px;}
._f{width:22.392000px;}
._1f{width:23.688000px;}
._6{width:24.984000px;}
._7{width:26.496000px;}
._13{width:28.368000px;}
._20{width:29.594880px;}
._26{width:31.691520px;}
._2c{width:33.304320px;}
._18{width:39.594240px;}
._19{width:40.861440px;}
._2a{width:42.232320px;}
._24{width:51.528960px;}
._25{width:52.692480px;}
._29{width:54.190080px;}
._23{width:66.286080px;}
._22{width:67.432320px;}
._21{width:68.469120px;}
._1c{width:102.384000px;}
._27{width:144.540480px;}
._1a{width:191.676000px;}
._8{width:199.313280px;}
._28{width:368.796000px;}
._9{width:395.333280px;}
._3{width:588.569760px;}
._1e{width:844.296000px;}
._4{width:1101.485760px;}
._2b{width:2259.135360px;}
.fc7{color:rgb(0,112,192);}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc9{color:rgb(127,127,127);}
.fc8{color:rgb(255,255,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(255,0,0);}
.fs8{font-size:5.760000px;}
.fs9{font-size:18.720000px;}
.fs7{font-size:30.240000px;}
.fs6{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fsb{font-size:60.624000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:80.640000px;}
.fsa{font-size:83.520000px;}
.ya{bottom:-4.680000px;}
.y2f{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.y10c{bottom:0.795000px;}
.yc{bottom:2.880000px;}
.y10a{bottom:3.450000px;}
.y110{bottom:4.320000px;}
.y115{bottom:4.350000px;}
.y16d{bottom:5.760000px;}
.y176{bottom:6.480000px;}
.y133{bottom:7.920000px;}
.y130{bottom:8.280000px;}
.y144{bottom:13.140000px;}
.y125{bottom:27.405000px;}
.y164{bottom:27.720000px;}
.y10e{bottom:28.485000px;}
.y16c{bottom:29.160000px;}
.y33{bottom:30.600000px;}
.y13d{bottom:32.655000px;}
.yb{bottom:37.080000px;}
.y161{bottom:51.480000px;}
.y123{bottom:51.525000px;}
.y16b{bottom:52.560000px;}
.y136{bottom:53.970000px;}
.y162{bottom:54.045000px;}
.y14a{bottom:57.060000px;}
.y32{bottom:57.240000px;}
.y13b{bottom:58.140000px;}
.y9{bottom:63.360000px;}
.y13e{bottom:63.900000px;}
.y137{bottom:64.905000px;}
.y13a{bottom:78.990000px;}
.y31{bottom:83.556000px;}
.y149{bottom:84.030000px;}
.y106{bottom:84.495000px;}
.y138{bottom:94.575000px;}
.y13f{bottom:95.115000px;}
.y101{bottom:98.790000px;}
.y107{bottom:101.520000px;}
.y148{bottom:102.315000px;}
.y139{bottom:105.015000px;}
.y105{bottom:109.800000px;}
.y76{bottom:111.636000px;}
.yfe{bottom:113.076000px;}
.y1a8{bottom:113.796000px;}
.y102{bottom:115.455000px;}
.y134{bottom:120.996000px;}
.yca{bottom:121.716000px;}
.y18e{bottom:126.036000px;}
.y140{bottom:126.360000px;}
.y132{bottom:127.116000px;}
.y147{bottom:129.270000px;}
.y2c{bottom:130.356000px;}
.y55{bottom:131.436000px;}
.y160{bottom:132.876000px;}
.y104{bottom:135.150000px;}
.y12e{bottom:137.556000px;}
.y75{bottom:142.596000px;}
.y146{bottom:147.600000px;}
.yfd{bottom:147.996000px;}
.y1a7{bottom:148.716000px;}
.y91{bottom:149.076000px;}
.y18d{bottom:149.796000px;}
.y131{bottom:150.150000px;}
.y2b{bottom:151.950000px;}
.y12f{bottom:152.670000px;}
.y108{bottom:153.075000px;}
.yc9{bottom:156.630000px;}
.y141{bottom:157.575000px;}
.y54{bottom:162.390000px;}
.y15f{bottom:167.790000px;}
.y12d{bottom:172.470000px;}
.y74{bottom:173.550000px;}
.y103{bottom:173.625000px;}
.y2a{bottom:173.910000px;}
.y100{bottom:175.140000px;}
.ye3{bottom:177.510000px;}
.yfc{bottom:182.910000px;}
.y1a6{bottom:183.630000px;}
.y90{bottom:183.990000px;}
.y142{bottom:188.820000px;}
.yc8{bottom:191.550000px;}
.y145{bottom:192.855000px;}
.y53{bottom:193.350000px;}
.y10b{bottom:195.120000px;}
.y29{bottom:195.510000px;}
.y18c{bottom:197.715000px;}
.y15e{bottom:202.755000px;}
.y13c{bottom:203.910000px;}
.y73{bottom:204.555000px;}
.y12c{bottom:207.435000px;}
.ye2{bottom:212.475000px;}
.y109{bottom:213.480000px;}
.y28{bottom:217.515000px;}
.yfb{bottom:217.875000px;}
.y1a5{bottom:218.595000px;}
.y8f{bottom:218.955000px;}
.y143{bottom:220.065000px;}
.y18b{bottom:221.475000px;}
.y52{bottom:224.355000px;}
.yc7{bottom:226.515000px;}
.y72{bottom:235.875000px;}
.y15d{bottom:237.675000px;}
.y12b{bottom:242.355000px;}
.y18a{bottom:245.235000px;}
.y27{bottom:247.035000px;}
.ye1{bottom:247.395000px;}
.yfa{bottom:251.355000px;}
.y1a4{bottom:253.515000px;}
.y8e{bottom:253.875000px;}
.y51{bottom:255.675000px;}
.yc6{bottom:261.435000px;}
.y71{bottom:266.835000px;}
.y189{bottom:268.995000px;}
.yad{bottom:272.955000px;}
.yf9{bottom:273.675000px;}
.y12a{bottom:277.275000px;}
.y26{bottom:278.355000px;}
.ye0{bottom:282.315000px;}
.y50{bottom:286.635000px;}
.y1a3{bottom:288.435000px;}
.y8d{bottom:288.795000px;}
.yc5{bottom:291.315000px;}
.y188{bottom:292.755000px;}
.yf8{bottom:293.835000px;}
.y70{bottom:297.795000px;}
.y25{bottom:302.115000px;}
.y15c{bottom:307.875000px;}
.yac{bottom:310.035000px;}
.y135{bottom:312.120000px;}
.y129{bottom:312.195000px;}
.y187{bottom:316.515000px;}
.ydf{bottom:317.235000px;}
.y4f{bottom:317.595000px;}
.yc4{bottom:319.755000px;}
.y1cf{bottom:320.115000px;}
.y1a2{bottom:323.385000px;}
.y8c{bottom:323.745000px;}
.y6f{bottom:328.785000px;}
.y24{bottom:333.105000px;}
.yab{bottom:336.345000px;}
.y186{bottom:340.305000px;}
.y15b{bottom:342.825000px;}
.y1ce{bottom:344.985000px;}
.y128{bottom:347.145000px;}
.y4e{bottom:348.585000px;}
.yde{bottom:352.185000px;}
.yc3{bottom:354.705000px;}
.y1a1{bottom:358.305000px;}
.y8b{bottom:358.665000px;}
.y6e{bottom:360.105000px;}
.yaa{bottom:361.185000px;}
.yf7{bottom:363.705000px;}
.y23{bottom:364.065000px;}
.y127{bottom:366.945000px;}
.y1cd{bottom:370.185000px;}
.y15a{bottom:377.745000px;}
.y4d{bottom:379.905000px;}
.ydd{bottom:387.105000px;}
.ya9{bottom:387.465000px;}
.y22{bottom:387.825000px;}
.y185{bottom:388.185000px;}
.yc2{bottom:389.625000px;}
.y6d{bottom:391.065000px;}
.y1a0{bottom:393.225000px;}
.y8a{bottom:393.585000px;}
.y1cc{bottom:395.385000px;}
.yf6{bottom:398.625000px;}
.y4c{bottom:410.865000px;}
.y184{bottom:411.945000px;}
.y159{bottom:412.665000px;}
.y126{bottom:415.185000px;}
.y21{bottom:419.145000px;}
.y1cb{bottom:420.585000px;}
.y6c{bottom:422.025000px;}
.ya8{bottom:423.465000px;}
.yc1{bottom:424.545000px;}
.y19f{bottom:428.145000px;}
.y89{bottom:428.505000px;}
.yf5{bottom:433.545000px;}
.y1b5{bottom:436.065000px;}
.y183{bottom:436.425000px;}
.ydc{bottom:437.865000px;}
.y122{bottom:439.305000px;}
.y4b{bottom:441.825000px;}
.y1ca{bottom:445.785000px;}
.y158{bottom:447.585000px;}
.ya7{bottom:448.665000px;}
.y20{bottom:450.150000px;}
.y6b{bottom:453.030000px;}
.yc0{bottom:459.510000px;}
.y182{bottom:463.110000px;}
.y88{bottom:463.470000px;}
.yf4{bottom:468.510000px;}
.y1c9{bottom:471.030000px;}
.y4a{bottom:472.830000px;}
.y1b4{bottom:473.550000px;}
.y1f{bottom:473.910000px;}
.y157{bottom:482.550000px;}
.y6a{bottom:484.350000px;}
.y124{bottom:486.510000px;}
.y181{bottom:490.110000px;}
.ybf{bottom:494.430000px;}
.y1c8{bottom:495.870000px;}
.y19e{bottom:498.030000px;}
.y87{bottom:498.390000px;}
.ya6{bottom:499.110000px;}
.yf3{bottom:503.430000px;}
.y49{bottom:503.790000px;}
.y1e{bottom:504.870000px;}
.ydb{bottom:507.750000px;}
.y69{bottom:515.310000px;}
.y180{bottom:516.750000px;}
.y156{bottom:517.470000px;}
.y1c7{bottom:521.070000px;}
.y1b3{bottom:523.590000px;}
.ya5{bottom:525.390000px;}
.y121{bottom:526.470000px;}
.ybe{bottom:529.350000px;}
.y19d{bottom:532.950000px;}
.y86{bottom:533.310000px;}
.y48{bottom:535.110000px;}
.y1d{bottom:535.830000px;}
.yda{bottom:542.670000px;}
.y17f{bottom:543.750000px;}
.y68{bottom:546.270000px;}
.y1b2{bottom:548.790000px;}
.ya4{bottom:550.590000px;}
.y155{bottom:552.390000px;}
.yf2{bottom:554.190000px;}
.y19c{bottom:558.150000px;}
.y120{bottom:559.590000px;}
.y1c{bottom:559.950000px;}
.y85{bottom:564.270000px;}
.y47{bottom:566.070000px;}
.yd9{bottom:571.470000px;}
.y1b1{bottom:573.990000px;}
.ya3{bottom:575.820000px;}
.y67{bottom:577.260000px;}
.y17e{bottom:578.700000px;}
.y19b{bottom:584.460000px;}
.yf1{bottom:589.140000px;}
.y11f{bottom:590.580000px;}
.y1b{bottom:590.940000px;}
.y84{bottom:594.180000px;}
.y1c6{bottom:596.700000px;}
.y46{bottom:597.060000px;}
.yd8{bottom:598.500000px;}
.y154{bottom:598.860000px;}
.ybd{bottom:599.220000px;}
.ya2{bottom:602.460000px;}
.y66{bottom:608.220000px;}
.y19a{bottom:610.740000px;}
.y17d{bottom:613.620000px;}
.y1c5{bottom:621.540000px;}
.y1a{bottom:621.900000px;}
.yff{bottom:622.080000px;}
.yf0{bottom:624.060000px;}
.ya1{bottom:627.660000px;}
.y45{bottom:628.020000px;}
.y83{bottom:629.100000px;}
.yd7{bottom:633.420000px;}
.y153{bottom:633.780000px;}
.ybc{bottom:634.140000px;}
.y199{bottom:636.660000px;}
.y65{bottom:639.540000px;}
.y19{bottom:645.660000px;}
.y1c4{bottom:646.740000px;}
.y17c{bottom:648.540000px;}
.y1b0{bottom:649.260000px;}
.y11e{bottom:651.780000px;}
.ya0{bottom:652.500000px;}
.y169{bottom:653.580000px;}
.yef{bottom:658.980000px;}
.y44{bottom:659.340000px;}
.y198{bottom:662.940000px;}
.y82{bottom:664.020000px;}
.yd6{bottom:668.340000px;}
.ybb{bottom:669.060000px;}
.y64{bottom:670.500000px;}
.y1c3{bottom:671.940000px;}
.y1af{bottom:674.460000px;}
.y18{bottom:676.620000px;}
.y168{bottom:677.700000px;}
.y11d{bottom:680.220000px;}
.y17b{bottom:683.460000px;}
.y9f{bottom:688.860000px;}
.y43{bottom:690.300000px;}
.yee{bottom:693.900000px;}
.y1c2{bottom:697.140000px;}
.y81{bottom:698.940000px;}
.y1ae{bottom:699.660000px;}
.y63{bottom:701.490000px;}
.y167{bottom:701.850000px;}
.yd5{bottom:703.290000px;}
.yba{bottom:704.010000px;}
.y17{bottom:707.970000px;}
.y11c{bottom:708.690000px;}
.y17a{bottom:718.410000px;}
.y42{bottom:721.290000px;}
.y1c1{bottom:722.370000px;}
.y9e{bottom:723.810000px;}
.y1ad{bottom:724.890000px;}
.y166{bottom:725.610000px;}
.yed{bottom:728.850000px;}
.y16{bottom:731.730000px;}
.y62{bottom:732.450000px;}
.y80{bottom:733.890000px;}
.y11b{bottom:737.130000px;}
.yd4{bottom:738.210000px;}
.yb9{bottom:738.930000px;}
.y1c0{bottom:747.210000px;}
.y165{bottom:749.730000px;}
.y41{bottom:752.250000px;}
.y179{bottom:753.330000px;}
.y9d{bottom:758.730000px;}
.y15{bottom:762.690000px;}
.y61{bottom:763.770000px;}
.yec{bottom:764.130000px;}
.y11a{bottom:765.570000px;}
.y7f{bottom:768.810000px;}
.y1bf{bottom:772.410000px;}
.yd3{bottom:773.130000px;}
.yb8{bottom:773.850000px;}
.y40{bottom:783.570000px;}
.y1ac{bottom:784.650000px;}
.y178{bottom:788.250000px;}
.y14{bottom:793.650000px;}
.y9c{bottom:794.010000px;}
.y60{bottom:794.730000px;}
.y1be{bottom:797.610000px;}
.yeb{bottom:799.050000px;}
.y7e{bottom:803.730000px;}
.yd2{bottom:808.050000px;}
.yb7{bottom:808.770000px;}
.y3f{bottom:814.530000px;}
.y13{bottom:817.410000px;}
.y1ab{bottom:819.570000px;}
.y163{bottom:821.010000px;}
.y1bd{bottom:822.810000px;}
.y177{bottom:823.170000px;}
.y119{bottom:825.330000px;}
.y5f{bottom:825.690000px;}
.y152{bottom:826.050000px;}
.y9b{bottom:828.975000px;}
.y7d{bottom:832.575000px;}
.yea{bottom:834.015000px;}
.y197{bottom:838.695000px;}
.yd1{bottom:843.015000px;}
.yb6{bottom:843.735000px;}
.y3e{bottom:845.535000px;}
.y1bc{bottom:848.055000px;}
.y12{bottom:848.775000px;}
.ye9{bottom:854.175000px;}
.y1aa{bottom:854.535000px;}
.y5e{bottom:856.695000px;}
.y7c{bottom:859.575000px;}
.y118{bottom:860.295000px;}
.y151{bottom:861.015000px;}
.ye8{bottom:861.735000px;}
.y9a{bottom:863.895000px;}
.y175{bottom:867.135000px;}
.y1bb{bottom:872.895000px;}
.y196{bottom:873.615000px;}
.yd0{bottom:873.975000px;}
.y3d{bottom:876.495000px;}
.y11{bottom:877.215000px;}
.yb5{bottom:878.655000px;}
.y5d{bottom:888.015000px;}
.y1a9{bottom:889.455000px;}
.y174{bottom:890.895000px;}
.y7b{bottom:894.495000px;}
.y117{bottom:895.215000px;}
.y150{bottom:895.935000px;}
.y1ba{bottom:898.095000px;}
.y99{bottom:898.815000px;}
.y10{bottom:903.135000px;}
.ycf{bottom:903.855000px;}
.y3c{bottom:907.815000px;}
.y195{bottom:908.535000px;}
.yb4{bottom:913.575000px;}
.y173{bottom:915.015000px;}
.y5c{bottom:918.975000px;}
.y1b9{bottom:923.295000px;}
.ye7{bottom:924.375000px;}
.yf{bottom:929.055000px;}
.y7a{bottom:929.415000px;}
.y116{bottom:930.135000px;}
.y14f{bottom:930.855000px;}
.y98{bottom:933.735000px;}
.y3b{bottom:938.775000px;}
.y172{bottom:939.135000px;}
.y194{bottom:943.455000px;}
.yb3{bottom:948.495000px;}
.y5b{bottom:949.935000px;}
.ye{bottom:955.005000px;}
.ye6{bottom:959.325000px;}
.y171{bottom:963.285000px;}
.y79{bottom:964.365000px;}
.y14e{bottom:965.805000px;}
.y97{bottom:968.685000px;}
.y3a{bottom:969.765000px;}
.yce{bottom:973.725000px;}
.y114{bottom:974.085000px;}
.y193{bottom:978.405000px;}
.yd{bottom:980.925000px;}
.yb2{bottom:983.445000px;}
.y170{bottom:987.045000px;}
.ye5{bottom:994.605000px;}
.y113{bottom:998.205000px;}
.y1b8{bottom:998.565000px;}
.y8{bottom:999.285000px;}
.y39{bottom:1000.725000px;}
.y96{bottom:1003.605000px;}
.ycd{bottom:1008.645000px;}
.y16a{bottom:1011.165000px;}
.y5a{bottom:1012.245000px;}
.y192{bottom:1013.325000px;}
.yb1{bottom:1018.725000px;}
.y7{bottom:1019.445000px;}
.y112{bottom:1022.325000px;}
.y1b7{bottom:1023.765000px;}
.ye4{bottom:1029.525000px;}
.y38{bottom:1032.045000px;}
.y95{bottom:1034.565000px;}
.y16f{bottom:1035.285000px;}
.y14d{bottom:1035.645000px;}
.y59{bottom:1043.205000px;}
.ycc{bottom:1043.565000px;}
.y111{bottom:1046.085000px;}
.y78{bottom:1047.165000px;}
.y191{bottom:1048.245000px;}
.y1b6{bottom:1048.965000px;}
.y6{bottom:1049.685000px;}
.yb0{bottom:1053.645000px;}
.y16e{bottom:1059.405000px;}
.y37{bottom:1063.005000px;}
.y94{bottom:1064.445000px;}
.y10d{bottom:1070.205000px;}
.y14c{bottom:1070.925000px;}
.ycb{bottom:1072.365000px;}
.y58{bottom:1074.165000px;}
.y5{bottom:1075.245000px;}
.y77{bottom:1075.605000px;}
.y190{bottom:1083.210000px;}
.yaf{bottom:1088.610000px;}
.y36{bottom:1094.010000px;}
.y10f{bottom:1094.370000px;}
.y93{bottom:1099.410000px;}
.y57{bottom:1105.170000px;}
.y14b{bottom:1105.890000px;}
.yae{bottom:1113.450000px;}
.y18f{bottom:1118.490000px;}
.y35{bottom:1118.850000px;}
.y4{bottom:1129.290000px;}
.y92{bottom:1134.330000px;}
.y56{bottom:1136.490000px;}
.y34{bottom:1137.930000px;}
.y3{bottom:1146.930000px;}
.y30{bottom:1157.730000px;}
.y2{bottom:1168.530000px;}
.y2e{bottom:1173.570000px;}
.y1{bottom:1190.490000px;}
.y2d{bottom:1193.730000px;}
.h16{height:5.054063px;}
.h6{height:7.920000px;}
.hd{height:8.640000px;}
.h8{height:15.480000px;}
.hf{height:15.516000px;}
.h17{height:16.425703px;}
.h1d{height:22.680000px;}
.h20{height:23.040000px;}
.h2e{height:23.076000px;}
.h22{height:23.400000px;}
.h21{height:23.436000px;}
.h28{height:24.120000px;}
.h26{height:24.480000px;}
.h1c{height:25.200000px;}
.h14{height:26.533828px;}
.h4{height:41.547656px;}
.h13{height:41.696016px;}
.h2c{height:46.440000px;}
.h25{height:46.476000px;}
.h1f{height:47.196000px;}
.h7{height:48.013594px;}
.h10{height:48.601406px;}
.h27{height:49.033125px;}
.h3{height:52.686563px;}
.h15{height:53.067656px;}
.h9{height:53.717344px;}
.he{height:54.426094px;}
.h23{height:58.121719px;}
.hb{height:58.833281px;}
.h2{height:59.871094px;}
.h2a{height:60.155156px;}
.h2b{height:60.298383px;}
.h19{height:61.927031px;}
.h11{height:63.175781px;}
.ha{height:63.949219px;}
.h5{height:65.884219px;}
.hc{height:67.824844px;}
.h24{height:70.596000px;}
.h12{height:70.756875px;}
.h2d{height:71.316000px;}
.h1e{height:71.623125px;}
.h1b{height:83.071406px;}
.h1a{height:185.040000px;}
.h29{height:241.560000px;}
.h18{height:253.440000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:41.436000px;}
.w10{width:45.036000px;}
.w12{width:46.836000px;}
.w14{width:52.200000px;}
.w1a{width:63.036000px;}
.w1d{width:73.440000px;}
.w1b{width:73.836000px;}
.w1c{width:84.636000px;}
.wf{width:106.596000px;}
.w11{width:115.236000px;}
.w6{width:119.196000px;}
.w17{width:137.592000px;}
.w19{width:147.996000px;}
.w18{width:148.392000px;}
.wc{width:201.315000px;}
.w9{width:205.920000px;}
.we{width:243.465000px;}
.wa{width:247.320000px;}
.w15{width:275.865000px;}
.w1e{width:328.785000px;}
.w8{width:335.160000px;}
.w4{width:348.630000px;}
.w3{width:349.350000px;}
.w7{width:390.600000px;}
.wd{width:403.350000px;}
.w16{width:435.420000px;}
.w13{width:470.520000px;}
.w5{width:637.095000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1f{left:7.560000px;}
.x5{left:8.640000px;}
.x25{left:10.440000px;}
.x51{left:16.200000px;}
.x38{left:17.790000px;}
.x4e{left:19.440000px;}
.x4f{left:21.600000px;}
.x37{left:25.410000px;}
.x48{left:26.670000px;}
.x49{left:28.440000px;}
.x4c{left:31.680000px;}
.x4b{left:33.840000px;}
.x3f{left:41.400000px;}
.x40{left:45.000000px;}
.x46{left:46.080000px;}
.x2b{left:47.523000px;}
.x43{left:50.079000px;}
.x42{left:53.676000px;}
.x23{left:57.270000px;}
.x2d{left:58.323000px;}
.x32{left:62.385000px;}
.x39{left:66.960000px;}
.xf{left:68.436000px;}
.x34{left:70.350000px;}
.x2a{left:74.883000px;}
.x26{left:76.683000px;}
.x2c{left:77.805000px;}
.x27{left:83.205000px;}
.x28{left:85.725000px;}
.x1b{left:88.410000px;}
.x16{left:90.285000px;}
.x41{left:95.433000px;}
.x1c{left:96.510000px;}
.x4{left:97.596000px;}
.x1e{left:98.676000px;}
.x11{left:100.475987px;}
.x1{left:106.235987px;}
.x7{left:115.235987px;}
.x8{left:118.835987px;}
.x3b{left:121.715987px;}
.x17{left:128.085000px;}
.x50{left:131.079000px;}
.xd{left:133.271987px;}
.x1d{left:137.231987px;}
.xb{left:138.311987px;}
.x20{left:140.832000px;}
.x22{left:143.700000px;}
.x52{left:148.751987px;}
.x14{left:159.194987px;}
.xc{left:160.274987px;}
.x1a{left:162.615000px;}
.x35{left:165.675000px;}
.x13{left:180.794987px;}
.x12{left:187.274987px;}
.x19{left:188.280000px;}
.x30{left:189.435000px;}
.x2f{left:190.515000px;}
.xe{left:194.834987px;}
.x31{left:202.680000px;}
.xa{left:206.354987px;}
.x29{left:215.354987px;}
.x36{left:217.260000px;}
.x2{left:228.344987px;}
.x2e{left:231.945000px;}
.x33{left:258.045000px;}
.x15{left:263.880000px;}
.x53{left:272.264987px;}
.x55{left:279.824987px;}
.x54{left:299.264987px;}
.x6{left:312.990000px;}
.x3a{left:320.970000px;}
.x3e{left:328.469987px;}
.x18{left:334.335000px;}
.x21{left:342.870000px;}
.x44{left:383.190000px;}
.x3c{left:409.139987px;}
.x9{left:413.099987px;}
.x3{left:446.579987px;}
.x45{left:521.490000px;}
.x24{left:544.890000px;}
.x4a{left:585.255000px;}
.x47{left:670.605000px;}
.x10{left:705.525000px;}
.x4d{left:744.765000px;}
.x3d{left:757.769987px;}
@media print{
.v6{vertical-align:-49.920000pt;}
.v1{vertical-align:-46.826667pt;}
.v5{vertical-align:-27.786667pt;}
.v4{vertical-align:-16.640000pt;}
.v3{vertical-align:-11.040000pt;}
.v2{vertical-align:-5.546667pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.554667pt;}
.ls16{letter-spacing:-0.441067pt;}
.ls12{letter-spacing:-0.376533pt;}
.ls4{letter-spacing:-0.312533pt;}
.ls17{letter-spacing:-0.169067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.173867pt;}
.ls5{letter-spacing:0.307200pt;}
.lsd{letter-spacing:0.450560pt;}
.ls18{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.476160pt;}
.lsf{letter-spacing:0.554667pt;}
.ls19{letter-spacing:0.557227pt;}
.ls6{letter-spacing:0.629333pt;}
.ls1a{letter-spacing:0.686080pt;}
.ls7{letter-spacing:1.408000pt;}
.ls11{letter-spacing:9.512960pt;}
.ls1b{letter-spacing:18.472960pt;}
.ls1c{letter-spacing:22.323627pt;}
.ls1{letter-spacing:24.458667pt;}
.ls8{letter-spacing:29.568000pt;}
.lsc{letter-spacing:42.803627pt;}
.ls2{letter-spacing:46.218667pt;}
.lse{letter-spacing:51.752960pt;}
.ls10{letter-spacing:64.552960pt;}
.lsa{letter-spacing:91.008000pt;}
.lsb{letter-spacing:101.760000pt;}
.ls15{letter-spacing:142.077013pt;}
.ls14{letter-spacing:142.237013pt;}
.ls9{letter-spacing:170.378667pt;}
.ws10{word-spacing:-18.093867pt;}
.ws6{word-spacing:-17.920000pt;}
.wsa{word-spacing:-17.365333pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.643200pt;}
.ws1{word-spacing:-14.330667pt;}
.ws9{word-spacing:-13.306880pt;}
.wsd{word-spacing:-12.178688pt;}
.wse{word-spacing:-12.149760pt;}
.ws2{word-spacing:-11.621973pt;}
.ws8{word-spacing:-10.992640pt;}
.ws4{word-spacing:0.000000pt;}
.wsc{word-spacing:63.334528pt;}
.wsb{word-spacing:103.800533pt;}
.wsf{word-spacing:129.927253pt;}
.ws7{word-spacing:628.986027pt;}
._2d{margin-left:-13.516373pt;}
._2{margin-left:-2.425173pt;}
._1{margin-left:-1.408000pt;}
._0{width:1.024000pt;}
._5{width:2.122667pt;}
._b{width:3.751680pt;}
._a{width:4.864000pt;}
._c{width:6.400000pt;}
._d{width:7.296000pt;}
._1b{width:8.268800pt;}
._15{width:9.216000pt;}
._14{width:10.240000pt;}
._16{width:11.136000pt;}
._12{width:12.587520pt;}
._11{width:13.568000pt;}
._17{width:14.612480pt;}
._1d{width:15.892480pt;}
._10{width:17.728000pt;}
._e{width:19.008000pt;}
._f{width:19.904000pt;}
._1f{width:21.056000pt;}
._6{width:22.208000pt;}
._7{width:23.552000pt;}
._13{width:25.216000pt;}
._20{width:26.306560pt;}
._26{width:28.170240pt;}
._2c{width:29.603840pt;}
._18{width:35.194880pt;}
._19{width:36.321280pt;}
._2a{width:37.539840pt;}
._24{width:45.803520pt;}
._25{width:46.837760pt;}
._29{width:48.168960pt;}
._23{width:58.920960pt;}
._22{width:59.939840pt;}
._21{width:60.861440pt;}
._1c{width:91.008000pt;}
._27{width:128.480427pt;}
._1a{width:170.378667pt;}
._8{width:177.167360pt;}
._28{width:327.818667pt;}
._9{width:351.407360pt;}
._3{width:523.173120pt;}
._1e{width:750.485333pt;}
._4{width:979.098453pt;}
._2b{width:2008.120320pt;}
.fs8{font-size:5.120000pt;}
.fs9{font-size:16.640000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fsb{font-size:53.888000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:71.680000pt;}
.fsa{font-size:74.240000pt;}
.ya{bottom:-4.160000pt;}
.y2f{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.y10c{bottom:0.706667pt;}
.yc{bottom:2.560000pt;}
.y10a{bottom:3.066667pt;}
.y110{bottom:3.840000pt;}
.y115{bottom:3.866667pt;}
.y16d{bottom:5.120000pt;}
.y176{bottom:5.760000pt;}
.y133{bottom:7.040000pt;}
.y130{bottom:7.360000pt;}
.y144{bottom:11.680000pt;}
.y125{bottom:24.360000pt;}
.y164{bottom:24.640000pt;}
.y10e{bottom:25.320000pt;}
.y16c{bottom:25.920000pt;}
.y33{bottom:27.200000pt;}
.y13d{bottom:29.026667pt;}
.yb{bottom:32.960000pt;}
.y161{bottom:45.760000pt;}
.y123{bottom:45.800000pt;}
.y16b{bottom:46.720000pt;}
.y136{bottom:47.973333pt;}
.y162{bottom:48.040000pt;}
.y14a{bottom:50.720000pt;}
.y32{bottom:50.880000pt;}
.y13b{bottom:51.680000pt;}
.y9{bottom:56.320000pt;}
.y13e{bottom:56.800000pt;}
.y137{bottom:57.693333pt;}
.y13a{bottom:70.213333pt;}
.y31{bottom:74.272000pt;}
.y149{bottom:74.693333pt;}
.y106{bottom:75.106667pt;}
.y138{bottom:84.066667pt;}
.y13f{bottom:84.546667pt;}
.y101{bottom:87.813333pt;}
.y107{bottom:90.240000pt;}
.y148{bottom:90.946667pt;}
.y139{bottom:93.346667pt;}
.y105{bottom:97.600000pt;}
.y76{bottom:99.232000pt;}
.yfe{bottom:100.512000pt;}
.y1a8{bottom:101.152000pt;}
.y102{bottom:102.626667pt;}
.y134{bottom:107.552000pt;}
.yca{bottom:108.192000pt;}
.y18e{bottom:112.032000pt;}
.y140{bottom:112.320000pt;}
.y132{bottom:112.992000pt;}
.y147{bottom:114.906667pt;}
.y2c{bottom:115.872000pt;}
.y55{bottom:116.832000pt;}
.y160{bottom:118.112000pt;}
.y104{bottom:120.133333pt;}
.y12e{bottom:122.272000pt;}
.y75{bottom:126.752000pt;}
.y146{bottom:131.200000pt;}
.yfd{bottom:131.552000pt;}
.y1a7{bottom:132.192000pt;}
.y91{bottom:132.512000pt;}
.y18d{bottom:133.152000pt;}
.y131{bottom:133.466667pt;}
.y2b{bottom:135.066667pt;}
.y12f{bottom:135.706667pt;}
.y108{bottom:136.066667pt;}
.yc9{bottom:139.226667pt;}
.y141{bottom:140.066667pt;}
.y54{bottom:144.346667pt;}
.y15f{bottom:149.146667pt;}
.y12d{bottom:153.306667pt;}
.y74{bottom:154.266667pt;}
.y103{bottom:154.333333pt;}
.y2a{bottom:154.586667pt;}
.y100{bottom:155.680000pt;}
.ye3{bottom:157.786667pt;}
.yfc{bottom:162.586667pt;}
.y1a6{bottom:163.226667pt;}
.y90{bottom:163.546667pt;}
.y142{bottom:167.840000pt;}
.yc8{bottom:170.266667pt;}
.y145{bottom:171.426667pt;}
.y53{bottom:171.866667pt;}
.y10b{bottom:173.440000pt;}
.y29{bottom:173.786667pt;}
.y18c{bottom:175.746667pt;}
.y15e{bottom:180.226667pt;}
.y13c{bottom:181.253333pt;}
.y73{bottom:181.826667pt;}
.y12c{bottom:184.386667pt;}
.ye2{bottom:188.866667pt;}
.y109{bottom:189.760000pt;}
.y28{bottom:193.346667pt;}
.yfb{bottom:193.666667pt;}
.y1a5{bottom:194.306667pt;}
.y8f{bottom:194.626667pt;}
.y143{bottom:195.613333pt;}
.y18b{bottom:196.866667pt;}
.y52{bottom:199.426667pt;}
.yc7{bottom:201.346667pt;}
.y72{bottom:209.666667pt;}
.y15d{bottom:211.266667pt;}
.y12b{bottom:215.426667pt;}
.y18a{bottom:217.986667pt;}
.y27{bottom:219.586667pt;}
.ye1{bottom:219.906667pt;}
.yfa{bottom:223.426667pt;}
.y1a4{bottom:225.346667pt;}
.y8e{bottom:225.666667pt;}
.y51{bottom:227.266667pt;}
.yc6{bottom:232.386667pt;}
.y71{bottom:237.186667pt;}
.y189{bottom:239.106667pt;}
.yad{bottom:242.626667pt;}
.yf9{bottom:243.266667pt;}
.y12a{bottom:246.466667pt;}
.y26{bottom:247.426667pt;}
.ye0{bottom:250.946667pt;}
.y50{bottom:254.786667pt;}
.y1a3{bottom:256.386667pt;}
.y8d{bottom:256.706667pt;}
.yc5{bottom:258.946667pt;}
.y188{bottom:260.226667pt;}
.yf8{bottom:261.186667pt;}
.y70{bottom:264.706667pt;}
.y25{bottom:268.546667pt;}
.y15c{bottom:273.666667pt;}
.yac{bottom:275.586667pt;}
.y135{bottom:277.440000pt;}
.y129{bottom:277.506667pt;}
.y187{bottom:281.346667pt;}
.ydf{bottom:281.986667pt;}
.y4f{bottom:282.306667pt;}
.yc4{bottom:284.226667pt;}
.y1cf{bottom:284.546667pt;}
.y1a2{bottom:287.453333pt;}
.y8c{bottom:287.773333pt;}
.y6f{bottom:292.253333pt;}
.y24{bottom:296.093333pt;}
.yab{bottom:298.973333pt;}
.y186{bottom:302.493333pt;}
.y15b{bottom:304.733333pt;}
.y1ce{bottom:306.653333pt;}
.y128{bottom:308.573333pt;}
.y4e{bottom:309.853333pt;}
.yde{bottom:313.053333pt;}
.yc3{bottom:315.293333pt;}
.y1a1{bottom:318.493333pt;}
.y8b{bottom:318.813333pt;}
.y6e{bottom:320.093333pt;}
.yaa{bottom:321.053333pt;}
.yf7{bottom:323.293333pt;}
.y23{bottom:323.613333pt;}
.y127{bottom:326.173333pt;}
.y1cd{bottom:329.053333pt;}
.y15a{bottom:335.773333pt;}
.y4d{bottom:337.693333pt;}
.ydd{bottom:344.093333pt;}
.ya9{bottom:344.413333pt;}
.y22{bottom:344.733333pt;}
.y185{bottom:345.053333pt;}
.yc2{bottom:346.333333pt;}
.y6d{bottom:347.613333pt;}
.y1a0{bottom:349.533333pt;}
.y8a{bottom:349.853333pt;}
.y1cc{bottom:351.453333pt;}
.yf6{bottom:354.333333pt;}
.y4c{bottom:365.213333pt;}
.y184{bottom:366.173333pt;}
.y159{bottom:366.813333pt;}
.y126{bottom:369.053333pt;}
.y21{bottom:372.573333pt;}
.y1cb{bottom:373.853333pt;}
.y6c{bottom:375.133333pt;}
.ya8{bottom:376.413333pt;}
.yc1{bottom:377.373333pt;}
.y19f{bottom:380.573333pt;}
.y89{bottom:380.893333pt;}
.yf5{bottom:385.373333pt;}
.y1b5{bottom:387.613333pt;}
.y183{bottom:387.933333pt;}
.ydc{bottom:389.213333pt;}
.y122{bottom:390.493333pt;}
.y4b{bottom:392.733333pt;}
.y1ca{bottom:396.253333pt;}
.y158{bottom:397.853333pt;}
.ya7{bottom:398.813333pt;}
.y20{bottom:400.133333pt;}
.y6b{bottom:402.693333pt;}
.yc0{bottom:408.453333pt;}
.y182{bottom:411.653333pt;}
.y88{bottom:411.973333pt;}
.yf4{bottom:416.453333pt;}
.y1c9{bottom:418.693333pt;}
.y4a{bottom:420.293333pt;}
.y1b4{bottom:420.933333pt;}
.y1f{bottom:421.253333pt;}
.y157{bottom:428.933333pt;}
.y6a{bottom:430.533333pt;}
.y124{bottom:432.453333pt;}
.y181{bottom:435.653333pt;}
.ybf{bottom:439.493333pt;}
.y1c8{bottom:440.773333pt;}
.y19e{bottom:442.693333pt;}
.y87{bottom:443.013333pt;}
.ya6{bottom:443.653333pt;}
.yf3{bottom:447.493333pt;}
.y49{bottom:447.813333pt;}
.y1e{bottom:448.773333pt;}
.ydb{bottom:451.333333pt;}
.y69{bottom:458.053333pt;}
.y180{bottom:459.333333pt;}
.y156{bottom:459.973333pt;}
.y1c7{bottom:463.173333pt;}
.y1b3{bottom:465.413333pt;}
.ya5{bottom:467.013333pt;}
.y121{bottom:467.973333pt;}
.ybe{bottom:470.533333pt;}
.y19d{bottom:473.733333pt;}
.y86{bottom:474.053333pt;}
.y48{bottom:475.653333pt;}
.y1d{bottom:476.293333pt;}
.yda{bottom:482.373333pt;}
.y17f{bottom:483.333333pt;}
.y68{bottom:485.573333pt;}
.y1b2{bottom:487.813333pt;}
.ya4{bottom:489.413333pt;}
.y155{bottom:491.013333pt;}
.yf2{bottom:492.613333pt;}
.y19c{bottom:496.133333pt;}
.y120{bottom:497.413333pt;}
.y1c{bottom:497.733333pt;}
.y85{bottom:501.573333pt;}
.y47{bottom:503.173333pt;}
.yd9{bottom:507.973333pt;}
.y1b1{bottom:510.213333pt;}
.ya3{bottom:511.840000pt;}
.y67{bottom:513.120000pt;}
.y17e{bottom:514.400000pt;}
.y19b{bottom:519.520000pt;}
.yf1{bottom:523.680000pt;}
.y11f{bottom:524.960000pt;}
.y1b{bottom:525.280000pt;}
.y84{bottom:528.160000pt;}
.y1c6{bottom:530.400000pt;}
.y46{bottom:530.720000pt;}
.yd8{bottom:532.000000pt;}
.y154{bottom:532.320000pt;}
.ybd{bottom:532.640000pt;}
.ya2{bottom:535.520000pt;}
.y66{bottom:540.640000pt;}
.y19a{bottom:542.880000pt;}
.y17d{bottom:545.440000pt;}
.y1c5{bottom:552.480000pt;}
.y1a{bottom:552.800000pt;}
.yff{bottom:552.960000pt;}
.yf0{bottom:554.720000pt;}
.ya1{bottom:557.920000pt;}
.y45{bottom:558.240000pt;}
.y83{bottom:559.200000pt;}
.yd7{bottom:563.040000pt;}
.y153{bottom:563.360000pt;}
.ybc{bottom:563.680000pt;}
.y199{bottom:565.920000pt;}
.y65{bottom:568.480000pt;}
.y19{bottom:573.920000pt;}
.y1c4{bottom:574.880000pt;}
.y17c{bottom:576.480000pt;}
.y1b0{bottom:577.120000pt;}
.y11e{bottom:579.360000pt;}
.ya0{bottom:580.000000pt;}
.y169{bottom:580.960000pt;}
.yef{bottom:585.760000pt;}
.y44{bottom:586.080000pt;}
.y198{bottom:589.280000pt;}
.y82{bottom:590.240000pt;}
.yd6{bottom:594.080000pt;}
.ybb{bottom:594.720000pt;}
.y64{bottom:596.000000pt;}
.y1c3{bottom:597.280000pt;}
.y1af{bottom:599.520000pt;}
.y18{bottom:601.440000pt;}
.y168{bottom:602.400000pt;}
.y11d{bottom:604.640000pt;}
.y17b{bottom:607.520000pt;}
.y9f{bottom:612.320000pt;}
.y43{bottom:613.600000pt;}
.yee{bottom:616.800000pt;}
.y1c2{bottom:619.680000pt;}
.y81{bottom:621.280000pt;}
.y1ae{bottom:621.920000pt;}
.y63{bottom:623.546667pt;}
.y167{bottom:623.866667pt;}
.yd5{bottom:625.146667pt;}
.yba{bottom:625.786667pt;}
.y17{bottom:629.306667pt;}
.y11c{bottom:629.946667pt;}
.y17a{bottom:638.586667pt;}
.y42{bottom:641.146667pt;}
.y1c1{bottom:642.106667pt;}
.y9e{bottom:643.386667pt;}
.y1ad{bottom:644.346667pt;}
.y166{bottom:644.986667pt;}
.yed{bottom:647.866667pt;}
.y16{bottom:650.426667pt;}
.y62{bottom:651.066667pt;}
.y80{bottom:652.346667pt;}
.y11b{bottom:655.226667pt;}
.yd4{bottom:656.186667pt;}
.yb9{bottom:656.826667pt;}
.y1c0{bottom:664.186667pt;}
.y165{bottom:666.426667pt;}
.y41{bottom:668.666667pt;}
.y179{bottom:669.626667pt;}
.y9d{bottom:674.426667pt;}
.y15{bottom:677.946667pt;}
.y61{bottom:678.906667pt;}
.yec{bottom:679.226667pt;}
.y11a{bottom:680.506667pt;}
.y7f{bottom:683.386667pt;}
.y1bf{bottom:686.586667pt;}
.yd3{bottom:687.226667pt;}
.yb8{bottom:687.866667pt;}
.y40{bottom:696.506667pt;}
.y1ac{bottom:697.466667pt;}
.y178{bottom:700.666667pt;}
.y14{bottom:705.466667pt;}
.y9c{bottom:705.786667pt;}
.y60{bottom:706.426667pt;}
.y1be{bottom:708.986667pt;}
.yeb{bottom:710.266667pt;}
.y7e{bottom:714.426667pt;}
.yd2{bottom:718.266667pt;}
.yb7{bottom:718.906667pt;}
.y3f{bottom:724.026667pt;}
.y13{bottom:726.586667pt;}
.y1ab{bottom:728.506667pt;}
.y163{bottom:729.786667pt;}
.y1bd{bottom:731.386667pt;}
.y177{bottom:731.706667pt;}
.y119{bottom:733.626667pt;}
.y5f{bottom:733.946667pt;}
.y152{bottom:734.266667pt;}
.y9b{bottom:736.866667pt;}
.y7d{bottom:740.066667pt;}
.yea{bottom:741.346667pt;}
.y197{bottom:745.506667pt;}
.yd1{bottom:749.346667pt;}
.yb6{bottom:749.986667pt;}
.y3e{bottom:751.586667pt;}
.y1bc{bottom:753.826667pt;}
.y12{bottom:754.466667pt;}
.ye9{bottom:759.266667pt;}
.y1aa{bottom:759.586667pt;}
.y5e{bottom:761.506667pt;}
.y7c{bottom:764.066667pt;}
.y118{bottom:764.706667pt;}
.y151{bottom:765.346667pt;}
.ye8{bottom:765.986667pt;}
.y9a{bottom:767.906667pt;}
.y175{bottom:770.786667pt;}
.y1bb{bottom:775.906667pt;}
.y196{bottom:776.546667pt;}
.yd0{bottom:776.866667pt;}
.y3d{bottom:779.106667pt;}
.y11{bottom:779.746667pt;}
.yb5{bottom:781.026667pt;}
.y5d{bottom:789.346667pt;}
.y1a9{bottom:790.626667pt;}
.y174{bottom:791.906667pt;}
.y7b{bottom:795.106667pt;}
.y117{bottom:795.746667pt;}
.y150{bottom:796.386667pt;}
.y1ba{bottom:798.306667pt;}
.y99{bottom:798.946667pt;}
.y10{bottom:802.786667pt;}
.ycf{bottom:803.426667pt;}
.y3c{bottom:806.946667pt;}
.y195{bottom:807.586667pt;}
.yb4{bottom:812.066667pt;}
.y173{bottom:813.346667pt;}
.y5c{bottom:816.866667pt;}
.y1b9{bottom:820.706667pt;}
.ye7{bottom:821.666667pt;}
.yf{bottom:825.826667pt;}
.y7a{bottom:826.146667pt;}
.y116{bottom:826.786667pt;}
.y14f{bottom:827.426667pt;}
.y98{bottom:829.986667pt;}
.y3b{bottom:834.466667pt;}
.y172{bottom:834.786667pt;}
.y194{bottom:838.626667pt;}
.yb3{bottom:843.106667pt;}
.y5b{bottom:844.386667pt;}
.ye{bottom:848.893333pt;}
.ye6{bottom:852.733333pt;}
.y171{bottom:856.253333pt;}
.y79{bottom:857.213333pt;}
.y14e{bottom:858.493333pt;}
.y97{bottom:861.053333pt;}
.y3a{bottom:862.013333pt;}
.yce{bottom:865.533333pt;}
.y114{bottom:865.853333pt;}
.y193{bottom:869.693333pt;}
.yd{bottom:871.933333pt;}
.yb2{bottom:874.173333pt;}
.y170{bottom:877.373333pt;}
.ye5{bottom:884.093333pt;}
.y113{bottom:887.293333pt;}
.y1b8{bottom:887.613333pt;}
.y8{bottom:888.253333pt;}
.y39{bottom:889.533333pt;}
.y96{bottom:892.093333pt;}
.ycd{bottom:896.573333pt;}
.y16a{bottom:898.813333pt;}
.y5a{bottom:899.773333pt;}
.y192{bottom:900.733333pt;}
.yb1{bottom:905.533333pt;}
.y7{bottom:906.173333pt;}
.y112{bottom:908.733333pt;}
.y1b7{bottom:910.013333pt;}
.ye4{bottom:915.133333pt;}
.y38{bottom:917.373333pt;}
.y95{bottom:919.613333pt;}
.y16f{bottom:920.253333pt;}
.y14d{bottom:920.573333pt;}
.y59{bottom:927.293333pt;}
.ycc{bottom:927.613333pt;}
.y111{bottom:929.853333pt;}
.y78{bottom:930.813333pt;}
.y191{bottom:931.773333pt;}
.y1b6{bottom:932.413333pt;}
.y6{bottom:933.053333pt;}
.yb0{bottom:936.573333pt;}
.y16e{bottom:941.693333pt;}
.y37{bottom:944.893333pt;}
.y94{bottom:946.173333pt;}
.y10d{bottom:951.293333pt;}
.y14c{bottom:951.933333pt;}
.ycb{bottom:953.213333pt;}
.y58{bottom:954.813333pt;}
.y5{bottom:955.773333pt;}
.y77{bottom:956.093333pt;}
.y190{bottom:962.853333pt;}
.yaf{bottom:967.653333pt;}
.y36{bottom:972.453333pt;}
.y10f{bottom:972.773333pt;}
.y93{bottom:977.253333pt;}
.y57{bottom:982.373333pt;}
.y14b{bottom:983.013333pt;}
.yae{bottom:989.733333pt;}
.y18f{bottom:994.213333pt;}
.y35{bottom:994.533333pt;}
.y4{bottom:1003.813333pt;}
.y92{bottom:1008.293333pt;}
.y56{bottom:1010.213333pt;}
.y34{bottom:1011.493333pt;}
.y3{bottom:1019.493333pt;}
.y30{bottom:1029.093333pt;}
.y2{bottom:1038.693333pt;}
.y2e{bottom:1043.173333pt;}
.y1{bottom:1058.213333pt;}
.y2d{bottom:1061.093333pt;}
.h16{height:4.492500pt;}
.h6{height:7.040000pt;}
.hd{height:7.680000pt;}
.h8{height:13.760000pt;}
.hf{height:13.792000pt;}
.h17{height:14.600625pt;}
.h1d{height:20.160000pt;}
.h20{height:20.480000pt;}
.h2e{height:20.512000pt;}
.h22{height:20.800000pt;}
.h21{height:20.832000pt;}
.h28{height:21.440000pt;}
.h26{height:21.760000pt;}
.h1c{height:22.400000pt;}
.h14{height:23.585625pt;}
.h4{height:36.931250pt;}
.h13{height:37.063125pt;}
.h2c{height:41.280000pt;}
.h25{height:41.312000pt;}
.h1f{height:41.952000pt;}
.h7{height:42.678750pt;}
.h10{height:43.201250pt;}
.h27{height:43.585000pt;}
.h3{height:46.832500pt;}
.h15{height:47.171250pt;}
.h9{height:47.748750pt;}
.he{height:48.378750pt;}
.h23{height:51.663750pt;}
.hb{height:52.296250pt;}
.h2{height:53.218750pt;}
.h2a{height:53.471250pt;}
.h2b{height:53.598562pt;}
.h19{height:55.046250pt;}
.h11{height:56.156250pt;}
.ha{height:56.843750pt;}
.h5{height:58.563750pt;}
.hc{height:60.288750pt;}
.h24{height:62.752000pt;}
.h12{height:62.895000pt;}
.h2d{height:63.392000pt;}
.h1e{height:63.665000pt;}
.h1b{height:73.841250pt;}
.h1a{height:164.480000pt;}
.h29{height:214.720000pt;}
.h18{height:225.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:36.832000pt;}
.w10{width:40.032000pt;}
.w12{width:41.632000pt;}
.w14{width:46.400000pt;}
.w1a{width:56.032000pt;}
.w1d{width:65.280000pt;}
.w1b{width:65.632000pt;}
.w1c{width:75.232000pt;}
.wf{width:94.752000pt;}
.w11{width:102.432000pt;}
.w6{width:105.952000pt;}
.w17{width:122.304000pt;}
.w19{width:131.552000pt;}
.w18{width:131.904000pt;}
.wc{width:178.946667pt;}
.w9{width:183.040000pt;}
.we{width:216.413333pt;}
.wa{width:219.840000pt;}
.w15{width:245.213333pt;}
.w1e{width:292.253333pt;}
.w8{width:297.920000pt;}
.w4{width:309.893333pt;}
.w3{width:310.533333pt;}
.w7{width:347.200000pt;}
.wd{width:358.533333pt;}
.w16{width:387.040000pt;}
.w13{width:418.240000pt;}
.w5{width:566.306667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.720000pt;}
.x5{left:7.680000pt;}
.x25{left:9.280000pt;}
.x51{left:14.400000pt;}
.x38{left:15.813333pt;}
.x4e{left:17.280000pt;}
.x4f{left:19.200000pt;}
.x37{left:22.586667pt;}
.x48{left:23.706667pt;}
.x49{left:25.280000pt;}
.x4c{left:28.160000pt;}
.x4b{left:30.080000pt;}
.x3f{left:36.800000pt;}
.x40{left:40.000000pt;}
.x46{left:40.960000pt;}
.x2b{left:42.242667pt;}
.x43{left:44.514667pt;}
.x42{left:47.712000pt;}
.x23{left:50.906667pt;}
.x2d{left:51.842667pt;}
.x32{left:55.453333pt;}
.x39{left:59.520000pt;}
.xf{left:60.832000pt;}
.x34{left:62.533333pt;}
.x2a{left:66.562667pt;}
.x26{left:68.162667pt;}
.x2c{left:69.160000pt;}
.x27{left:73.960000pt;}
.x28{left:76.200000pt;}
.x1b{left:78.586667pt;}
.x16{left:80.253333pt;}
.x41{left:84.829333pt;}
.x1c{left:85.786667pt;}
.x4{left:86.752000pt;}
.x1e{left:87.712000pt;}
.x11{left:89.311988pt;}
.x1{left:94.431988pt;}
.x7{left:102.431988pt;}
.x8{left:105.631988pt;}
.x3b{left:108.191988pt;}
.x17{left:113.853333pt;}
.x50{left:116.514667pt;}
.xd{left:118.463988pt;}
.x1d{left:121.983988pt;}
.xb{left:122.943988pt;}
.x20{left:125.184000pt;}
.x22{left:127.733333pt;}
.x52{left:132.223988pt;}
.x14{left:141.506655pt;}
.xc{left:142.466655pt;}
.x1a{left:144.546667pt;}
.x35{left:147.266667pt;}
.x13{left:160.706655pt;}
.x12{left:166.466655pt;}
.x19{left:167.360000pt;}
.x30{left:168.386667pt;}
.x2f{left:169.346667pt;}
.xe{left:173.186655pt;}
.x31{left:180.160000pt;}
.xa{left:183.426655pt;}
.x29{left:191.426655pt;}
.x36{left:193.120000pt;}
.x2{left:202.973322pt;}
.x2e{left:206.173333pt;}
.x33{left:229.373333pt;}
.x15{left:234.560000pt;}
.x53{left:242.013322pt;}
.x55{left:248.733322pt;}
.x54{left:266.013322pt;}
.x6{left:278.213333pt;}
.x3a{left:285.306667pt;}
.x3e{left:291.973322pt;}
.x18{left:297.186667pt;}
.x21{left:304.773333pt;}
.x44{left:340.613333pt;}
.x3c{left:363.679988pt;}
.x9{left:367.199988pt;}
.x3{left:396.959988pt;}
.x45{left:463.546667pt;}
.x24{left:484.346667pt;}
.x4a{left:520.226667pt;}
.x47{left:596.093333pt;}
.x10{left:627.133333pt;}
.x4d{left:662.013333pt;}
.x3d{left:673.573322pt;}
}




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