
    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_ea7fe102945373c16b17990f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86bdc0817fe0e624f2ee29dc.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_653f529d8a5508b2fc55af49.woff')format("woff");}.ff3{font-family:ff3;line-height:0.944824;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_bd29aef1cea6db8b2e376f23.woff')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_6795418ddc23f39547e1fffa.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8ff2a1c0810c8541c04009fb.woff')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_5e9219ad43ba5971540c9095.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_52e9c21c9c62a361dddad94b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_b1c6a5f9b0c333bbda91e409.woff')format("woff");}.ff9{font-family:ff9;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-84.240000px;}
.v2{vertical-align:-79.920000px;}
.v5{vertical-align:-77.772000px;}
.v3{vertical-align:-71.280000px;}
.v7{vertical-align:-69.264000px;}
.v6{vertical-align:-67.140000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls11{letter-spacing:-6.120000px;}
.ls15{letter-spacing:-3.942000px;}
.lse{letter-spacing:-1.458000px;}
.lsa{letter-spacing:-1.410000px;}
.ls2{letter-spacing:-1.080000px;}
.ls17{letter-spacing:-0.828000px;}
.ls3{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.375600px;}
.ls24{letter-spacing:-0.352200px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.023760px;}
.ls12{letter-spacing:0.352200px;}
.ls1a{letter-spacing:0.375600px;}
.ls18{letter-spacing:0.466800px;}
.lsb{letter-spacing:0.702000px;}
.ls9{letter-spacing:0.750000px;}
.ls5{letter-spacing:1.080000px;}
.ls1c{letter-spacing:1.410000px;}
.ls8{letter-spacing:1.620000px;}
.ls0{letter-spacing:1.782000px;}
.ls25{letter-spacing:1.806000px;}
.ls21{letter-spacing:2.538000px;}
.ls13{letter-spacing:2.910000px;}
.ls10{letter-spacing:3.240000px;}
.ls23{letter-spacing:3.780000px;}
.lsc{letter-spacing:4.698000px;}
.ls22{letter-spacing:5.940000px;}
.lsf{letter-spacing:16.904160px;}
.ls6{letter-spacing:27.848160px;}
.ls7{letter-spacing:193.992000px;}
.ls19{letter-spacing:196.692000px;}
.ls16{letter-spacing:199.008000px;}
.ls14{letter-spacing:215.640000px;}
.ls20{letter-spacing:248.040000px;}
.ls1f{letter-spacing:358.872000px;}
.ls1e{letter-spacing:408.552000px;}
.ls1d{letter-spacing:618.192000px;}
.ls1b{letter-spacing:907.752000px;}
.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;}
}
.wse{word-spacing:-20.358000px;}
.ws10{word-spacing:-19.626000px;}
.wsc{word-spacing:-18.900000px;}
.ws4{word-spacing:-18.570000px;}
.wsd{word-spacing:-18.522000px;}
.wsb{word-spacing:-18.195600px;}
.ws7{word-spacing:-18.172200px;}
.ws5{word-spacing:-17.843760px;}
.ws2{word-spacing:-17.820000px;}
.wsf{word-spacing:-17.467800px;}
.wsa{word-spacing:-17.444400px;}
.ws1{word-spacing:-16.740000px;}
.ws6{word-spacing:-16.362000px;}
.ws9{word-spacing:-15.912000px;}
.ws0{word-spacing:-15.660000px;}
.ws8{word-spacing:-15.120000px;}
.ws3{word-spacing:0.000000px;}
._6{margin-left:-10.471440px;}
._18{margin-left:-8.877120px;}
._16{margin-left:-6.949200px;}
._2{margin-left:-5.423760px;}
._4{margin-left:-4.203840px;}
._1{margin-left:-2.357520px;}
._0{margin-left:-1.272240px;}
._3{width:1.493520px;}
._5{width:3.355440px;}
._a{width:5.340720px;}
._9{width:6.555600px;}
._8{width:8.403600px;}
._7{width:10.242720px;}
._c{width:11.519760px;}
._b{width:12.751680px;}
._1b{width:14.459040px;}
._1c{width:15.521520px;}
._15{width:16.650720px;}
._17{width:18.203280px;}
._14{width:19.378080px;}
._e{width:20.663760px;}
._d{width:21.669120px;}
._f{width:22.738320px;}
._10{width:24.034800px;}
._19{width:25.828800px;}
._13{width:27.423360px;}
._12{width:28.846800px;}
._11{width:30.504960px;}
._1a{width:32.004720px;}
._1d{width:34.003920px;}
._1e{width:35.278080px;}
._1f{width:36.931680px;}
._20{width:38.428080px;}
._22{width:42.910560px;}
._23{width:44.362320px;}
._21{width:45.394560px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(64,61,57);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:47.520000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.480000px;}
.fs0{font-size:66.960000px;}
.fs1{font-size:71.280000px;}
.y0{bottom:0.000000px;}
.y10f{bottom:3.240000px;}
.y8e{bottom:3.780000px;}
.ya3{bottom:4.320000px;}
.yfa{bottom:4.860000px;}
.y9{bottom:5.940000px;}
.y3{bottom:9.756000px;}
.yc8{bottom:12.960000px;}
.yee{bottom:12.990000px;}
.y7d{bottom:13.500000px;}
.yf3{bottom:14.040000px;}
.yf6{bottom:14.580000px;}
.yfc{bottom:15.120000px;}
.y12e{bottom:19.980000px;}
.y114{bottom:20.520000px;}
.y136{bottom:21.060000px;}
.y13e{bottom:21.090000px;}
.y175{bottom:21.096000px;}
.y96{bottom:22.680000px;}
.y93{bottom:22.710000px;}
.y98{bottom:23.220000px;}
.y90{bottom:23.250000px;}
.yf5{bottom:24.840000px;}
.yf9{bottom:25.380000px;}
.y100{bottom:25.410000px;}
.y2{bottom:30.276000px;}
.y80{bottom:32.430000px;}
.y12d{bottom:37.290000px;}
.y1{bottom:37.800000px;}
.y13d{bottom:37.830000px;}
.y142{bottom:37.836000px;}
.y166{bottom:38.340000px;}
.y154{bottom:38.370000px;}
.y145{bottom:38.376000px;}
.y7f{bottom:41.610000px;}
.y95{bottom:42.120000px;}
.yfe{bottom:45.900000px;}
.yf8{bottom:45.930000px;}
.y13a{bottom:54.570000px;}
.y135{bottom:55.080000px;}
.y13c{bottom:55.110000px;}
.y141{bottom:55.119000px;}
.y16e{bottom:55.620000px;}
.y153{bottom:55.650000px;}
.y144{bottom:55.659000px;}
.y7{bottom:56.736000px;}
.y8{bottom:58.356000px;}
.y139{bottom:71.850000px;}
.y172{bottom:71.859000px;}
.y134{bottom:72.390000px;}
.y140{bottom:72.399000px;}
.y16d{bottom:72.405000px;}
.y152{bottom:72.930000px;}
.y143{bottom:72.939000px;}
.y3b{bottom:88.596000px;}
.y131{bottom:89.130000px;}
.y171{bottom:89.139000px;}
.y133{bottom:89.670000px;}
.y174{bottom:89.679000px;}
.y16c{bottom:89.685000px;}
.y151{bottom:90.210000px;}
.yc7{bottom:91.836000px;}
.y64{bottom:93.996000px;}
.y78{bottom:100.476000px;}
.y113{bottom:101.556000px;}
.y6c{bottom:104.796000px;}
.y3a{bottom:105.876000px;}
.y130{bottom:106.410000px;}
.y170{bottom:106.449000px;}
.y138{bottom:106.455000px;}
.y132{bottom:106.950000px;}
.y16b{bottom:106.965000px;}
.y173{bottom:106.989000px;}
.y13b{bottom:106.995000px;}
.y150{bottom:107.490000px;}
.y13f{bottom:108.036000px;}
.y16f{bottom:110.736000px;}
.y39{bottom:111.276000px;}
.yad{bottom:112.356000px;}
.y199{bottom:113.436000px;}
.y52{bottom:115.056000px;}
.y9e{bottom:118.836000px;}
.y77{bottom:120.996000px;}
.y38{bottom:123.156000px;}
.y168{bottom:123.705000px;}
.y16a{bottom:124.245000px;}
.y14f{bottom:124.275000px;}
.y165{bottom:124.770000px;}
.y63{bottom:125.316000px;}
.y198{bottom:133.992000px;}
.y6b{bottom:135.612000px;}
.y112{bottom:136.692000px;}
.y76{bottom:138.312000px;}
.y167{bottom:140.985000px;}
.yeb{bottom:141.012000px;}
.y14a{bottom:141.015000px;}
.y169{bottom:141.525000px;}
.y14e{bottom:141.555000px;}
.y164{bottom:142.095000px;}
.yc6{bottom:143.712000px;}
.y51{bottom:145.872000px;}
.y9d{bottom:149.652000px;}
.ybd{bottom:150.195000px;}
.y197{bottom:155.055000px;}
.y37{bottom:156.135000px;}
.yea{bottom:158.295000px;}
.y14d{bottom:158.835000px;}
.y111{bottom:159.375000px;}
.yac{bottom:162.615000px;}
.y6a{bottom:166.935000px;}
.ybc{bottom:168.015000px;}
.ye9{bottom:172.875000px;}
.y75{bottom:173.955000px;}
.y149{bottom:175.575000px;}
.y14c{bottom:176.115000px;}
.y163{bottom:176.655000px;}
.y36{bottom:177.195000px;}
.yab{bottom:180.435000px;}
.y9c{bottom:180.975000px;}
.y110{bottom:181.515000px;}
.ybb{bottom:182.055000px;}
.y62{bottom:187.455000px;}
.yc5{bottom:189.615000px;}
.y148{bottom:192.855000px;}
.y14b{bottom:193.395000px;}
.y162{bottom:193.935000px;}
.yaa{bottom:195.015000px;}
.y137{bottom:195.555000px;}
.y196{bottom:196.095000px;}
.y35{bottom:197.715000px;}
.y9b{bottom:200.955000px;}
.y10e{bottom:204.195000px;}
.y50{bottom:207.975000px;}
.y161{bottom:211.215000px;}
.ya9{bottom:217.185000px;}
.y9a{bottom:217.725000px;}
.y34{bottom:218.265000px;}
.yba{bottom:220.965000px;}
.y10d{bottom:226.365000px;}
.y160{bottom:228.525000px;}
.y69{bottom:229.065000px;}
.y99{bottom:232.305000px;}
.yc4{bottom:233.385000px;}
.y195{bottom:237.705000px;}
.y33{bottom:239.325000px;}
.ya8{bottom:239.865000px;}
.yb9{bottom:243.105000px;}
.y15f{bottom:245.805000px;}
.y61{bottom:249.585000px;}
.yc3{bottom:251.205000px;}
.y97{bottom:251.745000px;}
.y10c{bottom:252.285000px;}
.ye8{bottom:256.065000px;}
.y194{bottom:258.225000px;}
.y32{bottom:259.845000px;}
.ya7{bottom:262.005000px;}
.y15e{bottom:263.085000px;}
.yc2{bottom:265.245000px;}
.yb8{bottom:265.785000px;}
.y4f{bottom:270.105000px;}
.ye7{bottom:278.205000px;}
.y193{bottom:279.285000px;}
.y15b{bottom:279.825000px;}
.y31{bottom:280.365000px;}
.ya6{bottom:284.145000px;}
.yc1{bottom:284.685000px;}
.y68{bottom:291.165000px;}
.y10b{bottom:292.245000px;}
.y15a{bottom:296.610000px;}
.y15d{bottom:297.150000px;}
.y192{bottom:299.850000px;}
.ye6{bottom:300.930000px;}
.y30{bottom:301.470000px;}
.ya5{bottom:306.870000px;}
.yc0{bottom:307.410000px;}
.yb7{bottom:308.490000px;}
.y94{bottom:309.570000px;}
.y60{bottom:311.730000px;}
.y159{bottom:313.890000px;}
.y15c{bottom:314.430000px;}
.y12f{bottom:317.130000px;}
.y191{bottom:320.370000px;}
.y2f{bottom:321.990000px;}
.ye5{bottom:323.070000px;}
.y10a{bottom:323.610000px;}
.yb6{bottom:326.310000px;}
.ya4{bottom:329.010000px;}
.y4e{bottom:332.250000px;}
.ybf{bottom:333.330000px;}
.yb5{bottom:340.350000px;}
.y190{bottom:341.430000px;}
.y5f{bottom:342.510000px;}
.ya2{bottom:351.150000px;}
.y67{bottom:352.770000px;}
.y2e{bottom:353.310000px;}
.y109{bottom:354.930000px;}
.y18f{bottom:361.950000px;}
.yb4{bottom:363.030000px;}
.y4d{bottom:363.570000px;}
.ye4{bottom:365.730000px;}
.y92{bottom:367.350000px;}
.ybe{bottom:372.750000px;}
.y2d{bottom:373.290000px;}
.y5e{bottom:373.830000px;}
.y18e{bottom:382.500000px;}
.yb3{bottom:385.200000px;}
.y108{bottom:385.740000px;}
.ye3{bottom:393.300000px;}
.y4c{bottom:394.380000px;}
.y18d{bottom:403.560000px;}
.y66{bottom:404.100000px;}
.y2c{bottom:404.640000px;}
.yb2{bottom:407.340000px;}
.ya1{bottom:412.740000px;}
.ye2{bottom:414.900000px;}
.y19c{bottom:415.440000px;}
.y107{bottom:417.060000px;}
.y158{bottom:422.460000px;}
.y18c{bottom:424.080000px;}
.y91{bottom:425.160000px;}
.y2b{bottom:425.700000px;}
.yb1{bottom:430.020000px;}
.ye1{bottom:435.420000px;}
.y5d{bottom:435.960000px;}
.ya0{bottom:438.660000px;}
.y8f{bottom:444.600000px;}
.y2a{bottom:446.220000px;}
.y106{bottom:447.840000px;}
.yb0{bottom:452.160000px;}
.ye0{bottom:455.940000px;}
.y4b{bottom:456.480000px;}
.y18b{bottom:465.660000px;}
.y9f{bottom:466.230000px;}
.y29{bottom:466.770000px;}
.yaf{bottom:474.870000px;}
.ydf{bottom:477.030000px;}
.y74{bottom:477.570000px;}
.y105{bottom:479.190000px;}
.y8d{bottom:483.510000px;}
.y18a{bottom:486.210000px;}
.y28{bottom:487.830000px;}
.yde{bottom:497.550000px;}
.y5c{bottom:498.090000px;}
.yae{bottom:500.790000px;}
.y8c{bottom:506.730000px;}
.y27{bottom:508.350000px;}
.y104{bottom:509.970000px;}
.y12c{bottom:512.670000px;}
.ydd{bottom:518.070000px;}
.y4a{bottom:518.610000px;}
.y189{bottom:527.790000px;}
.y26{bottom:528.870000px;}
.y12b{bottom:533.190000px;}
.y8b{bottom:535.350000px;}
.ydc{bottom:539.130000px;}
.y73{bottom:539.670000px;}
.y103{bottom:541.290000px;}
.y188{bottom:548.310000px;}
.y25{bottom:549.930000px;}
.ydb{bottom:559.695000px;}
.y5b{bottom:560.235000px;}
.y12a{bottom:564.555000px;}
.y8a{bottom:566.175000px;}
.y187{bottom:568.875000px;}
.y24{bottom:570.495000px;}
.yda{bottom:580.215000px;}
.y49{bottom:580.755000px;}
.y102{bottom:583.995000px;}
.y186{bottom:589.935000px;}
.y23{bottom:591.015000px;}
.y129{bottom:595.335000px;}
.y89{bottom:597.495000px;}
.y72{bottom:601.275000px;}
.y101{bottom:604.515000px;}
.y185{bottom:610.455000px;}
.y22{bottom:612.075000px;}
.yff{bottom:618.555000px;}
.yd9{bottom:621.795000px;}
.y5a{bottom:622.335000px;}
.y128{bottom:626.655000px;}
.y88{bottom:628.275000px;}
.y184{bottom:630.975000px;}
.y21{bottom:632.595000px;}
.yd8{bottom:642.345000px;}
.y48{bottom:642.885000px;}
.y20{bottom:653.145000px;}
.y127{bottom:657.465000px;}
.y87{bottom:659.625000px;}
.yfd{bottom:660.705000px;}
.y183{bottom:662.325000px;}
.y71{bottom:663.405000px;}
.y1f{bottom:674.205000px;}
.y182{bottom:682.305000px;}
.yd7{bottom:683.925000px;}
.y59{bottom:684.465000px;}
.y126{bottom:688.785000px;}
.y86{bottom:690.405000px;}
.y1e{bottom:694.725000px;}
.yd6{bottom:704.445000px;}
.y47{bottom:704.985000px;}
.y181{bottom:714.165000px;}
.y1d{bottom:715.245000px;}
.y125{bottom:719.610000px;}
.y85{bottom:721.770000px;}
.yfb{bottom:723.390000px;}
.y70{bottom:725.550000px;}
.y1c{bottom:736.350000px;}
.y180{bottom:744.990000px;}
.yd5{bottom:746.070000px;}
.y58{bottom:746.610000px;}
.y124{bottom:750.930000px;}
.y157{bottom:751.470000px;}
.y84{bottom:752.550000px;}
.y1b{bottom:756.870000px;}
.yf7{bottom:765.510000px;}
.yd4{bottom:766.590000px;}
.y46{bottom:767.130000px;}
.y17f{bottom:776.310000px;}
.y1a{bottom:777.390000px;}
.y123{bottom:781.710000px;}
.y83{bottom:783.870000px;}
.y6f{bottom:787.650000px;}
.y19{bottom:798.450000px;}
.y17e{bottom:807.120000px;}
.y156{bottom:807.660000px;}
.yd3{bottom:808.200000px;}
.y57{bottom:808.740000px;}
.y122{bottom:812.520000px;}
.y18{bottom:819.000000px;}
.yd2{bottom:828.720000px;}
.y19b{bottom:829.260000px;}
.y121{bottom:833.040000px;}
.y82{bottom:835.740000px;}
.y17d{bottom:838.440000px;}
.y17{bottom:839.520000px;}
.y155{bottom:840.600000px;}
.y45{bottom:849.240000px;}
.y6e{bottom:849.780000px;}
.y81{bottom:855.720000px;}
.y147{bottom:857.880000px;}
.y16{bottom:860.580000px;}
.y120{bottom:864.360000px;}
.y17c{bottom:869.220000px;}
.y7e{bottom:869.760000px;}
.y44{bottom:870.300000px;}
.y56{bottom:870.840000px;}
.y15{bottom:881.100000px;}
.y11f{bottom:884.880000px;}
.yd1{bottom:890.850000px;}
.y43{bottom:891.390000px;}
.y11e{bottom:898.950000px;}
.y17b{bottom:900.570000px;}
.y55{bottom:901.650000px;}
.yf4{bottom:902.730000px;}
.y6d{bottom:911.370000px;}
.y14{bottom:911.910000px;}
.y11d{bottom:921.090000px;}
.yf2{bottom:924.330000px;}
.y7c{bottom:931.350000px;}
.y13{bottom:932.430000px;}
.y42{bottom:932.970000px;}
.y11c{bottom:943.770000px;}
.y41{bottom:952.950000px;}
.y19a{bottom:953.490000px;}
.y17a{bottom:962.130000px;}
.yd0{bottom:963.210000px;}
.y12{bottom:963.750000px;}
.y11b{bottom:965.910000px;}
.y40{bottom:974.055000px;}
.y7b{bottom:976.755000px;}
.ycf{bottom:983.235000px;}
.y10{bottom:984.855000px;}
.yf1{bottom:986.475000px;}
.y11a{bottom:988.635000px;}
.y11{bottom:990.795000px;}
.y179{bottom:993.495000px;}
.y65{bottom:994.575000px;}
.y3f{bottom:995.115000px;}
.yce{bottom:997.815000px;}
.yf0{bottom:1003.755000px;}
.y7a{bottom:1005.375000px;}
.y119{bottom:1010.775000px;}
.yf{bottom:1015.635000px;}
.yef{bottom:1017.795000px;}
.ycd{bottom:1020.495000px;}
.y178{bottom:1024.275000px;}
.y54{bottom:1025.895000px;}
.y118{bottom:1032.915000px;}
.ye{bottom:1036.155000px;}
.ycc{bottom:1043.715000px;}
.y177{bottom:1044.795000px;}
.yed{bottom:1050.195000px;}
.yd{bottom:1057.245000px;}
.y146{bottom:1065.885000px;}
.ycb{bottom:1066.425000px;}
.y79{bottom:1067.505000px;}
.y117{bottom:1068.585000px;}
.yc{bottom:1077.225000px;}
.y3e{bottom:1077.765000px;}
.y176{bottom:1083.165000px;}
.y53{bottom:1088.025000px;}
.yca{bottom:1089.645000px;}
.y116{bottom:1090.725000px;}
.yec{bottom:1092.345000px;}
.yb{bottom:1097.745000px;}
.y3d{bottom:1098.285000px;}
.yc9{bottom:1112.325000px;}
.y115{bottom:1112.865000px;}
.ya{bottom:1118.805000px;}
.y3c{bottom:1119.345000px;}
.y6{bottom:1153.410000px;}
.y5{bottom:1172.310000px;}
.y4{bottom:1193.370000px;}
.h15{height:18.900000px;}
.h26{height:20.520000px;}
.h6{height:21.060000px;}
.h1a{height:21.600000px;}
.h1c{height:21.636000px;}
.h1d{height:22.140000px;}
.h1e{height:22.176000px;}
.h1f{height:28.080000px;}
.h27{height:30.780000px;}
.h24{height:31.320000px;}
.h2a{height:34.596000px;}
.h1b{height:37.836000px;}
.h21{height:38.340000px;}
.h16{height:38.376000px;}
.hd{height:39.183750px;}
.h25{height:39.960000px;}
.h12{height:41.076000px;}
.h29{height:41.580000px;}
.h23{height:41.616000px;}
.h22{height:42.120000px;}
.h2{height:45.396000px;}
.hc{height:46.638281px;}
.h35{height:51.300000px;}
.h2b{height:51.336000px;}
.h32{height:51.876000px;}
.h2c{height:53.717344px;}
.he{height:54.219375px;}
.h20{height:54.421875px;}
.h17{height:56.736000px;}
.h18{height:57.240000px;}
.h19{height:57.276000px;}
.h14{height:59.357813px;}
.hf{height:60.385078px;}
.h11{height:60.952500px;}
.h13{height:61.056000px;}
.h28{height:62.136000px;}
.h8{height:63.309727px;}
.ha{height:63.901406px;}
.h4{height:65.684883px;}
.h3{height:65.717578px;}
.h7{height:67.483125px;}
.h30{height:68.580000px;}
.hb{height:69.957422px;}
.h9{height:71.836875px;}
.h5{height:73.264608px;}
.h10{height:74.203594px;}
.h2f{height:86.436000px;}
.h2d{height:120.456000px;}
.h2e{height:120.492000px;}
.h34{height:189.615000px;}
.h31{height:206.925000px;}
.h33{height:327.930000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w9{width:43.236000px;}
.w24{width:44.280000px;}
.w15{width:47.520000px;}
.w13{width:47.556000px;}
.w26{width:48.060000px;}
.w14{width:48.096000px;}
.w1b{width:48.600000px;}
.w1c{width:48.636000px;}
.w29{width:49.140000px;}
.w28{width:49.176000px;}
.w21{width:50.760000px;}
.w23{width:50.796000px;}
.w22{width:51.336000px;}
.we{width:52.380000px;}
.wb{width:52.416000px;}
.wd{width:52.920000px;}
.wc{width:52.956000px;}
.w8{width:53.460000px;}
.w7{width:53.496000px;}
.w1e{width:54.576000px;}
.w1f{width:55.116000px;}
.w1a{width:55.656000px;}
.w10{width:56.196000px;}
.w11{width:56.736000px;}
.w17{width:61.596000px;}
.w18{width:62.136000px;}
.w2a{width:84.312000px;}
.w6{width:105.912000px;}
.w2f{width:110.232000px;}
.w16{width:115.632000px;}
.w31{width:116.712000px;}
.wa{width:121.032000px;}
.w2c{width:127.512000px;}
.w33{width:137.268000px;}
.w2e{width:139.428000px;}
.w30{width:143.172000px;}
.w25{width:145.332000px;}
.w2b{width:147.492000px;}
.wf{width:165.345000px;}
.w32{width:169.665000px;}
.w2d{width:177.765000px;}
.w20{width:178.845000px;}
.w1d{width:179.385000px;}
.w19{width:211.290000px;}
.w27{width:211.830000px;}
.w12{width:243.150000px;}
.w2{width:282.060000px;}
.w4{width:378.210000px;}
.w5{width:893.159973px;}
.w3{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:4.860000px;}
.x37{left:6.516000px;}
.x36{left:7.596000px;}
.x24{left:9.180000px;}
.x8{left:10.800000px;}
.x38{left:11.913000px;}
.x86{left:13.005000px;}
.x23{left:14.040000px;}
.x47{left:15.660000px;}
.x22{left:16.740000px;}
.x35{left:17.865000px;}
.x49{left:19.440000px;}
.x91{left:21.060000px;}
.x34{left:22.170000px;}
.x45{left:23.253000px;}
.x6d{left:24.300000px;}
.x29{left:25.950000px;}
.x74{left:27.030000px;}
.x48{left:28.080000px;}
.x33{left:30.813000px;}
.xa9{left:31.905000px;}
.x7c{left:32.970000px;}
.x17{left:34.605000px;}
.x4b{left:36.213000px;}
.x57{left:38.373000px;}
.x4a{left:39.993000px;}
.x27{left:42.153000px;}
.x9d{left:44.313000px;}
.x72{left:45.393000px;}
.x2{left:49.170000px;}
.x6a{left:53.493000px;}
.xa6{left:54.573000px;}
.x92{left:56.205000px;}
.x4c{left:57.813000px;}
.x9f{left:58.893000px;}
.x6f{left:63.753000px;}
.x59{left:66.453000px;}
.x58{left:68.073000px;}
.x46{left:69.153000px;}
.x6c{left:71.313000px;}
.x9e{left:72.438000px;}
.x6e{left:73.473000px;}
.x6b{left:79.458000px;}
.x3b{left:82.698000px;}
.x9c{left:85.398000px;}
.xa0{left:88.098000px;}
.x7e{left:89.142000px;}
.x95{left:105.918000px;}
.x7{left:119.412000px;}
.x4e{left:121.578000px;}
.x6{left:127.511987px;}
.x3a{left:128.592000px;}
.x13{left:132.371987px;}
.x94{left:138.852000px;}
.x26{left:141.012000px;}
.x5a{left:144.791987px;}
.x7d{left:149.148000px;}
.x87{left:152.385000px;}
.xc{left:153.464987px;}
.x93{left:155.084987px;}
.x9{left:164.264987px;}
.x16{left:175.605000px;}
.x3{left:177.225000px;}
.x14{left:180.464987px;}
.xa5{left:207.509987px;}
.xa1{left:213.450000px;}
.x71{left:228.569987px;}
.x70{left:233.969987px;}
.xa7{left:239.370000px;}
.x5b{left:245.310000px;}
.x39{left:248.549987px;}
.x28{left:263.130000px;}
.x25{left:277.739987px;}
.x18{left:282.600000px;}
.x3c{left:294.480000px;}
.x88{left:298.260000px;}
.x5c{left:307.440000px;}
.x73{left:309.060000px;}
.x2a{left:316.080000px;}
.x7f{left:329.070000px;}
.x19{left:336.630000px;}
.x63{left:340.950000px;}
.x12{left:343.649987px;}
.x89{left:346.890000px;}
.x4d{left:349.049987px;}
.x3d{left:351.750000px;}
.xa2{left:362.010000px;}
.x75{left:364.170000px;}
.x2b{left:369.570000px;}
.x4f{left:372.810000px;}
.xd{left:374.429987px;}
.x80{left:380.370000px;}
.xa8{left:383.070000px;}
.x1a{left:391.215000px;}
.x8a{left:395.535000px;}
.x64{left:397.695000px;}
.x96{left:400.935000px;}
.xab{left:403.094987px;}
.x3e{left:409.035000px;}
.xa{left:412.274987px;}
.x11{left:418.754987px;}
.x76{left:419.835000px;}
.x50{left:420.915000px;}
.x2c{left:422.535000px;}
.x10{left:428.474987px;}
.x5d{left:432.795000px;}
.x8b{left:444.135000px;}
.x1b{left:445.245000px;}
.x65{left:446.865000px;}
.x97{left:450.645000px;}
.x3f{left:465.765000px;}
.xb{left:467.924987px;}
.x51{left:469.545000px;}
.x2d{left:476.025000px;}
.x81{left:484.125000px;}
.xa3{left:490.065000px;}
.x8c{left:492.765000px;}
.x5e{left:495.465000px;}
.x1c{left:499.785000px;}
.x52{left:518.190000px;}
.x40{left:523.050000px;}
.x1{left:526.830000px;}
.x2e{left:529.530000px;}
.x77{left:530.610000px;}
.x82{left:535.470000px;}
.x8d{left:541.410000px;}
.x66{left:545.190000px;}
.x98{left:550.050000px;}
.x1d{left:553.830000px;}
.x5f{left:558.150000px;}
.x53{left:566.280000px;}
.x41{left:579.780000px;}
.x2f{left:582.480000px;}
.x78{left:586.260000px;}
.x83{left:587.340000px;}
.x8e{left:590.040000px;}
.x67{left:594.360000px;}
.x99{left:599.760000px;}
.x1e{left:608.400000px;}
.x54{left:614.880000px;}
.x60{left:620.820000px;}
.x30{left:635.970000px;}
.x42{left:637.050000px;}
.x84{left:638.670000px;}
.x79{left:641.910000px;}
.x68{left:643.530000px;}
.x9a{left:648.930000px;}
.x1f{left:662.430000px;}
.xa4{left:668.370000px;}
.xaa{left:670.530000px;}
.x61{left:682.995000px;}
.xe{left:685.694987px;}
.x8f{left:686.775000px;}
.x31{left:688.935000px;}
.x85{left:690.555000px;}
.x69{left:692.715000px;}
.x43{left:694.335000px;}
.x7a{left:697.575000px;}
.x9b{left:698.655000px;}
.x55{left:711.615000px;}
.x20{left:717.015000px;}
.x90{left:735.375000px;}
.x32{left:742.425000px;}
.x62{left:745.665000px;}
.x15{left:748.364987px;}
.x44{left:751.065000px;}
.x7b{left:752.685000px;}
.x56{left:760.245000px;}
.x5{left:783.464987px;}
.xf{left:802.409973px;}
.x4{left:808.349987px;}
@media print{
.v4{vertical-align:-74.880000pt;}
.v2{vertical-align:-71.040000pt;}
.v5{vertical-align:-69.130667pt;}
.v3{vertical-align:-63.360000pt;}
.v7{vertical-align:-61.568000pt;}
.v6{vertical-align:-59.680000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls11{letter-spacing:-5.440000pt;}
.ls15{letter-spacing:-3.504000pt;}
.lse{letter-spacing:-1.296000pt;}
.lsa{letter-spacing:-1.253333pt;}
.ls2{letter-spacing:-0.960000pt;}
.ls17{letter-spacing:-0.736000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.333867pt;}
.ls24{letter-spacing:-0.313067pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.021120pt;}
.ls12{letter-spacing:0.313067pt;}
.ls1a{letter-spacing:0.333867pt;}
.ls18{letter-spacing:0.414933pt;}
.lsb{letter-spacing:0.624000pt;}
.ls9{letter-spacing:0.666667pt;}
.ls5{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:1.253333pt;}
.ls8{letter-spacing:1.440000pt;}
.ls0{letter-spacing:1.584000pt;}
.ls25{letter-spacing:1.605333pt;}
.ls21{letter-spacing:2.256000pt;}
.ls13{letter-spacing:2.586667pt;}
.ls10{letter-spacing:2.880000pt;}
.ls23{letter-spacing:3.360000pt;}
.lsc{letter-spacing:4.176000pt;}
.ls22{letter-spacing:5.280000pt;}
.lsf{letter-spacing:15.025920pt;}
.ls6{letter-spacing:24.753920pt;}
.ls7{letter-spacing:172.437333pt;}
.ls19{letter-spacing:174.837333pt;}
.ls16{letter-spacing:176.896000pt;}
.ls14{letter-spacing:191.680000pt;}
.ls20{letter-spacing:220.480000pt;}
.ls1f{letter-spacing:318.997333pt;}
.ls1e{letter-spacing:363.157333pt;}
.ls1d{letter-spacing:549.504000pt;}
.ls1b{letter-spacing:806.890667pt;}
.wse{word-spacing:-18.096000pt;}
.ws10{word-spacing:-17.445333pt;}
.wsc{word-spacing:-16.800000pt;}
.ws4{word-spacing:-16.506667pt;}
.wsd{word-spacing:-16.464000pt;}
.wsb{word-spacing:-16.173867pt;}
.ws7{word-spacing:-16.153067pt;}
.ws5{word-spacing:-15.861120pt;}
.ws2{word-spacing:-15.840000pt;}
.wsf{word-spacing:-15.526933pt;}
.wsa{word-spacing:-15.506133pt;}
.ws1{word-spacing:-14.880000pt;}
.ws6{word-spacing:-14.544000pt;}
.ws9{word-spacing:-14.144000pt;}
.ws0{word-spacing:-13.920000pt;}
.ws8{word-spacing:-13.440000pt;}
.ws3{word-spacing:0.000000pt;}
._6{margin-left:-9.307947pt;}
._18{margin-left:-7.890773pt;}
._16{margin-left:-6.177067pt;}
._2{margin-left:-4.821120pt;}
._4{margin-left:-3.736747pt;}
._1{margin-left:-2.095573pt;}
._0{margin-left:-1.130880pt;}
._3{width:1.327573pt;}
._5{width:2.982613pt;}
._a{width:4.747307pt;}
._9{width:5.827200pt;}
._8{width:7.469867pt;}
._7{width:9.104640pt;}
._c{width:10.239787pt;}
._b{width:11.334827pt;}
._1b{width:12.852480pt;}
._1c{width:13.796907pt;}
._15{width:14.800640pt;}
._17{width:16.180693pt;}
._14{width:17.224960pt;}
._e{width:18.367787pt;}
._d{width:19.261440pt;}
._f{width:20.211840pt;}
._10{width:21.364267pt;}
._19{width:22.958933pt;}
._13{width:24.376320pt;}
._12{width:25.641600pt;}
._11{width:27.115520pt;}
._1a{width:28.448640pt;}
._1d{width:30.225707pt;}
._1e{width:31.358293pt;}
._1f{width:32.828160pt;}
._20{width:34.158293pt;}
._22{width:38.142720pt;}
._23{width:39.433173pt;}
._21{width:40.350720pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.240000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.760000pt;}
.fs0{font-size:59.520000pt;}
.fs1{font-size:63.360000pt;}
.y0{bottom:0.000000pt;}
.y10f{bottom:2.880000pt;}
.y8e{bottom:3.360000pt;}
.ya3{bottom:3.840000pt;}
.yfa{bottom:4.320000pt;}
.y9{bottom:5.280000pt;}
.y3{bottom:8.672000pt;}
.yc8{bottom:11.520000pt;}
.yee{bottom:11.546667pt;}
.y7d{bottom:12.000000pt;}
.yf3{bottom:12.480000pt;}
.yf6{bottom:12.960000pt;}
.yfc{bottom:13.440000pt;}
.y12e{bottom:17.760000pt;}
.y114{bottom:18.240000pt;}
.y136{bottom:18.720000pt;}
.y13e{bottom:18.746667pt;}
.y175{bottom:18.752000pt;}
.y96{bottom:20.160000pt;}
.y93{bottom:20.186667pt;}
.y98{bottom:20.640000pt;}
.y90{bottom:20.666667pt;}
.yf5{bottom:22.080000pt;}
.yf9{bottom:22.560000pt;}
.y100{bottom:22.586667pt;}
.y2{bottom:26.912000pt;}
.y80{bottom:28.826667pt;}
.y12d{bottom:33.146667pt;}
.y1{bottom:33.600000pt;}
.y13d{bottom:33.626667pt;}
.y142{bottom:33.632000pt;}
.y166{bottom:34.080000pt;}
.y154{bottom:34.106667pt;}
.y145{bottom:34.112000pt;}
.y7f{bottom:36.986667pt;}
.y95{bottom:37.440000pt;}
.yfe{bottom:40.800000pt;}
.yf8{bottom:40.826667pt;}
.y13a{bottom:48.506667pt;}
.y135{bottom:48.960000pt;}
.y13c{bottom:48.986667pt;}
.y141{bottom:48.994667pt;}
.y16e{bottom:49.440000pt;}
.y153{bottom:49.466667pt;}
.y144{bottom:49.474667pt;}
.y7{bottom:50.432000pt;}
.y8{bottom:51.872000pt;}
.y139{bottom:63.866667pt;}
.y172{bottom:63.874667pt;}
.y134{bottom:64.346667pt;}
.y140{bottom:64.354667pt;}
.y16d{bottom:64.360000pt;}
.y152{bottom:64.826667pt;}
.y143{bottom:64.834667pt;}
.y3b{bottom:78.752000pt;}
.y131{bottom:79.226667pt;}
.y171{bottom:79.234667pt;}
.y133{bottom:79.706667pt;}
.y174{bottom:79.714667pt;}
.y16c{bottom:79.720000pt;}
.y151{bottom:80.186667pt;}
.yc7{bottom:81.632000pt;}
.y64{bottom:83.552000pt;}
.y78{bottom:89.312000pt;}
.y113{bottom:90.272000pt;}
.y6c{bottom:93.152000pt;}
.y3a{bottom:94.112000pt;}
.y130{bottom:94.586667pt;}
.y170{bottom:94.621333pt;}
.y138{bottom:94.626667pt;}
.y132{bottom:95.066667pt;}
.y16b{bottom:95.080000pt;}
.y173{bottom:95.101333pt;}
.y13b{bottom:95.106667pt;}
.y150{bottom:95.546667pt;}
.y13f{bottom:96.032000pt;}
.y16f{bottom:98.432000pt;}
.y39{bottom:98.912000pt;}
.yad{bottom:99.872000pt;}
.y199{bottom:100.832000pt;}
.y52{bottom:102.272000pt;}
.y9e{bottom:105.632000pt;}
.y77{bottom:107.552000pt;}
.y38{bottom:109.472000pt;}
.y168{bottom:109.960000pt;}
.y16a{bottom:110.440000pt;}
.y14f{bottom:110.466667pt;}
.y165{bottom:110.906667pt;}
.y63{bottom:111.392000pt;}
.y198{bottom:119.104000pt;}
.y6b{bottom:120.544000pt;}
.y112{bottom:121.504000pt;}
.y76{bottom:122.944000pt;}
.y167{bottom:125.320000pt;}
.yeb{bottom:125.344000pt;}
.y14a{bottom:125.346667pt;}
.y169{bottom:125.800000pt;}
.y14e{bottom:125.826667pt;}
.y164{bottom:126.306667pt;}
.yc6{bottom:127.744000pt;}
.y51{bottom:129.664000pt;}
.y9d{bottom:133.024000pt;}
.ybd{bottom:133.506667pt;}
.y197{bottom:137.826667pt;}
.y37{bottom:138.786667pt;}
.yea{bottom:140.706667pt;}
.y14d{bottom:141.186667pt;}
.y111{bottom:141.666667pt;}
.yac{bottom:144.546667pt;}
.y6a{bottom:148.386667pt;}
.ybc{bottom:149.346667pt;}
.ye9{bottom:153.666667pt;}
.y75{bottom:154.626667pt;}
.y149{bottom:156.066667pt;}
.y14c{bottom:156.546667pt;}
.y163{bottom:157.026667pt;}
.y36{bottom:157.506667pt;}
.yab{bottom:160.386667pt;}
.y9c{bottom:160.866667pt;}
.y110{bottom:161.346667pt;}
.ybb{bottom:161.826667pt;}
.y62{bottom:166.626667pt;}
.yc5{bottom:168.546667pt;}
.y148{bottom:171.426667pt;}
.y14b{bottom:171.906667pt;}
.y162{bottom:172.386667pt;}
.yaa{bottom:173.346667pt;}
.y137{bottom:173.826667pt;}
.y196{bottom:174.306667pt;}
.y35{bottom:175.746667pt;}
.y9b{bottom:178.626667pt;}
.y10e{bottom:181.506667pt;}
.y50{bottom:184.866667pt;}
.y161{bottom:187.746667pt;}
.ya9{bottom:193.053333pt;}
.y9a{bottom:193.533333pt;}
.y34{bottom:194.013333pt;}
.yba{bottom:196.413333pt;}
.y10d{bottom:201.213333pt;}
.y160{bottom:203.133333pt;}
.y69{bottom:203.613333pt;}
.y99{bottom:206.493333pt;}
.yc4{bottom:207.453333pt;}
.y195{bottom:211.293333pt;}
.y33{bottom:212.733333pt;}
.ya8{bottom:213.213333pt;}
.yb9{bottom:216.093333pt;}
.y15f{bottom:218.493333pt;}
.y61{bottom:221.853333pt;}
.yc3{bottom:223.293333pt;}
.y97{bottom:223.773333pt;}
.y10c{bottom:224.253333pt;}
.ye8{bottom:227.613333pt;}
.y194{bottom:229.533333pt;}
.y32{bottom:230.973333pt;}
.ya7{bottom:232.893333pt;}
.y15e{bottom:233.853333pt;}
.yc2{bottom:235.773333pt;}
.yb8{bottom:236.253333pt;}
.y4f{bottom:240.093333pt;}
.ye7{bottom:247.293333pt;}
.y193{bottom:248.253333pt;}
.y15b{bottom:248.733333pt;}
.y31{bottom:249.213333pt;}
.ya6{bottom:252.573333pt;}
.yc1{bottom:253.053333pt;}
.y68{bottom:258.813333pt;}
.y10b{bottom:259.773333pt;}
.y15a{bottom:263.653333pt;}
.y15d{bottom:264.133333pt;}
.y192{bottom:266.533333pt;}
.ye6{bottom:267.493333pt;}
.y30{bottom:267.973333pt;}
.ya5{bottom:272.773333pt;}
.yc0{bottom:273.253333pt;}
.yb7{bottom:274.213333pt;}
.y94{bottom:275.173333pt;}
.y60{bottom:277.093333pt;}
.y159{bottom:279.013333pt;}
.y15c{bottom:279.493333pt;}
.y12f{bottom:281.893333pt;}
.y191{bottom:284.773333pt;}
.y2f{bottom:286.213333pt;}
.ye5{bottom:287.173333pt;}
.y10a{bottom:287.653333pt;}
.yb6{bottom:290.053333pt;}
.ya4{bottom:292.453333pt;}
.y4e{bottom:295.333333pt;}
.ybf{bottom:296.293333pt;}
.yb5{bottom:302.533333pt;}
.y190{bottom:303.493333pt;}
.y5f{bottom:304.453333pt;}
.ya2{bottom:312.133333pt;}
.y67{bottom:313.573333pt;}
.y2e{bottom:314.053333pt;}
.y109{bottom:315.493333pt;}
.y18f{bottom:321.733333pt;}
.yb4{bottom:322.693333pt;}
.y4d{bottom:323.173333pt;}
.ye4{bottom:325.093333pt;}
.y92{bottom:326.533333pt;}
.ybe{bottom:331.333333pt;}
.y2d{bottom:331.813333pt;}
.y5e{bottom:332.293333pt;}
.y18e{bottom:340.000000pt;}
.yb3{bottom:342.400000pt;}
.y108{bottom:342.880000pt;}
.ye3{bottom:349.600000pt;}
.y4c{bottom:350.560000pt;}
.y18d{bottom:358.720000pt;}
.y66{bottom:359.200000pt;}
.y2c{bottom:359.680000pt;}
.yb2{bottom:362.080000pt;}
.ya1{bottom:366.880000pt;}
.ye2{bottom:368.800000pt;}
.y19c{bottom:369.280000pt;}
.y107{bottom:370.720000pt;}
.y158{bottom:375.520000pt;}
.y18c{bottom:376.960000pt;}
.y91{bottom:377.920000pt;}
.y2b{bottom:378.400000pt;}
.yb1{bottom:382.240000pt;}
.ye1{bottom:387.040000pt;}
.y5d{bottom:387.520000pt;}
.ya0{bottom:389.920000pt;}
.y8f{bottom:395.200000pt;}
.y2a{bottom:396.640000pt;}
.y106{bottom:398.080000pt;}
.yb0{bottom:401.920000pt;}
.ye0{bottom:405.280000pt;}
.y4b{bottom:405.760000pt;}
.y18b{bottom:413.920000pt;}
.y9f{bottom:414.426667pt;}
.y29{bottom:414.906667pt;}
.yaf{bottom:422.106667pt;}
.ydf{bottom:424.026667pt;}
.y74{bottom:424.506667pt;}
.y105{bottom:425.946667pt;}
.y8d{bottom:429.786667pt;}
.y18a{bottom:432.186667pt;}
.y28{bottom:433.626667pt;}
.yde{bottom:442.266667pt;}
.y5c{bottom:442.746667pt;}
.yae{bottom:445.146667pt;}
.y8c{bottom:450.426667pt;}
.y27{bottom:451.866667pt;}
.y104{bottom:453.306667pt;}
.y12c{bottom:455.706667pt;}
.ydd{bottom:460.506667pt;}
.y4a{bottom:460.986667pt;}
.y189{bottom:469.146667pt;}
.y26{bottom:470.106667pt;}
.y12b{bottom:473.946667pt;}
.y8b{bottom:475.866667pt;}
.ydc{bottom:479.226667pt;}
.y73{bottom:479.706667pt;}
.y103{bottom:481.146667pt;}
.y188{bottom:487.386667pt;}
.y25{bottom:488.826667pt;}
.ydb{bottom:497.506667pt;}
.y5b{bottom:497.986667pt;}
.y12a{bottom:501.826667pt;}
.y8a{bottom:503.266667pt;}
.y187{bottom:505.666667pt;}
.y24{bottom:507.106667pt;}
.yda{bottom:515.746667pt;}
.y49{bottom:516.226667pt;}
.y102{bottom:519.106667pt;}
.y186{bottom:524.386667pt;}
.y23{bottom:525.346667pt;}
.y129{bottom:529.186667pt;}
.y89{bottom:531.106667pt;}
.y72{bottom:534.466667pt;}
.y101{bottom:537.346667pt;}
.y185{bottom:542.626667pt;}
.y22{bottom:544.066667pt;}
.yff{bottom:549.826667pt;}
.yd9{bottom:552.706667pt;}
.y5a{bottom:553.186667pt;}
.y128{bottom:557.026667pt;}
.y88{bottom:558.466667pt;}
.y184{bottom:560.866667pt;}
.y21{bottom:562.306667pt;}
.yd8{bottom:570.973333pt;}
.y48{bottom:571.453333pt;}
.y20{bottom:580.573333pt;}
.y127{bottom:584.413333pt;}
.y87{bottom:586.333333pt;}
.yfd{bottom:587.293333pt;}
.y183{bottom:588.733333pt;}
.y71{bottom:589.693333pt;}
.y1f{bottom:599.293333pt;}
.y182{bottom:606.493333pt;}
.yd7{bottom:607.933333pt;}
.y59{bottom:608.413333pt;}
.y126{bottom:612.253333pt;}
.y86{bottom:613.693333pt;}
.y1e{bottom:617.533333pt;}
.yd6{bottom:626.173333pt;}
.y47{bottom:626.653333pt;}
.y181{bottom:634.813333pt;}
.y1d{bottom:635.773333pt;}
.y125{bottom:639.653333pt;}
.y85{bottom:641.573333pt;}
.yfb{bottom:643.013333pt;}
.y70{bottom:644.933333pt;}
.y1c{bottom:654.533333pt;}
.y180{bottom:662.213333pt;}
.yd5{bottom:663.173333pt;}
.y58{bottom:663.653333pt;}
.y124{bottom:667.493333pt;}
.y157{bottom:667.973333pt;}
.y84{bottom:668.933333pt;}
.y1b{bottom:672.773333pt;}
.yf7{bottom:680.453333pt;}
.yd4{bottom:681.413333pt;}
.y46{bottom:681.893333pt;}
.y17f{bottom:690.053333pt;}
.y1a{bottom:691.013333pt;}
.y123{bottom:694.853333pt;}
.y83{bottom:696.773333pt;}
.y6f{bottom:700.133333pt;}
.y19{bottom:709.733333pt;}
.y17e{bottom:717.440000pt;}
.y156{bottom:717.920000pt;}
.yd3{bottom:718.400000pt;}
.y57{bottom:718.880000pt;}
.y122{bottom:722.240000pt;}
.y18{bottom:728.000000pt;}
.yd2{bottom:736.640000pt;}
.y19b{bottom:737.120000pt;}
.y121{bottom:740.480000pt;}
.y82{bottom:742.880000pt;}
.y17d{bottom:745.280000pt;}
.y17{bottom:746.240000pt;}
.y155{bottom:747.200000pt;}
.y45{bottom:754.880000pt;}
.y6e{bottom:755.360000pt;}
.y81{bottom:760.640000pt;}
.y147{bottom:762.560000pt;}
.y16{bottom:764.960000pt;}
.y120{bottom:768.320000pt;}
.y17c{bottom:772.640000pt;}
.y7e{bottom:773.120000pt;}
.y44{bottom:773.600000pt;}
.y56{bottom:774.080000pt;}
.y15{bottom:783.200000pt;}
.y11f{bottom:786.560000pt;}
.yd1{bottom:791.866667pt;}
.y43{bottom:792.346667pt;}
.y11e{bottom:799.066667pt;}
.y17b{bottom:800.506667pt;}
.y55{bottom:801.466667pt;}
.yf4{bottom:802.426667pt;}
.y6d{bottom:810.106667pt;}
.y14{bottom:810.586667pt;}
.y11d{bottom:818.746667pt;}
.yf2{bottom:821.626667pt;}
.y7c{bottom:827.866667pt;}
.y13{bottom:828.826667pt;}
.y42{bottom:829.306667pt;}
.y11c{bottom:838.906667pt;}
.y41{bottom:847.066667pt;}
.y19a{bottom:847.546667pt;}
.y17a{bottom:855.226667pt;}
.yd0{bottom:856.186667pt;}
.y12{bottom:856.666667pt;}
.y11b{bottom:858.586667pt;}
.y40{bottom:865.826667pt;}
.y7b{bottom:868.226667pt;}
.ycf{bottom:873.986667pt;}
.y10{bottom:875.426667pt;}
.yf1{bottom:876.866667pt;}
.y11a{bottom:878.786667pt;}
.y11{bottom:880.706667pt;}
.y179{bottom:883.106667pt;}
.y65{bottom:884.066667pt;}
.y3f{bottom:884.546667pt;}
.yce{bottom:886.946667pt;}
.yf0{bottom:892.226667pt;}
.y7a{bottom:893.666667pt;}
.y119{bottom:898.466667pt;}
.yf{bottom:902.786667pt;}
.yef{bottom:904.706667pt;}
.ycd{bottom:907.106667pt;}
.y178{bottom:910.466667pt;}
.y54{bottom:911.906667pt;}
.y118{bottom:918.146667pt;}
.ye{bottom:921.026667pt;}
.ycc{bottom:927.746667pt;}
.y177{bottom:928.706667pt;}
.yed{bottom:933.506667pt;}
.yd{bottom:939.773333pt;}
.y146{bottom:947.453333pt;}
.ycb{bottom:947.933333pt;}
.y79{bottom:948.893333pt;}
.y117{bottom:949.853333pt;}
.yc{bottom:957.533333pt;}
.y3e{bottom:958.013333pt;}
.y176{bottom:962.813333pt;}
.y53{bottom:967.133333pt;}
.yca{bottom:968.573333pt;}
.y116{bottom:969.533333pt;}
.yec{bottom:970.973333pt;}
.yb{bottom:975.773333pt;}
.y3d{bottom:976.253333pt;}
.yc9{bottom:988.733333pt;}
.y115{bottom:989.213333pt;}
.ya{bottom:994.493333pt;}
.y3c{bottom:994.973333pt;}
.y6{bottom:1025.253333pt;}
.y5{bottom:1042.053333pt;}
.y4{bottom:1060.773333pt;}
.h15{height:16.800000pt;}
.h26{height:18.240000pt;}
.h6{height:18.720000pt;}
.h1a{height:19.200000pt;}
.h1c{height:19.232000pt;}
.h1d{height:19.680000pt;}
.h1e{height:19.712000pt;}
.h1f{height:24.960000pt;}
.h27{height:27.360000pt;}
.h24{height:27.840000pt;}
.h2a{height:30.752000pt;}
.h1b{height:33.632000pt;}
.h21{height:34.080000pt;}
.h16{height:34.112000pt;}
.hd{height:34.830000pt;}
.h25{height:35.520000pt;}
.h12{height:36.512000pt;}
.h29{height:36.960000pt;}
.h23{height:36.992000pt;}
.h22{height:37.440000pt;}
.h2{height:40.352000pt;}
.hc{height:41.456250pt;}
.h35{height:45.600000pt;}
.h2b{height:45.632000pt;}
.h32{height:46.112000pt;}
.h2c{height:47.748750pt;}
.he{height:48.195000pt;}
.h20{height:48.375000pt;}
.h17{height:50.432000pt;}
.h18{height:50.880000pt;}
.h19{height:50.912000pt;}
.h14{height:52.762500pt;}
.hf{height:53.675625pt;}
.h11{height:54.180000pt;}
.h13{height:54.272000pt;}
.h28{height:55.232000pt;}
.h8{height:56.275312pt;}
.ha{height:56.801250pt;}
.h4{height:58.386563pt;}
.h3{height:58.415625pt;}
.h7{height:59.985000pt;}
.h30{height:60.960000pt;}
.hb{height:62.184375pt;}
.h9{height:63.855000pt;}
.h5{height:65.124096pt;}
.h10{height:65.958750pt;}
.h2f{height:76.832000pt;}
.h2d{height:107.072000pt;}
.h2e{height:107.104000pt;}
.h34{height:168.546667pt;}
.h31{height:183.933333pt;}
.h33{height:291.493333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w9{width:38.432000pt;}
.w24{width:39.360000pt;}
.w15{width:42.240000pt;}
.w13{width:42.272000pt;}
.w26{width:42.720000pt;}
.w14{width:42.752000pt;}
.w1b{width:43.200000pt;}
.w1c{width:43.232000pt;}
.w29{width:43.680000pt;}
.w28{width:43.712000pt;}
.w21{width:45.120000pt;}
.w23{width:45.152000pt;}
.w22{width:45.632000pt;}
.we{width:46.560000pt;}
.wb{width:46.592000pt;}
.wd{width:47.040000pt;}
.wc{width:47.072000pt;}
.w8{width:47.520000pt;}
.w7{width:47.552000pt;}
.w1e{width:48.512000pt;}
.w1f{width:48.992000pt;}
.w1a{width:49.472000pt;}
.w10{width:49.952000pt;}
.w11{width:50.432000pt;}
.w17{width:54.752000pt;}
.w18{width:55.232000pt;}
.w2a{width:74.944000pt;}
.w6{width:94.144000pt;}
.w2f{width:97.984000pt;}
.w16{width:102.784000pt;}
.w31{width:103.744000pt;}
.wa{width:107.584000pt;}
.w2c{width:113.344000pt;}
.w33{width:122.016000pt;}
.w2e{width:123.936000pt;}
.w30{width:127.264000pt;}
.w25{width:129.184000pt;}
.w2b{width:131.104000pt;}
.wf{width:146.973333pt;}
.w32{width:150.813333pt;}
.w2d{width:158.013333pt;}
.w20{width:158.973333pt;}
.w1d{width:159.453333pt;}
.w19{width:187.813333pt;}
.w27{width:188.293333pt;}
.w12{width:216.133333pt;}
.w2{width:250.720000pt;}
.w4{width:336.186667pt;}
.w5{width:793.919976pt;}
.w3{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:4.320000pt;}
.x37{left:5.792000pt;}
.x36{left:6.752000pt;}
.x24{left:8.160000pt;}
.x8{left:9.600000pt;}
.x38{left:10.589333pt;}
.x86{left:11.560000pt;}
.x23{left:12.480000pt;}
.x47{left:13.920000pt;}
.x22{left:14.880000pt;}
.x35{left:15.880000pt;}
.x49{left:17.280000pt;}
.x91{left:18.720000pt;}
.x34{left:19.706667pt;}
.x45{left:20.669333pt;}
.x6d{left:21.600000pt;}
.x29{left:23.066667pt;}
.x74{left:24.026667pt;}
.x48{left:24.960000pt;}
.x33{left:27.389333pt;}
.xa9{left:28.360000pt;}
.x7c{left:29.306667pt;}
.x17{left:30.760000pt;}
.x4b{left:32.189333pt;}
.x57{left:34.109333pt;}
.x4a{left:35.549333pt;}
.x27{left:37.469333pt;}
.x9d{left:39.389333pt;}
.x72{left:40.349333pt;}
.x2{left:43.706667pt;}
.x6a{left:47.549333pt;}
.xa6{left:48.509333pt;}
.x92{left:49.960000pt;}
.x4c{left:51.389333pt;}
.x9f{left:52.349333pt;}
.x6f{left:56.669333pt;}
.x59{left:59.069333pt;}
.x58{left:60.509333pt;}
.x46{left:61.469333pt;}
.x6c{left:63.389333pt;}
.x9e{left:64.389333pt;}
.x6e{left:65.309333pt;}
.x6b{left:70.629333pt;}
.x3b{left:73.509333pt;}
.x9c{left:75.909333pt;}
.xa0{left:78.309333pt;}
.x7e{left:79.237333pt;}
.x95{left:94.149333pt;}
.x7{left:106.144000pt;}
.x4e{left:108.069333pt;}
.x6{left:113.343988pt;}
.x3a{left:114.304000pt;}
.x13{left:117.663988pt;}
.x94{left:123.424000pt;}
.x26{left:125.344000pt;}
.x5a{left:128.703988pt;}
.x7d{left:132.576000pt;}
.x87{left:135.453333pt;}
.xc{left:136.413322pt;}
.x93{left:137.853322pt;}
.x9{left:146.013322pt;}
.x16{left:156.093333pt;}
.x3{left:157.533333pt;}
.x14{left:160.413322pt;}
.xa5{left:184.453322pt;}
.xa1{left:189.733333pt;}
.x71{left:203.173322pt;}
.x70{left:207.973322pt;}
.xa7{left:212.773333pt;}
.x5b{left:218.053333pt;}
.x39{left:220.933322pt;}
.x28{left:233.893333pt;}
.x25{left:246.879988pt;}
.x18{left:251.200000pt;}
.x3c{left:261.760000pt;}
.x88{left:265.120000pt;}
.x5c{left:273.280000pt;}
.x73{left:274.720000pt;}
.x2a{left:280.960000pt;}
.x7f{left:292.506667pt;}
.x19{left:299.226667pt;}
.x63{left:303.066667pt;}
.x12{left:305.466655pt;}
.x89{left:308.346667pt;}
.x4d{left:310.266655pt;}
.x3d{left:312.666667pt;}
.xa2{left:321.786667pt;}
.x75{left:323.706667pt;}
.x2b{left:328.506667pt;}
.x4f{left:331.386667pt;}
.xd{left:332.826655pt;}
.x80{left:338.106667pt;}
.xa8{left:340.506667pt;}
.x1a{left:347.746667pt;}
.x8a{left:351.586667pt;}
.x64{left:353.506667pt;}
.x96{left:356.386667pt;}
.xab{left:358.306655pt;}
.x3e{left:363.586667pt;}
.xa{left:366.466655pt;}
.x11{left:372.226655pt;}
.x76{left:373.186667pt;}
.x50{left:374.146667pt;}
.x2c{left:375.586667pt;}
.x10{left:380.866655pt;}
.x5d{left:384.706667pt;}
.x8b{left:394.786667pt;}
.x1b{left:395.773333pt;}
.x65{left:397.213333pt;}
.x97{left:400.573333pt;}
.x3f{left:414.013333pt;}
.xb{left:415.933322pt;}
.x51{left:417.373333pt;}
.x2d{left:423.133333pt;}
.x81{left:430.333333pt;}
.xa3{left:435.613333pt;}
.x8c{left:438.013333pt;}
.x5e{left:440.413333pt;}
.x1c{left:444.253333pt;}
.x52{left:460.613333pt;}
.x40{left:464.933333pt;}
.x1{left:468.293333pt;}
.x2e{left:470.693333pt;}
.x77{left:471.653333pt;}
.x82{left:475.973333pt;}
.x8d{left:481.253333pt;}
.x66{left:484.613333pt;}
.x98{left:488.933333pt;}
.x1d{left:492.293333pt;}
.x5f{left:496.133333pt;}
.x53{left:503.360000pt;}
.x41{left:515.360000pt;}
.x2f{left:517.760000pt;}
.x78{left:521.120000pt;}
.x83{left:522.080000pt;}
.x8e{left:524.480000pt;}
.x67{left:528.320000pt;}
.x99{left:533.120000pt;}
.x1e{left:540.800000pt;}
.x54{left:546.560000pt;}
.x60{left:551.840000pt;}
.x30{left:565.306667pt;}
.x42{left:566.266667pt;}
.x84{left:567.706667pt;}
.x79{left:570.586667pt;}
.x68{left:572.026667pt;}
.x9a{left:576.826667pt;}
.x1f{left:588.826667pt;}
.xa4{left:594.106667pt;}
.xaa{left:596.026667pt;}
.x61{left:607.106667pt;}
.xe{left:609.506655pt;}
.x8f{left:610.466667pt;}
.x31{left:612.386667pt;}
.x85{left:613.826667pt;}
.x69{left:615.746667pt;}
.x43{left:617.186667pt;}
.x7a{left:620.066667pt;}
.x9b{left:621.026667pt;}
.x55{left:632.546667pt;}
.x20{left:637.346667pt;}
.x90{left:653.666667pt;}
.x32{left:659.933333pt;}
.x62{left:662.813333pt;}
.x15{left:665.213322pt;}
.x44{left:667.613333pt;}
.x7b{left:669.053333pt;}
.x56{left:675.773333pt;}
.x5{left:696.413322pt;}
.xf{left:713.253310pt;}
.x4{left:718.533322pt;}
}




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