
    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_2abd5c9641559e8262761591.woff')format("woff");}.ff1{font-family:ff1;line-height:0.951172;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_bfc90bf47f61181465b9c1b1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.019000;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_4ad69737a9e9554ba5fb6a5e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.006250;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_308ab12a4af20e974fdb26f5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_2eb42a245b67844e4198937a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.157000;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_5a8beab056be98eb190d42d4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ce57de6b846c57d284260cd1.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e88a05fbcc9f829cc9309398.woff')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_9c36a8ea479c7daafaa2922f.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3b6acf46cd9a68e3d692e263.woff')format("woff");}.ffa{font-family:ffa;line-height:1.178000;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_ad4b381619af41f665b12cc7.woff')format("woff");}.ffb{font-family:ffb;line-height:1.096680;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_e1e5ca3c41b36f9da5230b38.woff')format("woff");}.ffc{font-family:ffc;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d31de7dd18bf49cc8a782ee4.woff')format("woff");}.ffd{font-family:ffd;line-height:1.088379;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_175c6505fbf680fdc8269140.woff')format("woff");}.ffe{font-family:ffe;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0a937aacacbe879b2e50e401.woff')format("woff");}.fff{font-family:fff;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.618000px;}
.ls2{letter-spacing:-0.334200px;}
.lsd{letter-spacing:-0.291600px;}
.lsf{letter-spacing:-0.260400px;}
.ls7{letter-spacing:-0.109200px;}
.ls11{letter-spacing:-0.107400px;}
.lsb{letter-spacing:-0.058320px;}
.ls13{letter-spacing:-0.052560px;}
.ls12{letter-spacing:-0.046800px;}
.ls16{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.023040px;}
.ls15{letter-spacing:0.063600px;}
.ls3{letter-spacing:0.100800px;}
.ls10{letter-spacing:0.126600px;}
.ls14{letter-spacing:0.195000px;}
.lsc{letter-spacing:0.198000px;}
.lsa{letter-spacing:0.209400px;}
.ls5{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.302400px;}
.ls9{letter-spacing:0.319680px;}
.lse{letter-spacing:0.357000px;}
.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;}
}
.ws5{word-spacing:-31.680000px;}
.ws1{word-spacing:-15.272640px;}
.ws6{word-spacing:-14.673600px;}
.wsa{word-spacing:-14.595840px;}
.ws7{word-spacing:-14.572800px;}
.wsb{word-spacing:-14.463600px;}
.ws4{word-spacing:-14.319360px;}
.ws8{word-spacing:-14.238600px;}
.ws3{word-spacing:-13.985160px;}
.ws12{word-spacing:-13.504200px;}
.wsc{word-spacing:-13.356600px;}
.ws10{word-spacing:-13.345200px;}
.ws17{word-spacing:-13.342200px;}
.ws14{word-spacing:-13.273800px;}
.wsf{word-spacing:-13.160160px;}
.wsd{word-spacing:-13.147200px;}
.ws18{word-spacing:-13.128480px;}
.ws15{word-spacing:-13.100400px;}
.ws16{word-spacing:-13.094640px;}
.wse{word-spacing:-13.088880px;}
.ws13{word-spacing:-13.039800px;}
.ws11{word-spacing:-12.886800px;}
.ws9{word-spacing:-11.952000px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:2158.268160px;}
._2{margin-left:-13.668480px;}
._4{margin-left:-11.577600px;}
._5{margin-left:-10.118880px;}
._6{margin-left:-8.909280px;}
._3{margin-left:-7.146720px;}
._1{margin-left:-5.384160px;}
._8{margin-left:-4.161600px;}
._9{margin-left:-3.159360px;}
._0{margin-left:-1.200960px;}
._7{width:1.017120px;}
._e{width:2.074800px;}
._d{width:3.141120px;}
._11{width:4.777920px;}
._15{width:6.690240px;}
._c{width:8.314560px;}
._b{width:9.803520px;}
._14{width:10.857120px;}
._13{width:12.810240px;}
._17{width:15.906240px;}
._a{width:17.354880px;}
._18{width:18.523680px;}
._16{width:20.070720px;}
._10{width:21.395520px;}
._f{width:22.786560px;}
._2c{width:23.788800px;}
._1a{width:24.906240px;}
._1b{width:25.908480px;}
._1e{width:27.626400px;}
._12{width:29.145600px;}
._19{width:30.332640px;}
._28{width:31.970400px;}
._1d{width:33.286320px;}
._22{width:37.051200px;}
._24{width:38.783040px;}
._25{width:39.861120px;}
._29{width:44.640720px;}
._23{width:47.389680px;}
._26{width:48.883680px;}
._30{width:52.230240px;}
._21{width:54.441360px;}
._1f{width:57.250080px;}
._20{width:58.862400px;}
._2b{width:73.982880px;}
._2a{width:76.552560px;}
._33{width:78.524640px;}
._2d{width:82.588320px;}
._2f{width:95.795280px;}
._32{width:120.056640px;}
._27{width:132.129360px;}
._31{width:159.499440px;}
._2e{width:160.694640px;}
._1c{width:173.244240px;}
._35{width:174.556560px;}
._34{width:182.746080px;}
.fc8{color:rgb(84,119,231);}
.fc7{color:rgb(17,85,204);}
.fc6{color:rgb(54,95,145);}
.fc9{color:rgb(149,79,114);}
.fc5{color:rgb(90,94,234);}
.fc4{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc3{color:rgb(73,73,73);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:33.401795px;}
.fsd{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fse{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:96.021179px;}
.fs6{font-size:102.240000px;}
.fs8{font-size:108.000000px;}
.fsb{font-size:120.240000px;}
.fs1{font-size:132.034748px;}
.fsa{font-size:144.000000px;}
.fs9{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.000021px;}
.y2{bottom:2.120840px;}
.y143{bottom:3.420000px;}
.y1ad{bottom:3.450000px;}
.y1a3{bottom:3.465000px;}
.yde{bottom:3.600000px;}
.ye0{bottom:3.780000px;}
.y3c{bottom:4.140000px;}
.y2b{bottom:4.500000px;}
.y13{bottom:4.860000px;}
.y14{bottom:5.400000px;}
.yc{bottom:5.940000px;}
.yd{bottom:6.480000px;}
.y1a{bottom:6.840000px;}
.y1b{bottom:7.380000px;}
.y11{bottom:7.740000px;}
.y39{bottom:10.260000px;}
.y28{bottom:13.320000px;}
.y25{bottom:13.500000px;}
.y29{bottom:13.860000px;}
.y52{bottom:14.580000px;}
.y47{bottom:15.480000px;}
.y26{bottom:15.660000px;}
.y18{bottom:16.380000px;}
.y1e{bottom:16.560000px;}
.yf{bottom:17.325000px;}
.y18f{bottom:20.874000px;}
.y155{bottom:20.880000px;}
.y1a1{bottom:20.910000px;}
.y153{bottom:21.054000px;}
.y142{bottom:21.060000px;}
.y1ac{bottom:21.090000px;}
.y18b{bottom:21.105000px;}
.y4c{bottom:22.320000px;}
.y185{bottom:22.860000px;}
.ye4{bottom:23.040000px;}
.yfe{bottom:23.085000px;}
.y3b{bottom:23.400000px;}
.y48{bottom:25.200000px;}
.y45{bottom:25.560000px;}
.y17{bottom:26.820000px;}
.y1d{bottom:27.000000px;}
.y21{bottom:28.980000px;}
.y23{bottom:31.140000px;}
.y10{bottom:31.365000px;}
.y4d{bottom:31.860000px;}
.y4a{bottom:32.220000px;}
.y46{bottom:35.100000px;}
.y18e{bottom:38.514000px;}
.y14b{bottom:38.520000px;}
.y1a0{bottom:38.550000px;}
.y141{bottom:38.565000px;}
.y152{bottom:38.694000px;}
.y148{bottom:38.700000px;}
.y1ab{bottom:38.730000px;}
.y18a{bottom:38.745000px;}
.y4b{bottom:41.580000px;}
.ye3{bottom:42.300000px;}
.yfd{bottom:42.345000px;}
.y43{bottom:42.480000px;}
.y4f{bottom:42.690000px;}
.y22{bottom:54.540000px;}
.y18d{bottom:56.154000px;}
.y147{bottom:56.160000px;}
.y14a{bottom:56.190000px;}
.y140{bottom:56.205000px;}
.y167{bottom:56.340000px;}
.y19b{bottom:56.385000px;}
.y9{bottom:58.716000px;}
.ye8{bottom:61.740000px;}
.y104{bottom:61.770000px;}
.y3f{bottom:61.785000px;}
.y3e{bottom:62.325000px;}
.y165{bottom:73.620000px;}
.y1bf{bottom:73.665000px;}
.y196{bottom:73.794000px;}
.y146{bottom:73.800000px;}
.y149{bottom:73.830000px;}
.y151{bottom:73.845000px;}
.y8{bottom:79.056000px;}
.y1{bottom:80.775017px;}
.y42{bottom:81.045000px;}
.y108{bottom:81.180000px;}
.y103{bottom:81.210000px;}
.y195{bottom:91.254000px;}
.y15d{bottom:91.260000px;}
.y188{bottom:91.290000px;}
.y197{bottom:91.305000px;}
.y145{bottom:91.440000px;}
.y1aa{bottom:91.470000px;}
.y150{bottom:91.485000px;}
.y41{bottom:100.305000px;}
.y107{bottom:100.440000px;}
.y15c{bottom:108.900000px;}
.y187{bottom:108.930000px;}
.y194{bottom:108.939000px;}
.y14f{bottom:108.945000px;}
.y191{bottom:109.125000px;}
.y9e{bottom:112.356000px;}
.yea{bottom:117.036000px;}
.y192{bottom:119.376000px;}
.y40{bottom:119.565000px;}
.y10a{bottom:119.880000px;}
.y10b{bottom:120.456000px;}
.y19c{bottom:121.536000px;}
.y15b{bottom:126.540000px;}
.y193{bottom:126.579000px;}
.y14e{bottom:126.585000px;}
.y18c{bottom:129.276000px;}
.y9d{bottom:132.336000px;}
.y12e{bottom:132.876000px;}
.yf7{bottom:133.056000px;}
.y65{bottom:133.596000px;}
.y9c{bottom:138.276000px;}
.y37{bottom:142.236000px;}
.y15a{bottom:144.000000px;}
.y160{bottom:144.180000px;}
.y14d{bottom:144.225000px;}
.y7b{bottom:148.356000px;}
.ye9{bottom:152.850000px;}
.y9b{bottom:153.750000px;}
.y12d{bottom:155.190000px;}
.y109{bottom:156.270000px;}
.y15f{bottom:161.670000px;}
.y159{bottom:161.685000px;}
.y7{bottom:165.476996px;}
.y1be{bottom:166.530000px;}
.yf6{bottom:170.310000px;}
.y161{bottom:172.110000px;}
.y64{bottom:173.370000px;}
.y12c{bottom:177.330000px;}
.y158{bottom:179.325000px;}
.y36{bottom:179.850000px;}
.y7a{bottom:185.430000px;}
.y2c{bottom:198.930000px;}
.y12b{bottom:199.650000px;}
.y1a4{bottom:201.090000px;}
.y14c{bottom:201.630000px;}
.yf5{bottom:207.570000px;}
.ye7{bottom:208.110000px;}
.y19a{bottom:208.290000px;}
.y63{bottom:213.150000px;}
.y189{bottom:216.030000px;}
.y35{bottom:217.650000px;}
.y12a{bottom:221.790000px;}
.y79{bottom:222.690000px;}
.y2a{bottom:223.410000px;}
.y1a2{bottom:225.930000px;}
.yf4{bottom:229.710000px;}
.ycc{bottom:240.510000px;}
.y129{bottom:244.110000px;}
.yf3{bottom:252.030000px;}
.y62{bottom:252.930000px;}
.y34{bottom:255.450000px;}
.ycb{bottom:262.830000px;}
.y1af{bottom:267.375000px;}
.y78{bottom:269.130000px;}
.y1bd{bottom:270.975000px;}
.yf2{bottom:274.350000px;}
.y128{bottom:275.970000px;}
.y15e{bottom:276.555000px;}
.y6{bottom:278.257416px;}
.yca{bottom:284.970000px;}
.y61{bottom:292.575000px;}
.y33{bottom:293.295000px;}
.yf1{bottom:296.535000px;}
.ye6{bottom:301.935000px;}
.yc9{bottom:307.335000px;}
.y106{bottom:308.235000px;}
.y199{bottom:312.915000px;}
.y27{bottom:317.055000px;}
.y5{bottom:323.274377px;}
.yf0{bottom:328.395000px;}
.yc8{bottom:329.475000px;}
.y168{bottom:330.375000px;}
.y32{bottom:331.095000px;}
.y60{bottom:332.355000px;}
.y9a{bottom:333.435000px;}
.y127{bottom:333.795000px;}
.y1ae{bottom:336.675000px;}
.yc7{bottom:351.795000px;}
.y99{bottom:355.755000px;}
.y126{bottom:356.115000px;}
.y117{bottom:359.715000px;}
.y4{bottom:368.291338px;}
.y31{bottom:368.895000px;}
.y24{bottom:372.315000px;}
.yc6{bottom:373.935000px;}
.ye5{bottom:376.455000px;}
.y77{bottom:377.895000px;}
.y125{bottom:378.255000px;}
.y116{bottom:382.035000px;}
.y5f{bottom:384.915000px;}
.yef{bottom:386.175000px;}
.yc5{bottom:396.255000px;}
.yb4{bottom:400.035000px;}
.y98{bottom:400.215000px;}
.y124{bottom:400.575000px;}
.y115{bottom:404.175000px;}
.y30{bottom:406.695000px;}
.y19f{bottom:417.315000px;}
.yc4{bottom:418.575000px;}
.yb3{bottom:422.355000px;}
.y97{bottom:422.535000px;}
.y123{bottom:422.715000px;}
.yee{bottom:423.075000px;}
.y1a9{bottom:423.435000px;}
.y20{bottom:428.115000px;}
.ye2{bottom:431.715000px;}
.y1c2{bottom:431.895000px;}
.y166{bottom:434.805000px;}
.yc3{bottom:440.715000px;}
.y105{bottom:440.895000px;}
.y114{bottom:441.075000px;}
.y2f{bottom:444.495000px;}
.y96{bottom:444.675000px;}
.y122{bottom:445.035000px;}
.y1bc{bottom:445.785000px;}
.y198{bottom:452.445000px;}
.yed{bottom:455.115000px;}
.y181{bottom:462.855000px;}
.yc2{bottom:463.035000px;}
.yb2{bottom:466.815000px;}
.y95{bottom:466.995000px;}
.y121{bottom:467.175000px;}
.y157{bottom:469.005000px;}
.y1c1{bottom:470.775000px;}
.y113{bottom:473.115000px;}
.y144{bottom:480.885000px;}
.y2e{bottom:482.115000px;}
.y180{bottom:484.995000px;}
.yc1{bottom:485.175000px;}
.y76{bottom:486.615000px;}
.y94{bottom:489.135000px;}
.y120{bottom:489.495000px;}
.y186{bottom:495.285000px;}
.y102{bottom:495.975000px;}
.y5e{bottom:501.915000px;}
.ye1{bottom:506.235000px;}
.y17f{bottom:507.315000px;}
.yc0{bottom:507.495000px;}
.y1c0{bottom:510.555000px;}
.yb1{bottom:511.275000px;}
.y93{bottom:511.455000px;}
.y1f{bottom:514.875000px;}
.y4e{bottom:516.855000px;}
.y11f{bottom:526.215000px;}
.y17e{bottom:529.455000px;}
.ybf{bottom:529.815000px;}
.yb0{bottom:533.595000px;}
.y92{bottom:533.775000px;}
.y164{bottom:539.385000px;}
.y17d{bottom:551.805000px;}
.ybe{bottom:551.985000px;}
.ydf{bottom:552.165000px;}
.yaf{bottom:555.765000px;}
.y91{bottom:555.945000px;}
.y1c{bottom:557.385000px;}
.y1a8{bottom:563.145000px;}
.y17c{bottom:574.125000px;}
.ybd{bottom:574.305000px;}
.yae{bottom:578.085000px;}
.y90{bottom:578.265000px;}
.y75{bottom:580.425000px;}
.ydd{bottom:588.165000px;}
.y49{bottom:591.225000px;}
.y17b{bottom:596.265000px;}
.ybc{bottom:596.445000px;}
.y11e{bottom:597.165000px;}
.y8f{bottom:600.405000px;}
.y5d{bottom:601.305000px;}
.y13f{bottom:602.925000px;}
.y190{bottom:608.505000px;}
.y101{bottom:609.225000px;}
.y74{bottom:610.485000px;}
.y19{bottom:617.865000px;}
.y17a{bottom:618.585000px;}
.ybb{bottom:618.765000px;}
.y11d{bottom:619.485000px;}
.yad{bottom:622.545000px;}
.y8e{bottom:622.725000px;}
.y5c{bottom:636.945000px;}
.ydc{bottom:637.485000px;}
.y73{bottom:640.185000px;}
.y179{bottom:640.725000px;}
.yba{bottom:641.085000px;}
.y11c{bottom:641.805000px;}
.y163{bottom:643.830000px;}
.yac{bottom:644.865000px;}
.y8d{bottom:645.045000px;}
.y184{bottom:652.650000px;}
.ydb{bottom:658.005000px;}
.y16{bottom:660.345000px;}
.y19e{bottom:661.290000px;}
.y178{bottom:663.045000px;}
.yb9{bottom:663.225000px;}
.y11b{bottom:663.945000px;}
.y100{bottom:664.485000px;}
.yab{bottom:667.005000px;}
.y8c{bottom:667.185000px;}
.y1a7{bottom:667.590000px;}
.y72{bottom:669.885000px;}
.y5b{bottom:672.765000px;}
.y156{bottom:678.930000px;}
.yda{bottom:680.325000px;}
.y44{bottom:683.205000px;}
.y177{bottom:685.185000px;}
.yb8{bottom:685.545000px;}
.y11a{bottom:686.265000px;}
.yaa{bottom:689.325000px;}
.y8b{bottom:689.505000px;}
.y13e{bottom:689.730000px;}
.y71{bottom:699.585000px;}
.yd9{bottom:702.645000px;}
.yb7{bottom:707.325000px;}
.y176{bottom:707.505000px;}
.y119{bottom:708.045000px;}
.y5a{bottom:708.405000px;}
.y8a{bottom:711.645000px;}
.y15{bottom:720.825000px;}
.y183{bottom:721.230000px;}
.yd8{bottom:724.785000px;}
.yb6{bottom:727.485000px;}
.y70{bottom:729.465000px;}
.y175{bottom:729.825000px;}
.y13b{bottom:730.365000px;}
.ya9{bottom:733.785000px;}
.y89{bottom:733.965000px;}
.y1bb{bottom:735.045000px;}
.y1a6{bottom:736.170000px;}
.yff{bottom:739.005000px;}
.y118{bottom:740.085000px;}
.y59{bottom:744.225000px;}
.yb5{bottom:744.585000px;}
.yd7{bottom:747.105000px;}
.y162{bottom:748.230000px;}
.y174{bottom:751.965000px;}
.y13a{bottom:752.685000px;}
.y88{bottom:756.105000px;}
.y182{bottom:756.870000px;}
.y1ba{bottom:757.185000px;}
.y13d{bottom:758.490000px;}
.y6f{bottom:759.165000px;}
.y12{bottom:759.345000px;}
.y3d{bottom:761.865000px;}
.y154{bottom:765.870000px;}
.yd6{bottom:769.245000px;}
.y1a5{bottom:771.810000px;}
.y173{bottom:774.285000px;}
.y139{bottom:774.825000px;}
.ya8{bottom:778.245000px;}
.y87{bottom:778.425000px;}
.y1b9{bottom:779.505000px;}
.y58{bottom:779.865000px;}
.y19d{bottom:783.330000px;}
.y6e{bottom:788.865000px;}
.y13c{bottom:794.130000px;}
.yfc{bottom:794.265000px;}
.y172{bottom:796.425000px;}
.y138{bottom:797.145000px;}
.ye{bottom:797.685000px;}
.ya7{bottom:800.565000px;}
.y86{bottom:800.745000px;}
.yd5{bottom:801.285000px;}
.y1b8{bottom:801.645000px;}
.y57{bottom:815.730000px;}
.y6d{bottom:818.610000px;}
.y171{bottom:818.790000px;}
.y137{bottom:819.510000px;}
.ya6{bottom:822.750000px;}
.y84{bottom:822.930000px;}
.y1b7{bottom:824.010000px;}
.y85{bottom:826.710000px;}
.y170{bottom:841.110000px;}
.y136{bottom:841.650000px;}
.ya5{bottom:845.070000px;}
.y83{bottom:845.250000px;}
.y1b6{bottom:846.330000px;}
.y6c{bottom:848.490000px;}
.y56{bottom:851.370000px;}
.yd4{bottom:858.930000px;}
.yb{bottom:861.090000px;}
.y16f{bottom:863.250000px;}
.y135{bottom:863.970000px;}
.y82{bottom:867.390000px;}
.y1b5{bottom:868.470000px;}
.yfb{bottom:868.830000px;}
.y112{bottom:870.450000px;}
.y6b{bottom:878.190000px;}
.yd3{bottom:881.250000px;}
.y16e{bottom:885.570000px;}
.y134{bottom:886.110000px;}
.y55{bottom:887.190000px;}
.ya4{bottom:889.530000px;}
.y81{bottom:889.710000px;}
.y1b4{bottom:890.790000px;}
.y111{bottom:892.590000px;}
.ya{bottom:894.030000px;}
.yd2{bottom:903.390000px;}
.y16d{bottom:907.710000px;}
.y6a{bottom:907.890000px;}
.y133{bottom:908.430000px;}
.ya3{bottom:911.850000px;}
.y80{bottom:912.030000px;}
.y1b3{bottom:912.930000px;}
.y3a{bottom:913.830000px;}
.y110{bottom:914.910000px;}
.y54{bottom:922.830000px;}
.yfa{bottom:923.910000px;}
.yd1{bottom:925.710000px;}
.y16c{bottom:930.030000px;}
.y132{bottom:930.570000px;}
.ya2{bottom:933.990000px;}
.y7f{bottom:934.170000px;}
.y1b2{bottom:935.250000px;}
.y10f{bottom:937.230000px;}
.y69{bottom:937.590000px;}
.yd0{bottom:948.030000px;}
.y16b{bottom:952.170000px;}
.y131{bottom:952.890000px;}
.ya1{bottom:956.310000px;}
.y7e{bottom:956.490000px;}
.y53{bottom:958.650000px;}
.y68{bottom:967.470000px;}
.y38{bottom:968.910000px;}
.y10e{bottom:969.090000px;}
.ycf{bottom:970.170000px;}
.y1b1{bottom:972.510000px;}
.y16a{bottom:974.490000px;}
.y130{bottom:975.210000px;}
.yf9{bottom:979.170000px;}
.ya0{bottom:988.170000px;}
.y67{bottom:990.510000px;}
.yce{bottom:992.490000px;}
.y7d{bottom:993.210000px;}
.y51{bottom:994.290000px;}
.y12f{bottom:997.350000px;}
.y1b0{bottom:1004.910000px;}
.y169{bottom:1006.350000px;}
.ycd{bottom:1014.630000px;}
.yec{bottom:1019.670000px;}
.y10d{bottom:1026.870000px;}
.yf8{bottom:1028.490000px;}
.yeb{bottom:1041.810000px;}
.y66{bottom:1045.770000px;}
.y9f{bottom:1051.350000px;}
.y10c{bottom:1051.710000px;}
.y50{bottom:1052.790000px;}
.y2d{bottom:1054.230000px;}
.y7c{bottom:1064.130000px;}
.h2{height:10.800000px;}
.h51{height:17.640000px;}
.h23{height:19.080000px;}
.h25{height:19.260000px;}
.h3c{height:19.296000px;}
.h32{height:19.440000px;}
.h10{height:21.960000px;}
.hb{height:23.940000px;}
.h3{height:25.051346px;}
.h12{height:25.920000px;}
.h14{height:26.100000px;}
.h33{height:29.520000px;}
.h1b{height:31.680000px;}
.h2e{height:33.708960px;}
.h46{height:35.100000px;}
.h2c{height:36.336094px;}
.h1c{height:38.520000px;}
.h35{height:38.700000px;}
.h17{height:38.880000px;}
.h16{height:39.240000px;}
.h11{height:43.920000px;}
.h13{height:44.100000px;}
.he{height:47.016000px;}
.h41{height:50.597578px;}
.h2f{height:51.811920px;}
.h40{height:51.998203px;}
.h31{height:52.465078px;}
.h45{height:52.740000px;}
.h3e{height:55.825312px;}
.h38{height:56.084062px;}
.h9{height:57.430080px;}
.h8{height:57.636562px;}
.h21{height:57.816000px;}
.h34{height:57.960000px;}
.h39{height:57.996000px;}
.h36{height:58.140000px;}
.h2d{height:58.154062px;}
.h1f{height:62.100000px;}
.h29{height:62.648438px;}
.h1d{height:63.019687px;}
.h24{height:64.875938px;}
.hd{height:65.884219px;}
.hf{height:67.824844px;}
.h19{height:68.084282px;}
.h15{height:70.200000px;}
.h47{height:70.380000px;}
.h3f{height:70.416000px;}
.hc{height:73.722656px;}
.h20{height:75.600000px;}
.h18{height:77.256000px;}
.h37{height:77.400000px;}
.h6{height:82.218134px;}
.h28{height:83.322422px;}
.h4b{height:87.840000px;}
.h43{height:87.876000px;}
.h4c{height:88.020000px;}
.h4a{height:88.056000px;}
.h30{height:89.759531px;}
.h1a{height:92.424960px;}
.h54{height:94.816406px;}
.h3a{height:96.876000px;}
.h22{height:97.632000px;}
.ha{height:99.687656px;}
.h5{height:103.911346px;}
.h42{height:105.480000px;}
.h53{height:105.516000px;}
.h2b{height:105.562266px;}
.h52{height:105.660000px;}
.h3b{height:116.100000px;}
.h50{height:122.976000px;}
.h4f{height:123.120000px;}
.h4e{height:123.156000px;}
.h27{height:126.421875px;}
.h1e{height:135.576000px;}
.h55{height:140.580000px;}
.h4d{height:140.796000px;}
.h44{height:158.250000px;}
.h49{height:175.890000px;}
.h2a{height:189.632812px;}
.h48{height:193.350000px;}
.h26{height:195.264000px;}
.h3d{height:918.000000px;}
.h7{height:1188.000000px;}
.h1{height:1263.000000px;}
.h4{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:21.239999px;}
.w1{width:53.279998px;}
.w9{width:82.980000px;}
.wa{width:84.060000px;}
.w18{width:102.636000px;}
.w19{width:104.760000px;}
.wb{width:106.596000px;}
.w1f{width:115.380000px;}
.w1b{width:115.416000px;}
.w1a{width:115.560000px;}
.w1d{width:120.960000px;}
.we{width:152.640000px;}
.w14{width:176.760000px;}
.wc{width:184.170000px;}
.w6{width:189.210000px;}
.wd{width:213.510000px;}
.wf{width:229.395000px;}
.w1c{width:243.030000px;}
.w12{width:264.270000px;}
.w10{width:290.190000px;}
.w1e{width:310.170000px;}
.w13{width:434.595000px;}
.w7{width:484.815000px;}
.w15{width:511.275000px;}
.w8{width:675.465000px;}
.w3{width:893.249963px;}
.w0{width:893.250000px;}
.w11{width:917.999973px;}
.w5{width:917.999986px;}
.w4{width:918.000000px;}
.w17{width:1187.999982px;}
.w16{width:1188.000000px;}
.x0{left:0.000000px;}
.x46{left:6.840000px;}
.x52{left:10.260000px;}
.x57{left:12.060000px;}
.x24{left:13.500000px;}
.x2e{left:15.345000px;}
.xe{left:16.740000px;}
.x26{left:19.080000px;}
.x30{left:20.340000px;}
.x54{left:23.040000px;}
.x32{left:24.120000px;}
.x1a{left:28.980000px;}
.x2d{left:30.600000px;}
.x2f{left:32.760000px;}
.x1d{left:34.560000px;}
.x20{left:36.714000px;}
.x28{left:38.925000px;}
.x33{left:40.680000px;}
.x35{left:41.760000px;}
.x3c{left:42.840000px;}
.x36{left:44.640000px;}
.x16{left:45.894000px;}
.xd{left:47.700000px;}
.x14{left:48.774000px;}
.x31{left:50.760000px;}
.x17{left:52.914000px;}
.x18{left:54.354000px;}
.x2a{left:57.780000px;}
.x9{left:59.574000px;}
.x1e{left:62.094000px;}
.x1c{left:63.534000px;}
.x3d{left:65.160000px;}
.x55{left:66.240000px;}
.x13{left:68.754000px;}
.xf{left:72.894000px;}
.x3a{left:76.005000px;}
.xc{left:77.034000px;}
.x2c{left:78.480000px;}
.x3e{left:79.560000px;}
.x11{left:82.254000px;}
.x3b{left:83.880000px;}
.x34{left:85.680000px;}
.x3{left:89.324996px;}
.x38{left:95.265000px;}
.x4{left:98.211538px;}
.x21{left:108.035986px;}
.x23{left:109.476000px;}
.x4a{left:114.336000px;}
.x8{left:121.356000px;}
.x40{left:129.275986px;}
.x4e{left:133.595986px;}
.x50{left:137.556000px;}
.x22{left:142.055986px;}
.x1f{left:157.860000px;}
.x6{left:162.029986px;}
.x44{left:166.709986px;}
.x1b{left:171.180000px;}
.x3f{left:178.589986px;}
.x25{left:193.890000px;}
.x15{left:207.030000px;}
.x19{left:209.370000px;}
.x12{left:211.710000px;}
.x58{left:216.029986px;}
.xb{left:231.870000px;}
.x10{left:236.910000px;}
.x51{left:243.750000px;}
.x37{left:275.610000px;}
.x27{left:279.390000px;}
.x2{left:281.879988px;}
.x4b{left:292.575000px;}
.x41{left:309.314973px;}
.xa{left:312.015000px;}
.x42{left:315.074986px;}
.x53{left:360.750000px;}
.x47{left:374.655000px;}
.x43{left:378.074986px;}
.x29{left:387.435000px;}
.x49{left:476.894986px;}
.x5{left:481.394986px;}
.x39{left:506.445000px;}
.x7{left:541.184986px;}
.x1{left:546.119977px;}
.x2b{left:573.045000px;}
.x4f{left:611.894982px;}
.x56{left:722.265000px;}
.x4c{left:735.809986px;}
.x4d{left:789.809986px;}
.x45{left:844.889986px;}
.x48{left:866.309986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.549333pt;}
.ls2{letter-spacing:-0.297067pt;}
.lsd{letter-spacing:-0.259200pt;}
.lsf{letter-spacing:-0.231467pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls11{letter-spacing:-0.095467pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls13{letter-spacing:-0.046720pt;}
.ls12{letter-spacing:-0.041600pt;}
.ls16{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.020480pt;}
.ls15{letter-spacing:0.056533pt;}
.ls3{letter-spacing:0.089600pt;}
.ls10{letter-spacing:0.112533pt;}
.ls14{letter-spacing:0.173333pt;}
.lsc{letter-spacing:0.176000pt;}
.lsa{letter-spacing:0.186133pt;}
.ls5{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.268800pt;}
.ls9{letter-spacing:0.284160pt;}
.lse{letter-spacing:0.317333pt;}
.ws5{word-spacing:-28.160000pt;}
.ws1{word-spacing:-13.575680pt;}
.ws6{word-spacing:-13.043200pt;}
.wsa{word-spacing:-12.974080pt;}
.ws7{word-spacing:-12.953600pt;}
.wsb{word-spacing:-12.856533pt;}
.ws4{word-spacing:-12.728320pt;}
.ws8{word-spacing:-12.656533pt;}
.ws3{word-spacing:-12.431253pt;}
.ws12{word-spacing:-12.003733pt;}
.wsc{word-spacing:-11.872533pt;}
.ws10{word-spacing:-11.862400pt;}
.ws17{word-spacing:-11.859733pt;}
.ws14{word-spacing:-11.798933pt;}
.wsf{word-spacing:-11.697920pt;}
.wsd{word-spacing:-11.686400pt;}
.ws18{word-spacing:-11.669760pt;}
.ws15{word-spacing:-11.644800pt;}
.ws16{word-spacing:-11.639680pt;}
.wse{word-spacing:-11.634560pt;}
.ws13{word-spacing:-11.590933pt;}
.ws11{word-spacing:-11.454933pt;}
.ws9{word-spacing:-10.624000pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:1918.460587pt;}
._2{margin-left:-12.149760pt;}
._4{margin-left:-10.291200pt;}
._5{margin-left:-8.994560pt;}
._6{margin-left:-7.919360pt;}
._3{margin-left:-6.352640pt;}
._1{margin-left:-4.785920pt;}
._8{margin-left:-3.699200pt;}
._9{margin-left:-2.808320pt;}
._0{margin-left:-1.067520pt;}
._7{width:0.904107pt;}
._e{width:1.844267pt;}
._d{width:2.792107pt;}
._11{width:4.247040pt;}
._15{width:5.946880pt;}
._c{width:7.390720pt;}
._b{width:8.714240pt;}
._14{width:9.650773pt;}
._13{width:11.386880pt;}
._17{width:14.138880pt;}
._a{width:15.426560pt;}
._18{width:16.465493pt;}
._16{width:17.840640pt;}
._10{width:19.018240pt;}
._f{width:20.254720pt;}
._2c{width:21.145600pt;}
._1a{width:22.138880pt;}
._1b{width:23.029760pt;}
._1e{width:24.556800pt;}
._12{width:25.907200pt;}
._19{width:26.962347pt;}
._28{width:28.418133pt;}
._1d{width:29.587840pt;}
._22{width:32.934400pt;}
._24{width:34.473813pt;}
._25{width:35.432107pt;}
._29{width:39.680640pt;}
._23{width:42.124160pt;}
._26{width:43.452160pt;}
._30{width:46.426880pt;}
._21{width:48.392320pt;}
._1f{width:50.888960pt;}
._20{width:52.322133pt;}
._2b{width:65.762560pt;}
._2a{width:68.046720pt;}
._33{width:69.799680pt;}
._2d{width:73.411840pt;}
._2f{width:85.151360pt;}
._32{width:106.717013pt;}
._27{width:117.448320pt;}
._31{width:141.777280pt;}
._2e{width:142.839680pt;}
._1c{width:153.994880pt;}
._35{width:155.161387pt;}
._34{width:162.440960pt;}
.fs0{font-size:29.690484pt;}
.fsd{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fse{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:85.352159pt;}
.fs6{font-size:90.880000pt;}
.fs8{font-size:96.000000pt;}
.fsb{font-size:106.880000pt;}
.fs1{font-size:117.364220pt;}
.fsa{font-size:128.000000pt;}
.fs9{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.000018pt;}
.y2{bottom:1.885191pt;}
.y143{bottom:3.040000pt;}
.y1ad{bottom:3.066667pt;}
.y1a3{bottom:3.080000pt;}
.yde{bottom:3.200000pt;}
.ye0{bottom:3.360000pt;}
.y3c{bottom:3.680000pt;}
.y2b{bottom:4.000000pt;}
.y13{bottom:4.320000pt;}
.y14{bottom:4.800000pt;}
.yc{bottom:5.280000pt;}
.yd{bottom:5.760000pt;}
.y1a{bottom:6.080000pt;}
.y1b{bottom:6.560000pt;}
.y11{bottom:6.880000pt;}
.y39{bottom:9.120000pt;}
.y28{bottom:11.840000pt;}
.y25{bottom:12.000000pt;}
.y29{bottom:12.320000pt;}
.y52{bottom:12.960000pt;}
.y47{bottom:13.760000pt;}
.y26{bottom:13.920000pt;}
.y18{bottom:14.560000pt;}
.y1e{bottom:14.720000pt;}
.yf{bottom:15.400000pt;}
.y18f{bottom:18.554667pt;}
.y155{bottom:18.560000pt;}
.y1a1{bottom:18.586667pt;}
.y153{bottom:18.714667pt;}
.y142{bottom:18.720000pt;}
.y1ac{bottom:18.746667pt;}
.y18b{bottom:18.760000pt;}
.y4c{bottom:19.840000pt;}
.y185{bottom:20.320000pt;}
.ye4{bottom:20.480000pt;}
.yfe{bottom:20.520000pt;}
.y3b{bottom:20.800000pt;}
.y48{bottom:22.400000pt;}
.y45{bottom:22.720000pt;}
.y17{bottom:23.840000pt;}
.y1d{bottom:24.000000pt;}
.y21{bottom:25.760000pt;}
.y23{bottom:27.680000pt;}
.y10{bottom:27.880000pt;}
.y4d{bottom:28.320000pt;}
.y4a{bottom:28.640000pt;}
.y46{bottom:31.200000pt;}
.y18e{bottom:34.234667pt;}
.y14b{bottom:34.240000pt;}
.y1a0{bottom:34.266667pt;}
.y141{bottom:34.280000pt;}
.y152{bottom:34.394667pt;}
.y148{bottom:34.400000pt;}
.y1ab{bottom:34.426667pt;}
.y18a{bottom:34.440000pt;}
.y4b{bottom:36.960000pt;}
.ye3{bottom:37.600000pt;}
.yfd{bottom:37.640000pt;}
.y43{bottom:37.760000pt;}
.y4f{bottom:37.946667pt;}
.y22{bottom:48.480000pt;}
.y18d{bottom:49.914667pt;}
.y147{bottom:49.920000pt;}
.y14a{bottom:49.946667pt;}
.y140{bottom:49.960000pt;}
.y167{bottom:50.080000pt;}
.y19b{bottom:50.120000pt;}
.y9{bottom:52.192000pt;}
.ye8{bottom:54.880000pt;}
.y104{bottom:54.906667pt;}
.y3f{bottom:54.920000pt;}
.y3e{bottom:55.400000pt;}
.y165{bottom:65.440000pt;}
.y1bf{bottom:65.480000pt;}
.y196{bottom:65.594667pt;}
.y146{bottom:65.600000pt;}
.y149{bottom:65.626667pt;}
.y151{bottom:65.640000pt;}
.y8{bottom:70.272000pt;}
.y1{bottom:71.800015pt;}
.y42{bottom:72.040000pt;}
.y108{bottom:72.160000pt;}
.y103{bottom:72.186667pt;}
.y195{bottom:81.114667pt;}
.y15d{bottom:81.120000pt;}
.y188{bottom:81.146667pt;}
.y197{bottom:81.160000pt;}
.y145{bottom:81.280000pt;}
.y1aa{bottom:81.306667pt;}
.y150{bottom:81.320000pt;}
.y41{bottom:89.160000pt;}
.y107{bottom:89.280000pt;}
.y15c{bottom:96.800000pt;}
.y187{bottom:96.826667pt;}
.y194{bottom:96.834667pt;}
.y14f{bottom:96.840000pt;}
.y191{bottom:97.000000pt;}
.y9e{bottom:99.872000pt;}
.yea{bottom:104.032000pt;}
.y192{bottom:106.112000pt;}
.y40{bottom:106.280000pt;}
.y10a{bottom:106.560000pt;}
.y10b{bottom:107.072000pt;}
.y19c{bottom:108.032000pt;}
.y15b{bottom:112.480000pt;}
.y193{bottom:112.514667pt;}
.y14e{bottom:112.520000pt;}
.y18c{bottom:114.912000pt;}
.y9d{bottom:117.632000pt;}
.y12e{bottom:118.112000pt;}
.yf7{bottom:118.272000pt;}
.y65{bottom:118.752000pt;}
.y9c{bottom:122.912000pt;}
.y37{bottom:126.432000pt;}
.y15a{bottom:128.000000pt;}
.y160{bottom:128.160000pt;}
.y14d{bottom:128.200000pt;}
.y7b{bottom:131.872000pt;}
.ye9{bottom:135.866667pt;}
.y9b{bottom:136.666667pt;}
.y12d{bottom:137.946667pt;}
.y109{bottom:138.906667pt;}
.y15f{bottom:143.706667pt;}
.y159{bottom:143.720000pt;}
.y7{bottom:147.090663pt;}
.y1be{bottom:148.026667pt;}
.yf6{bottom:151.386667pt;}
.y161{bottom:152.986667pt;}
.y64{bottom:154.106667pt;}
.y12c{bottom:157.626667pt;}
.y158{bottom:159.400000pt;}
.y36{bottom:159.866667pt;}
.y7a{bottom:164.826667pt;}
.y2c{bottom:176.826667pt;}
.y12b{bottom:177.466667pt;}
.y1a4{bottom:178.746667pt;}
.y14c{bottom:179.226667pt;}
.yf5{bottom:184.506667pt;}
.ye7{bottom:184.986667pt;}
.y19a{bottom:185.146667pt;}
.y63{bottom:189.466667pt;}
.y189{bottom:192.026667pt;}
.y35{bottom:193.466667pt;}
.y12a{bottom:197.146667pt;}
.y79{bottom:197.946667pt;}
.y2a{bottom:198.586667pt;}
.y1a2{bottom:200.826667pt;}
.yf4{bottom:204.186667pt;}
.ycc{bottom:213.786667pt;}
.y129{bottom:216.986667pt;}
.yf3{bottom:224.026667pt;}
.y62{bottom:224.826667pt;}
.y34{bottom:227.066667pt;}
.ycb{bottom:233.626667pt;}
.y1af{bottom:237.666667pt;}
.y78{bottom:239.226667pt;}
.y1bd{bottom:240.866667pt;}
.yf2{bottom:243.866667pt;}
.y128{bottom:245.306667pt;}
.y15e{bottom:245.826667pt;}
.y6{bottom:247.339925pt;}
.yca{bottom:253.306667pt;}
.y61{bottom:260.066667pt;}
.y33{bottom:260.706667pt;}
.yf1{bottom:263.586667pt;}
.ye6{bottom:268.386667pt;}
.yc9{bottom:273.186667pt;}
.y106{bottom:273.986667pt;}
.y199{bottom:278.146667pt;}
.y27{bottom:281.826667pt;}
.y5{bottom:287.355002pt;}
.yf0{bottom:291.906667pt;}
.yc8{bottom:292.866667pt;}
.y168{bottom:293.666667pt;}
.y32{bottom:294.306667pt;}
.y60{bottom:295.426667pt;}
.y9a{bottom:296.386667pt;}
.y127{bottom:296.706667pt;}
.y1ae{bottom:299.266667pt;}
.yc7{bottom:312.706667pt;}
.y99{bottom:316.226667pt;}
.y126{bottom:316.546667pt;}
.y117{bottom:319.746667pt;}
.y4{bottom:327.370079pt;}
.y31{bottom:327.906667pt;}
.y24{bottom:330.946667pt;}
.yc6{bottom:332.386667pt;}
.ye5{bottom:334.626667pt;}
.y77{bottom:335.906667pt;}
.y125{bottom:336.226667pt;}
.y116{bottom:339.586667pt;}
.y5f{bottom:342.146667pt;}
.yef{bottom:343.266667pt;}
.yc5{bottom:352.226667pt;}
.yb4{bottom:355.586667pt;}
.y98{bottom:355.746667pt;}
.y124{bottom:356.066667pt;}
.y115{bottom:359.266667pt;}
.y30{bottom:361.506667pt;}
.y19f{bottom:370.946667pt;}
.yc4{bottom:372.066667pt;}
.yb3{bottom:375.426667pt;}
.y97{bottom:375.586667pt;}
.y123{bottom:375.746667pt;}
.yee{bottom:376.066667pt;}
.y1a9{bottom:376.386667pt;}
.y20{bottom:380.546667pt;}
.ye2{bottom:383.746667pt;}
.y1c2{bottom:383.906667pt;}
.y166{bottom:386.493333pt;}
.yc3{bottom:391.746667pt;}
.y105{bottom:391.906667pt;}
.y114{bottom:392.066667pt;}
.y2f{bottom:395.106667pt;}
.y96{bottom:395.266667pt;}
.y122{bottom:395.586667pt;}
.y1bc{bottom:396.253333pt;}
.y198{bottom:402.173333pt;}
.yed{bottom:404.546667pt;}
.y181{bottom:411.426667pt;}
.yc2{bottom:411.586667pt;}
.yb2{bottom:414.946667pt;}
.y95{bottom:415.106667pt;}
.y121{bottom:415.266667pt;}
.y157{bottom:416.893333pt;}
.y1c1{bottom:418.466667pt;}
.y113{bottom:420.546667pt;}
.y144{bottom:427.453333pt;}
.y2e{bottom:428.546667pt;}
.y180{bottom:431.106667pt;}
.yc1{bottom:431.266667pt;}
.y76{bottom:432.546667pt;}
.y94{bottom:434.786667pt;}
.y120{bottom:435.106667pt;}
.y186{bottom:440.253333pt;}
.y102{bottom:440.866667pt;}
.y5e{bottom:446.146667pt;}
.ye1{bottom:449.986667pt;}
.y17f{bottom:450.946667pt;}
.yc0{bottom:451.106667pt;}
.y1c0{bottom:453.826667pt;}
.yb1{bottom:454.466667pt;}
.y93{bottom:454.626667pt;}
.y1f{bottom:457.666667pt;}
.y4e{bottom:459.426667pt;}
.y11f{bottom:467.746667pt;}
.y17e{bottom:470.626667pt;}
.ybf{bottom:470.946667pt;}
.yb0{bottom:474.306667pt;}
.y92{bottom:474.466667pt;}
.y164{bottom:479.453333pt;}
.y17d{bottom:490.493333pt;}
.ybe{bottom:490.653333pt;}
.ydf{bottom:490.813333pt;}
.yaf{bottom:494.013333pt;}
.y91{bottom:494.173333pt;}
.y1c{bottom:495.453333pt;}
.y1a8{bottom:500.573333pt;}
.y17c{bottom:510.333333pt;}
.ybd{bottom:510.493333pt;}
.yae{bottom:513.853333pt;}
.y90{bottom:514.013333pt;}
.y75{bottom:515.933333pt;}
.ydd{bottom:522.813333pt;}
.y49{bottom:525.533333pt;}
.y17b{bottom:530.013333pt;}
.ybc{bottom:530.173333pt;}
.y11e{bottom:530.813333pt;}
.y8f{bottom:533.693333pt;}
.y5d{bottom:534.493333pt;}
.y13f{bottom:535.933333pt;}
.y190{bottom:540.893333pt;}
.y101{bottom:541.533333pt;}
.y74{bottom:542.653333pt;}
.y19{bottom:549.213333pt;}
.y17a{bottom:549.853333pt;}
.ybb{bottom:550.013333pt;}
.y11d{bottom:550.653333pt;}
.yad{bottom:553.373333pt;}
.y8e{bottom:553.533333pt;}
.y5c{bottom:566.173333pt;}
.ydc{bottom:566.653333pt;}
.y73{bottom:569.053333pt;}
.y179{bottom:569.533333pt;}
.yba{bottom:569.853333pt;}
.y11c{bottom:570.493333pt;}
.y163{bottom:572.293333pt;}
.yac{bottom:573.213333pt;}
.y8d{bottom:573.373333pt;}
.y184{bottom:580.133333pt;}
.ydb{bottom:584.893333pt;}
.y16{bottom:586.973333pt;}
.y19e{bottom:587.813333pt;}
.y178{bottom:589.373333pt;}
.yb9{bottom:589.533333pt;}
.y11b{bottom:590.173333pt;}
.y100{bottom:590.653333pt;}
.yab{bottom:592.893333pt;}
.y8c{bottom:593.053333pt;}
.y1a7{bottom:593.413333pt;}
.y72{bottom:595.453333pt;}
.y5b{bottom:598.013333pt;}
.y156{bottom:603.493333pt;}
.yda{bottom:604.733333pt;}
.y44{bottom:607.293333pt;}
.y177{bottom:609.053333pt;}
.yb8{bottom:609.373333pt;}
.y11a{bottom:610.013333pt;}
.yaa{bottom:612.733333pt;}
.y8b{bottom:612.893333pt;}
.y13e{bottom:613.093333pt;}
.y71{bottom:621.853333pt;}
.yd9{bottom:624.573333pt;}
.yb7{bottom:628.733333pt;}
.y176{bottom:628.893333pt;}
.y119{bottom:629.373333pt;}
.y5a{bottom:629.693333pt;}
.y8a{bottom:632.573333pt;}
.y15{bottom:640.733333pt;}
.y183{bottom:641.093333pt;}
.yd8{bottom:644.253333pt;}
.yb6{bottom:646.653333pt;}
.y70{bottom:648.413333pt;}
.y175{bottom:648.733333pt;}
.y13b{bottom:649.213333pt;}
.ya9{bottom:652.253333pt;}
.y89{bottom:652.413333pt;}
.y1bb{bottom:653.373333pt;}
.y1a6{bottom:654.373333pt;}
.yff{bottom:656.893333pt;}
.y118{bottom:657.853333pt;}
.y59{bottom:661.533333pt;}
.yb5{bottom:661.853333pt;}
.yd7{bottom:664.093333pt;}
.y162{bottom:665.093333pt;}
.y174{bottom:668.413333pt;}
.y13a{bottom:669.053333pt;}
.y88{bottom:672.093333pt;}
.y182{bottom:672.773333pt;}
.y1ba{bottom:673.053333pt;}
.y13d{bottom:674.213333pt;}
.y6f{bottom:674.813333pt;}
.y12{bottom:674.973333pt;}
.y3d{bottom:677.213333pt;}
.y154{bottom:680.773333pt;}
.yd6{bottom:683.773333pt;}
.y1a5{bottom:686.053333pt;}
.y173{bottom:688.253333pt;}
.y139{bottom:688.733333pt;}
.ya8{bottom:691.773333pt;}
.y87{bottom:691.933333pt;}
.y1b9{bottom:692.893333pt;}
.y58{bottom:693.213333pt;}
.y19d{bottom:696.293333pt;}
.y6e{bottom:701.213333pt;}
.y13c{bottom:705.893333pt;}
.yfc{bottom:706.013333pt;}
.y172{bottom:707.933333pt;}
.y138{bottom:708.573333pt;}
.ye{bottom:709.053333pt;}
.ya7{bottom:711.613333pt;}
.y86{bottom:711.773333pt;}
.yd5{bottom:712.253333pt;}
.y1b8{bottom:712.573333pt;}
.y57{bottom:725.093333pt;}
.y6d{bottom:727.653333pt;}
.y171{bottom:727.813333pt;}
.y137{bottom:728.453333pt;}
.ya6{bottom:731.333333pt;}
.y84{bottom:731.493333pt;}
.y1b7{bottom:732.453333pt;}
.y85{bottom:734.853333pt;}
.y170{bottom:747.653333pt;}
.y136{bottom:748.133333pt;}
.ya5{bottom:751.173333pt;}
.y83{bottom:751.333333pt;}
.y1b6{bottom:752.293333pt;}
.y6c{bottom:754.213333pt;}
.y56{bottom:756.773333pt;}
.yd4{bottom:763.493333pt;}
.yb{bottom:765.413333pt;}
.y16f{bottom:767.333333pt;}
.y135{bottom:767.973333pt;}
.y82{bottom:771.013333pt;}
.y1b5{bottom:771.973333pt;}
.yfb{bottom:772.293333pt;}
.y112{bottom:773.733333pt;}
.y6b{bottom:780.613333pt;}
.yd3{bottom:783.333333pt;}
.y16e{bottom:787.173333pt;}
.y134{bottom:787.653333pt;}
.y55{bottom:788.613333pt;}
.ya4{bottom:790.693333pt;}
.y81{bottom:790.853333pt;}
.y1b4{bottom:791.813333pt;}
.y111{bottom:793.413333pt;}
.ya{bottom:794.693333pt;}
.yd2{bottom:803.013333pt;}
.y16d{bottom:806.853333pt;}
.y6a{bottom:807.013333pt;}
.y133{bottom:807.493333pt;}
.ya3{bottom:810.533333pt;}
.y80{bottom:810.693333pt;}
.y1b3{bottom:811.493333pt;}
.y3a{bottom:812.293333pt;}
.y110{bottom:813.253333pt;}
.y54{bottom:820.293333pt;}
.yfa{bottom:821.253333pt;}
.yd1{bottom:822.853333pt;}
.y16c{bottom:826.693333pt;}
.y132{bottom:827.173333pt;}
.ya2{bottom:830.213333pt;}
.y7f{bottom:830.373333pt;}
.y1b2{bottom:831.333333pt;}
.y10f{bottom:833.093333pt;}
.y69{bottom:833.413333pt;}
.yd0{bottom:842.693333pt;}
.y16b{bottom:846.373333pt;}
.y131{bottom:847.013333pt;}
.ya1{bottom:850.053333pt;}
.y7e{bottom:850.213333pt;}
.y53{bottom:852.133333pt;}
.y68{bottom:859.973333pt;}
.y38{bottom:861.253333pt;}
.y10e{bottom:861.413333pt;}
.ycf{bottom:862.373333pt;}
.y1b1{bottom:864.453333pt;}
.y16a{bottom:866.213333pt;}
.y130{bottom:866.853333pt;}
.yf9{bottom:870.373333pt;}
.ya0{bottom:878.373333pt;}
.y67{bottom:880.453333pt;}
.yce{bottom:882.213333pt;}
.y7d{bottom:882.853333pt;}
.y51{bottom:883.813333pt;}
.y12f{bottom:886.533333pt;}
.y1b0{bottom:893.253333pt;}
.y169{bottom:894.533333pt;}
.ycd{bottom:901.893333pt;}
.yec{bottom:906.373333pt;}
.y10d{bottom:912.773333pt;}
.yf8{bottom:914.213333pt;}
.yeb{bottom:926.053333pt;}
.y66{bottom:929.573333pt;}
.y9f{bottom:934.533333pt;}
.y10c{bottom:934.853333pt;}
.y50{bottom:935.813333pt;}
.y2d{bottom:937.093333pt;}
.y7c{bottom:945.893333pt;}
.h2{height:9.600000pt;}
.h51{height:15.680000pt;}
.h23{height:16.960000pt;}
.h25{height:17.120000pt;}
.h3c{height:17.152000pt;}
.h32{height:17.280000pt;}
.h10{height:19.520000pt;}
.hb{height:21.280000pt;}
.h3{height:22.267863pt;}
.h12{height:23.040000pt;}
.h14{height:23.200000pt;}
.h33{height:26.240000pt;}
.h1b{height:28.160000pt;}
.h2e{height:29.963520pt;}
.h46{height:31.200000pt;}
.h2c{height:32.298750pt;}
.h1c{height:34.240000pt;}
.h35{height:34.400000pt;}
.h17{height:34.560000pt;}
.h16{height:34.880000pt;}
.h11{height:39.040000pt;}
.h13{height:39.200000pt;}
.he{height:41.792000pt;}
.h41{height:44.975625pt;}
.h2f{height:46.055040pt;}
.h40{height:46.220625pt;}
.h31{height:46.635625pt;}
.h45{height:46.880000pt;}
.h3e{height:49.622500pt;}
.h38{height:49.852500pt;}
.h9{height:51.048960pt;}
.h8{height:51.232500pt;}
.h21{height:51.392000pt;}
.h34{height:51.520000pt;}
.h39{height:51.552000pt;}
.h36{height:51.680000pt;}
.h2d{height:51.692500pt;}
.h1f{height:55.200000pt;}
.h29{height:55.687500pt;}
.h1d{height:56.017500pt;}
.h24{height:57.667500pt;}
.hd{height:58.563750pt;}
.hf{height:60.288750pt;}
.h19{height:60.519362pt;}
.h15{height:62.400000pt;}
.h47{height:62.560000pt;}
.h3f{height:62.592000pt;}
.hc{height:65.531250pt;}
.h20{height:67.200000pt;}
.h18{height:68.672000pt;}
.h37{height:68.800000pt;}
.h6{height:73.082786pt;}
.h28{height:74.064375pt;}
.h4b{height:78.080000pt;}
.h43{height:78.112000pt;}
.h4c{height:78.240000pt;}
.h4a{height:78.272000pt;}
.h30{height:79.786250pt;}
.h1a{height:82.155520pt;}
.h54{height:84.281250pt;}
.h3a{height:86.112000pt;}
.h22{height:86.784000pt;}
.ha{height:88.611250pt;}
.h5{height:92.365641pt;}
.h42{height:93.760000pt;}
.h53{height:93.792000pt;}
.h2b{height:93.833125pt;}
.h52{height:93.920000pt;}
.h3b{height:103.200000pt;}
.h50{height:109.312000pt;}
.h4f{height:109.440000pt;}
.h4e{height:109.472000pt;}
.h27{height:112.375000pt;}
.h1e{height:120.512000pt;}
.h55{height:124.960000pt;}
.h4d{height:125.152000pt;}
.h44{height:140.666667pt;}
.h49{height:156.346667pt;}
.h2a{height:168.562500pt;}
.h48{height:171.866667pt;}
.h26{height:173.568000pt;}
.h3d{height:816.000000pt;}
.h7{height:1056.000000pt;}
.h1{height:1122.666667pt;}
.h4{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:18.879999pt;}
.w1{width:47.359998pt;}
.w9{width:73.760000pt;}
.wa{width:74.720000pt;}
.w18{width:91.232000pt;}
.w19{width:93.120000pt;}
.wb{width:94.752000pt;}
.w1f{width:102.560000pt;}
.w1b{width:102.592000pt;}
.w1a{width:102.720000pt;}
.w1d{width:107.520000pt;}
.we{width:135.680000pt;}
.w14{width:157.120000pt;}
.wc{width:163.706667pt;}
.w6{width:168.186667pt;}
.wd{width:189.786667pt;}
.wf{width:203.906667pt;}
.w1c{width:216.026667pt;}
.w12{width:234.906667pt;}
.w10{width:257.946667pt;}
.w1e{width:275.706667pt;}
.w13{width:386.306667pt;}
.w7{width:430.946667pt;}
.w15{width:454.466667pt;}
.w8{width:600.413333pt;}
.w3{width:793.999967pt;}
.w0{width:794.000000pt;}
.w11{width:815.999976pt;}
.w5{width:815.999988pt;}
.w4{width:816.000000pt;}
.w17{width:1055.999984pt;}
.w16{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x46{left:6.080000pt;}
.x52{left:9.120000pt;}
.x57{left:10.720000pt;}
.x24{left:12.000000pt;}
.x2e{left:13.640000pt;}
.xe{left:14.880000pt;}
.x26{left:16.960000pt;}
.x30{left:18.080000pt;}
.x54{left:20.480000pt;}
.x32{left:21.440000pt;}
.x1a{left:25.760000pt;}
.x2d{left:27.200000pt;}
.x2f{left:29.120000pt;}
.x1d{left:30.720000pt;}
.x20{left:32.634667pt;}
.x28{left:34.600000pt;}
.x33{left:36.160000pt;}
.x35{left:37.120000pt;}
.x3c{left:38.080000pt;}
.x36{left:39.680000pt;}
.x16{left:40.794667pt;}
.xd{left:42.400000pt;}
.x14{left:43.354667pt;}
.x31{left:45.120000pt;}
.x17{left:47.034667pt;}
.x18{left:48.314667pt;}
.x2a{left:51.360000pt;}
.x9{left:52.954667pt;}
.x1e{left:55.194667pt;}
.x1c{left:56.474667pt;}
.x3d{left:57.920000pt;}
.x55{left:58.880000pt;}
.x13{left:61.114667pt;}
.xf{left:64.794667pt;}
.x3a{left:67.560000pt;}
.xc{left:68.474667pt;}
.x2c{left:69.760000pt;}
.x3e{left:70.720000pt;}
.x11{left:73.114667pt;}
.x3b{left:74.560000pt;}
.x34{left:76.160000pt;}
.x3{left:79.399997pt;}
.x38{left:84.680000pt;}
.x4{left:87.299145pt;}
.x21{left:96.031988pt;}
.x23{left:97.312000pt;}
.x4a{left:101.632000pt;}
.x8{left:107.872000pt;}
.x40{left:114.911988pt;}
.x4e{left:118.751988pt;}
.x50{left:122.272000pt;}
.x22{left:126.271988pt;}
.x1f{left:140.320000pt;}
.x6{left:144.026655pt;}
.x44{left:148.186655pt;}
.x1b{left:152.160000pt;}
.x3f{left:158.746655pt;}
.x25{left:172.346667pt;}
.x15{left:184.026667pt;}
.x19{left:186.106667pt;}
.x12{left:188.186667pt;}
.x58{left:192.026655pt;}
.xb{left:206.106667pt;}
.x10{left:210.586667pt;}
.x51{left:216.666667pt;}
.x37{left:244.986667pt;}
.x27{left:248.346667pt;}
.x2{left:250.559990pt;}
.x4b{left:260.066667pt;}
.x41{left:274.946642pt;}
.xa{left:277.346667pt;}
.x42{left:280.066655pt;}
.x53{left:320.666667pt;}
.x47{left:333.026667pt;}
.x43{left:336.066655pt;}
.x29{left:344.386667pt;}
.x49{left:423.906655pt;}
.x5{left:427.906655pt;}
.x39{left:450.173333pt;}
.x7{left:481.053321pt;}
.x1{left:485.439980pt;}
.x2b{left:509.373333pt;}
.x4f{left:543.906651pt;}
.x56{left:642.013333pt;}
.x4c{left:654.053321pt;}
.x4d{left:702.053321pt;}
.x45{left:751.013321pt;}
.x48{left:770.053321pt;}
}




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