
    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_94f459b8696283675f7fab8c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_82d2e2217e667a0b0c8fb223.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_51c3266179eefa69b938ac8e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.772949;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_9f4dfeeab1b33a3ffbbc8771.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_72fbfb31dd82cbdcc69c9c55.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_4aa89bf42e98396a350bebbf.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172363;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_bb6b2f3d56e35c63c2e3fcc1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.937012;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsd{letter-spacing:-0.774000px;}
.ls13{letter-spacing:-0.612000px;}
.ls29{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.259800px;}
.ls15{letter-spacing:-0.206400px;}
.ls1e{letter-spacing:-0.091200px;}
.ls9{letter-spacing:-0.053280px;}
.ls1f{letter-spacing:-0.018000px;}
.lsa{letter-spacing:-0.008640px;}
.lsb{letter-spacing:-0.004320px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.119520px;}
.ls19{letter-spacing:0.173280px;}
.ls1{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.206400px;}
.ls2a{letter-spacing:0.206640px;}
.ls18{letter-spacing:0.233280px;}
.ls1c{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.259920px;}
.ls2d{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.678720px;}
.ls22{letter-spacing:0.683040px;}
.ls24{letter-spacing:0.707040px;}
.ls1a{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.737280px;}
.lsc{letter-spacing:0.900000px;}
.ls17{letter-spacing:2.520000px;}
.ls5{letter-spacing:3.060000px;}
.ls2b{letter-spacing:3.780000px;}
.ls12{letter-spacing:4.500000px;}
.ls6{letter-spacing:7.380000px;}
.lsf{letter-spacing:8.100000px;}
.ls1d{letter-spacing:12.420000px;}
.ls2c{letter-spacing:15.300000px;}
.ls10{letter-spacing:16.740000px;}
.ls27{letter-spacing:38.340000px;}
.ls11{letter-spacing:80.820000px;}
.ls26{letter-spacing:85.860000px;}
.ls28{letter-spacing:86.580000px;}
.ls25{letter-spacing:91.620000px;}
.lse{letter-spacing:114.840000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.ws6{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.680200px;}
.ws0{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.166000px;}
.ws5{word-spacing:-9.720000px;}
.ws4{word-spacing:-9.715680px;}
.ws3{word-spacing:-9.711360px;}
.wsb{word-spacing:-0.607680px;}
.ws8{word-spacing:0.000000px;}
.wse{word-spacing:0.720000px;}
.wsd{word-spacing:104.742000px;}
._11{margin-left:-3.705120px;}
._9{margin-left:-2.577120px;}
._1{margin-left:-1.460400px;}
._0{width:1.314720px;}
._2{width:3.253680px;}
._a{width:4.461840px;}
._f{width:5.976000px;}
._10{width:7.709040px;}
._5{width:9.442080px;}
._6{width:10.697040px;}
._c{width:11.772720px;}
._b{width:13.206960px;}
._4{width:16.553520px;}
._3{width:17.748720px;}
._12{width:18.884160px;}
._24{width:20.437920px;}
._15{width:22.051440px;}
._1d{width:23.124000px;}
._2a{width:24.527760px;}
._1b{width:25.577280px;}
._1a{width:26.593200px;}
._8{width:27.754800px;}
._7{width:28.804320px;}
._20{width:30.132720px;}
._1f{width:31.250880px;}
._18{width:32.389920px;}
._19{width:34.122960px;}
._30{width:35.258400px;}
._2b{width:36.632880px;}
._21{width:37.768320px;}
._1c{width:38.903760px;}
._22{width:40.501200px;}
._27{width:42.071040px;}
._26{width:43.266240px;}
._2c{width:44.461440px;}
._13{width:46.314000px;}
._14{width:47.628720px;}
._e{width:49.481280px;}
._d{width:50.497200px;}
._29{width:51.617280px;}
._28{width:52.827840px;}
._2d{width:57.489120px;}
._25{width:59.162400px;}
._32{width:68.126400px;}
._2f{width:71.202720px;}
._2e{width:72.668160px;}
._35{width:76.313520px;}
._37{width:78.285600px;}
._1e{width:80.747760px;}
._3c{width:83.903040px;}
._3a{width:86.487600px;}
._3b{width:87.700080px;}
._39{width:91.081200px;}
._36{width:92.687760px;}
._3d{width:94.420800px;}
._31{width:98.298000px;}
._33{width:107.627760px;}
._16{width:115.029120px;}
._23{width:128.865360px;}
._17{width:131.053680px;}
._38{width:145.515600px;}
._34{width:170.136720px;}
.fc5{color:rgb(238,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsc{font-size:12.240000px;}
.fs8{font-size:18.000000px;}
.fs7{font-size:23.760000px;}
.fs2{font-size:30.240000px;}
.fs4{font-size:36.000000px;}
.fs1{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:54.144000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fsb{font-size:72.000000px;}
.y62{bottom:-145.440000px;}
.y61{bottom:-115.020000px;}
.y60{bottom:-97.740000px;}
.y5f{bottom:-80.460000px;}
.y5e{bottom:-63.180000px;}
.y5d{bottom:-45.900000px;}
.y41{bottom:-29.160000px;}
.y5c{bottom:-28.620000px;}
.y40{bottom:-11.880000px;}
.y5b{bottom:-11.340000px;}
.y0{bottom:0.000000px;}
.y16f{bottom:3.240000px;}
.y15e{bottom:4.650000px;}
.y18b{bottom:4.680000px;}
.y18d{bottom:5.220000px;}
.y160{bottom:5.295000px;}
.y3f{bottom:5.400000px;}
.y5a{bottom:5.760000px;}
.y18e{bottom:5.940000px;}
.y162{bottom:6.915000px;}
.y164{bottom:10.725000px;}
.y188{bottom:11.550000px;}
.y15c{bottom:12.960000px;}
.y1a7{bottom:14.220000px;}
.y15a{bottom:17.715000px;}
.y59{bottom:20.160000px;}
.y178{bottom:20.514000px;}
.y175{bottom:20.520000px;}
.y58{bottom:24.840000px;}
.y3e{bottom:27.720000px;}
.y177{bottom:37.614000px;}
.y190{bottom:37.620000px;}
.y174{bottom:37.800000px;}
.y3d{bottom:39.780000px;}
.y57{bottom:42.120000px;}
.y193{bottom:54.900000px;}
.y173{bottom:55.080000px;}
.y6a{bottom:57.456000px;}
.y56{bottom:59.220000px;}
.y3c{bottom:62.280000px;}
.y172{bottom:72.360000px;}
.y55{bottom:76.500000px;}
.y69{bottom:77.616000px;}
.y3b{bottom:79.560000px;}
.y16d{bottom:88.560000px;}
.y171{bottom:89.640000px;}
.y3a{bottom:90.360000px;}
.y54{bottom:93.810000px;}
.y39{bottom:101.880000px;}
.y16c{bottom:105.840000px;}
.y53{bottom:111.090000px;}
.y118{bottom:112.176000px;}
.ybf{bottom:113.796000px;}
.y1ba{bottom:117.036000px;}
.y38{bottom:119.160000px;}
.y36{bottom:119.556000px;}
.ya0{bottom:124.236000px;}
.y135{bottom:125.856000px;}
.y52{bottom:128.370000px;}
.y117{bottom:129.456000px;}
.ybe{bottom:131.076000px;}
.y1b9{bottom:134.316000px;}
.y35{bottom:136.656000px;}
.y9f{bottom:141.516000px;}
.y176{bottom:141.876000px;}
.y150{bottom:142.890000px;}
.y134{bottom:143.136000px;}
.yee{bottom:144.936000px;}
.y51{bottom:145.650000px;}
.y116{bottom:146.556000px;}
.ybd{bottom:146.736000px;}
.y1c7{bottom:148.356000px;}
.y1b8{bottom:151.590000px;}
.y34{bottom:153.930000px;}
.ybc{bottom:156.990000px;}
.y9e{bottom:158.790000px;}
.y151{bottom:158.940000px;}
.yed{bottom:160.230000px;}
.y133{bottom:160.410000px;}
.y115{bottom:162.210000px;}
.y50{bottom:162.750000px;}
.y1c6{bottom:165.630000px;}
.y1b7{bottom:168.690000px;}
.yec{bottom:169.050000px;}
.y33{bottom:171.210000px;}
.y114{bottom:172.470000px;}
.ybb{bottom:174.270000px;}
.y152{bottom:174.960000px;}
.y9d{bottom:175.890000px;}
.y132{bottom:177.690000px;}
.y4f{bottom:180.030000px;}
.y1c5{bottom:182.910000px;}
.y1b6{bottom:185.970000px;}
.yeb{bottom:186.330000px;}
.y32{bottom:188.490000px;}
.y113{bottom:189.750000px;}
.y153{bottom:191.010000px;}
.yba{bottom:191.550000px;}
.y9c{bottom:193.170000px;}
.y170{bottom:194.250000px;}
.y131{bottom:194.970000px;}
.y4e{bottom:197.310000px;}
.y1c4{bottom:200.190000px;}
.y1b5{bottom:203.250000px;}
.y17a{bottom:203.505000px;}
.yea{bottom:203.610000px;}
.y31{bottom:205.770000px;}
.y112{bottom:207.030000px;}
.yb9{bottom:208.650000px;}
.y9b{bottom:210.450000px;}
.y130{bottom:210.630000px;}
.y4d{bottom:214.590000px;}
.y1c3{bottom:215.490000px;}
.y1b4{bottom:220.530000px;}
.ye9{bottom:220.890000px;}
.y30{bottom:223.050000px;}
.y154{bottom:223.095000px;}
.y111{bottom:224.310000px;}
.yb8{bottom:225.930000px;}
.y9a{bottom:227.730000px;}
.y4c{bottom:231.870000px;}
.y17b{bottom:236.880000px;}
.y1b3{bottom:237.810000px;}
.ye8{bottom:237.990000px;}
.y155{bottom:239.115000px;}
.y2f{bottom:240.150000px;}
.yb7{bottom:241.230000px;}
.y110{bottom:241.410000px;}
.y99{bottom:245.010000px;}
.y4b{bottom:249.150000px;}
.yb6{bottom:250.050000px;}
.y189{bottom:253.440000px;}
.y1b2{bottom:254.910000px;}
.y156{bottom:255.165000px;}
.ye7{bottom:255.270000px;}
.y2e{bottom:257.430000px;}
.y10f{bottom:258.690000px;}
.y98{bottom:262.110000px;}
.y4a{bottom:266.250000px;}
.yb5{bottom:267.330000px;}
.y17c{bottom:270.255000px;}
.y157{bottom:271.230000px;}
.y1b1{bottom:272.190000px;}
.ye6{bottom:272.550000px;}
.y2d{bottom:274.710000px;}
.y10e{bottom:275.970000px;}
.y1fe{bottom:277.770000px;}
.y97{bottom:279.390000px;}
.y49{bottom:283.530000px;}
.yb4{bottom:284.610000px;}
.y158{bottom:287.250000px;}
.y1b0{bottom:289.470000px;}
.ye5{bottom:289.830000px;}
.y2c{bottom:292.035000px;}
.y1e0{bottom:292.575000px;}
.y10d{bottom:293.295000px;}
.y1fd{bottom:295.095000px;}
.y96{bottom:296.715000px;}
.y1df{bottom:298.515000px;}
.y16b{bottom:298.695000px;}
.y48{bottom:300.810000px;}
.yb3{bottom:301.935000px;}
.y17d{bottom:303.630000px;}
.y1af{bottom:306.795000px;}
.ye4{bottom:307.155000px;}
.y2b{bottom:309.315000px;}
.y10c{bottom:310.575000px;}
.y1fc{bottom:312.195000px;}
.y95{bottom:313.995000px;}
.y1de{bottom:315.795000px;}
.y14e{bottom:316.335000px;}
.yb2{bottom:317.955000px;}
.y47{bottom:318.090000px;}
.y64{bottom:318.825000px;}
.y1ae{bottom:324.075000px;}
.ye3{bottom:324.255000px;}
.y1c2{bottom:325.875000px;}
.y2a{bottom:326.595000px;}
.y10b{bottom:327.855000px;}
.yb1{bottom:329.475000px;}
.y12e{bottom:329.655000px;}
.y94{bottom:331.275000px;}
.y1dd{bottom:332.895000px;}
.y1c1{bottom:334.695000px;}
.y14d{bottom:334.875000px;}
.y46{bottom:335.370000px;}
.y17e{bottom:336.990000px;}
.y12f{bottom:339.735000px;}
.y12d{bottom:339.915000px;}
.y1ad{bottom:341.355000px;}
.ye2{bottom:341.535000px;}
.y29{bottom:343.695000px;}
.y10a{bottom:344.955000px;}
.yb0{bottom:346.755000px;}
.y159{bottom:348.405000px;}
.y93{bottom:348.555000px;}
.y14c{bottom:348.735000px;}
.y1dc{bottom:350.175000px;}
.y14f{bottom:350.460000px;}
.y1c0{bottom:351.975000px;}
.y45{bottom:352.695000px;}
.y12c{bottom:357.195000px;}
.y1ac{bottom:358.455000px;}
.ye1{bottom:358.815000px;}
.y28{bottom:360.975000px;}
.y109{bottom:362.235000px;}
.yaf{bottom:364.035000px;}
.y92{bottom:365.655000px;}
.y1db{bottom:365.835000px;}
.y1bf{bottom:369.255000px;}
.y44{bottom:369.795000px;}
.y17f{bottom:370.365000px;}
.y12b{bottom:374.295000px;}
.y1ab{bottom:375.735000px;}
.ye0{bottom:376.095000px;}
.y27{bottom:378.255000px;}
.y108{bottom:379.515000px;}
.y1fb{bottom:379.695000px;}
.yae{bottom:381.315000px;}
.y91{bottom:382.935000px;}
.y1be{bottom:386.355000px;}
.y43{bottom:387.075000px;}
.y1fa{bottom:389.955000px;}
.y12a{bottom:391.575000px;}
.y1aa{bottom:393.015000px;}
.ydf{bottom:393.375000px;}
.y26{bottom:395.535000px;}
.y107{bottom:396.795000px;}
.yad{bottom:398.595000px;}
.y90{bottom:400.215000px;}
.y16e{bottom:401.295000px;}
.y1bd{bottom:403.635000px;}
.y180{bottom:403.740000px;}
.y1f9{bottom:407.055000px;}
.y129{bottom:408.855000px;}
.y1a9{bottom:410.295000px;}
.yde{bottom:410.655000px;}
.y106{bottom:412.455000px;}
.y25{bottom:412.815000px;}
.yac{bottom:415.695000px;}
.y8f{bottom:417.495000px;}
.y1bc{bottom:418.935000px;}
.y16a{bottom:422.535000px;}
.y105{bottom:422.715000px;}
.y1f8{bottom:424.335000px;}
.y1a8{bottom:425.055000px;}
.y128{bottom:426.135000px;}
.ydd{bottom:427.755000px;}
.y24{bottom:429.915000px;}
.yab{bottom:431.355000px;}
.y8e{bottom:434.775000px;}
.y181{bottom:437.115000px;}
.y169{bottom:439.635000px;}
.y104{bottom:439.815000px;}
.yaa{bottom:441.615000px;}
.y127{bottom:443.415000px;}
.ydc{bottom:445.035000px;}
.y23{bottom:447.195000px;}
.y8d{bottom:452.055000px;}
.y168{bottom:454.035000px;}
.y103{bottom:457.095000px;}
.y167{bottom:458.715000px;}
.ya9{bottom:458.895000px;}
.y126{bottom:460.515000px;}
.y22{bottom:461.595000px;}
.ydb{bottom:462.315000px;}
.y21{bottom:466.275000px;}
.y8c{bottom:469.155000px;}
.y182{bottom:470.520000px;}
.y42{bottom:470.955000px;}
.y102{bottom:474.375000px;}
.y166{bottom:475.995000px;}
.ya8{bottom:476.175000px;}
.y125{bottom:477.795000px;}
.yda{bottom:479.595000px;}
.y1a6{bottom:483.015000px;}
.y20{bottom:483.555000px;}
.y8b{bottom:486.435000px;}
.y165{bottom:489.855000px;}
.y186{bottom:490.680000px;}
.y185{bottom:491.400000px;}
.y179{bottom:491.580000px;}
.y101{bottom:491.655000px;}
.ya7{bottom:493.455000px;}
.y1bb{bottom:494.895000px;}
.y163{bottom:495.000000px;}
.y124{bottom:495.075000px;}
.y1da{bottom:495.255000px;}
.yd9{bottom:496.875000px;}
.y1f{bottom:500.655000px;}
.y1a5{bottom:501.015000px;}
.y8a{bottom:503.715000px;}
.y183{bottom:503.895000px;}
.y1d9{bottom:505.515000px;}
.y100{bottom:508.935000px;}
.ya6{bottom:510.555000px;}
.y123{bottom:510.735000px;}
.yd8{bottom:514.155000px;}
.y1e{bottom:517.935000px;}
.y1a4{bottom:519.015000px;}
.y89{bottom:520.995000px;}
.y1d8{bottom:522.615000px;}
.yff{bottom:526.215000px;}
.ya5{bottom:527.835000px;}
.yd7{bottom:529.635000px;}
.y184{bottom:532.950000px;}
.y1d{bottom:535.215000px;}
.y1f7{bottom:536.475000px;}
.y1a3{bottom:537.015000px;}
.y88{bottom:538.275000px;}
.yd6{bottom:539.895000px;}
.yfe{bottom:543.315000px;}
.ya4{bottom:545.115000px;}
.y1c{bottom:550.905000px;}
.y1f6{bottom:553.785000px;}
.y1a2{bottom:555.045000px;}
.y87{bottom:555.585000px;}
.yd5{bottom:557.205000px;}
.yfd{bottom:560.625000px;}
.ya3{bottom:562.425000px;}
.y1b{bottom:562.785000px;}
.y1f5{bottom:571.065000px;}
.y86{bottom:572.685000px;}
.yd4{bottom:574.485000px;}
.yfc{bottom:577.905000px;}
.ya2{bottom:579.705000px;}
.y1a{bottom:580.065000px;}
.y1f4{bottom:588.345000px;}
.y85{bottom:589.965000px;}
.y1a1{bottom:590.325000px;}
.yd3{bottom:591.765000px;}
.yfb{bottom:595.185000px;}
.ya1{bottom:595.725000px;}
.y19{bottom:596.085000px;}
.y1f3{bottom:605.445000px;}
.y1d7{bottom:607.065000px;}
.y84{bottom:607.245000px;}
.y18{bottom:607.605000px;}
.yd2{bottom:609.045000px;}
.yfa{bottom:612.465000px;}
.y1d6{bottom:615.885000px;}
.y15b{bottom:616.500000px;}
.y161{bottom:619.560000px;}
.y1f2{bottom:621.105000px;}
.y63{bottom:621.645000px;}
.y15f{bottom:621.900000px;}
.y15d{bottom:624.060000px;}
.y83{bottom:624.525000px;}
.y17{bottom:624.885000px;}
.y1a0{bottom:625.605000px;}
.yd1{bottom:626.145000px;}
.yf9{bottom:629.745000px;}
.y1f1{bottom:631.365000px;}
.y1d5{bottom:633.165000px;}
.y122{bottom:640.185000px;}
.y82{bottom:641.805000px;}
.y16{bottom:642.165000px;}
.yd0{bottom:643.425000px;}
.y19f{bottom:643.605000px;}
.yf8{bottom:646.845000px;}
.y1f0{bottom:648.645000px;}
.y121{bottom:650.445000px;}
.y81{bottom:658.905000px;}
.y15{bottom:659.445000px;}
.ycf{bottom:660.705000px;}
.y19e{bottom:661.605000px;}
.yf7{bottom:661.785000px;}
.y1ef{bottom:665.925000px;}
.y120{bottom:667.545000px;}
.yf6{bottom:669.345000px;}
.y80{bottom:676.185000px;}
.y14{bottom:676.725000px;}
.yce{bottom:677.985000px;}
.y1ee{bottom:681.225000px;}
.y19d{bottom:682.845000px;}
.y11f{bottom:684.825000px;}
.yf5{bottom:686.625000px;}
.y1ed{bottom:690.045000px;}
.y7f{bottom:693.465000px;}
.y13{bottom:694.005000px;}
.ycd{bottom:695.265000px;}
.y19c{bottom:698.145000px;}
.y1d4{bottom:700.485000px;}
.y11e{bottom:702.105000px;}
.yf4{bottom:703.905000px;}
.y19b{bottom:706.965000px;}
.y1ec{bottom:707.325000px;}
.y12{bottom:710.385000px;}
.y7e{bottom:710.745000px;}
.ycc{bottom:712.545000px;}
.y11d{bottom:719.385000px;}
.yf3{bottom:721.005000px;}
.y11{bottom:722.445000px;}
.y19a{bottom:724.245000px;}
.y1eb{bottom:724.605000px;}
.y7d{bottom:728.025000px;}
.ycb{bottom:729.645000px;}
.y10{bottom:734.505000px;}
.y11c{bottom:736.665000px;}
.yf2{bottom:738.285000px;}
.y199{bottom:741.525000px;}
.y1ea{bottom:741.705000px;}
.y7c{bottom:745.305000px;}
.yf{bottom:745.845000px;}
.yca{bottom:746.925000px;}
.y14b{bottom:752.145000px;}
.y13e{bottom:753.585000px;}
.y11b{bottom:753.945000px;}
.yf1{bottom:755.565000px;}
.ye{bottom:756.105000px;}
.y198{bottom:758.805000px;}
.y1e9{bottom:758.985000px;}
.y7b{bottom:762.405000px;}
.yc9{bottom:764.205000px;}
.y14a{bottom:769.425000px;}
.y11a{bottom:771.045000px;}
.yf0{bottom:772.845000px;}
.yd{bottom:773.205000px;}
.y1e8{bottom:774.285000px;}
.y197{bottom:775.905000px;}
.y7a{bottom:779.685000px;}
.yc8{bottom:779.865000px;}
.y1e7{bottom:783.105000px;}
.y119{bottom:786.705000px;}
.yc7{bottom:790.125000px;}
.yc{bottom:790.485000px;}
.y196{bottom:793.185000px;}
.y1d3{bottom:795.345000px;}
.y79{bottom:796.965000px;}
.y1e6{bottom:800.385000px;}
.y149{bottom:803.805000px;}
.y1d2{bottom:805.605000px;}
.yc6{bottom:807.405000px;}
.yb{bottom:807.765000px;}
.y195{bottom:810.510000px;}
.y78{bottom:814.290000px;}
.y1e5{bottom:817.710000px;}
.y148{bottom:821.130000px;}
.y1d1{bottom:822.930000px;}
.yc5{bottom:824.550000px;}
.ya{bottom:825.090000px;}
.y194{bottom:825.270000px;}
.y77{bottom:831.570000px;}
.y1e4{bottom:834.990000px;}
.y147{bottom:838.410000px;}
.y1d0{bottom:840.210000px;}
.yc4{bottom:841.830000px;}
.y9{bottom:842.370000px;}
.y13d{bottom:847.230000px;}
.y76{bottom:848.850000px;}
.y1e3{bottom:852.270000px;}
.y146{bottom:855.690000px;}
.y1cf{bottom:856.230000px;}
.y13c{bottom:857.310000px;}
.yc3{bottom:859.110000px;}
.y8{bottom:861.270000px;}
.y75{bottom:865.950000px;}
.y1e2{bottom:867.210000px;}
.y1ce{bottom:867.750000px;}
.y145{bottom:872.970000px;}
.yef{bottom:874.410000px;}
.y13b{bottom:874.590000px;}
.yc2{bottom:876.390000px;}
.y192{bottom:877.830000px;}
.y74{bottom:883.230000px;}
.y1cd{bottom:885.030000px;}
.y7{bottom:890.070000px;}
.y144{bottom:890.250000px;}
.y13a{bottom:891.870000px;}
.yc1{bottom:893.670000px;}
.y73{bottom:900.510000px;}
.y1cc{bottom:902.310000px;}
.y143{bottom:907.350000px;}
.yc0{bottom:908.970000px;}
.y139{bottom:909.150000px;}
.y37{bottom:912.210000px;}
.y72{bottom:917.790000px;}
.y6{bottom:920.670000px;}
.y142{bottom:924.630000px;}
.y138{bottom:926.430000px;}
.y1cb{bottom:928.050000px;}
.y71{bottom:935.070000px;}
.y141{bottom:941.910000px;}
.y1e1{bottom:942.090000px;}
.y137{bottom:943.710000px;}
.y1ca{bottom:945.330000px;}
.y191{bottom:947.490000px;}
.y5{bottom:948.030000px;}
.y70{bottom:952.170000px;}
.y136{bottom:959.190000px;}
.y1c9{bottom:962.610000px;}
.y6f{bottom:969.450000px;}
.y187{bottom:969.660000px;}
.y140{bottom:976.470000px;}
.y1c8{bottom:977.910000px;}
.y18a{bottom:981.870000px;}
.y18c{bottom:984.030000px;}
.y6e{bottom:986.730000px;}
.y13f{bottom:992.490000px;}
.y18f{bottom:1000.050000px;}
.y6d{bottom:1004.010000px;}
.y6c{bottom:1021.290000px;}
.y6b{bottom:1038.570000px;}
.y4{bottom:1068.300000px;}
.y68{bottom:1069.200000px;}
.y3{bottom:1085.580000px;}
.y67{bottom:1086.480000px;}
.y2{bottom:1102.680000px;}
.y66{bottom:1103.580000px;}
.y1{bottom:1119.960000px;}
.y65{bottom:1120.860000px;}
.h11{height:4.021875px;}
.hb{height:4.064063px;}
.h34{height:8.546484px;}
.h16{height:12.568359px;}
.h14{height:16.590234px;}
.h15{height:16.764258px;}
.h23{height:17.100000px;}
.h30{height:17.280000px;}
.h32{height:17.316000px;}
.h2c{height:20.700000px;}
.h7{height:21.114844px;}
.ha{height:21.336328px;}
.h2b{height:21.420000px;}
.h2d{height:22.680000px;}
.he{height:25.136719px;}
.h9{height:25.400391px;}
.h1d{height:25.740000px;}
.h1e{height:26.280000px;}
.hf{height:27.147656px;}
.h1f{height:27.900000px;}
.h33{height:28.260000px;}
.h8{height:29.464453px;}
.h2a{height:33.840000px;}
.h1c{height:34.020000px;}
.h31{height:34.560000px;}
.h28{height:41.000977px;}
.h1{height:41.726953px;}
.h2{height:42.164648px;}
.h3{height:43.506914px;}
.h4{height:44.820000px;}
.h17{height:46.251562px;}
.h5{height:48.027656px;}
.h6{height:48.207656px;}
.hc{height:49.255313px;}
.h21{height:50.273438px;}
.h1b{height:50.800781px;}
.h26{height:51.660000px;}
.h2e{height:51.840000px;}
.h19{height:53.709961px;}
.h1a{height:53.853187px;}
.h13{height:65.884219px;}
.h2f{height:68.940000px;}
.h24{height:101.700000px;}
.h25{height:103.536000px;}
.h22{height:119.700000px;}
.hd{height:133.200000px;}
.h20{height:203.040000px;}
.h12{height:334.470000px;}
.h18{height:367.380000px;}
.h10{height:401.115000px;}
.h27{height:560.880000px;}
.h29{height:561.060000px;}
.h0{height:1188.000000px;}
.w9{width:19.980000px;}
.w12{width:32.940000px;}
.w10{width:39.780000px;}
.w11{width:39.816000px;}
.w4{width:50.616000px;}
.wc{width:53.280000px;}
.w1f{width:66.600000px;}
.w1e{width:66.636000px;}
.w1b{width:73.080000px;}
.wa{width:73.440000px;}
.w1d{width:80.100000px;}
.w1c{width:80.136000px;}
.w16{width:81.720000px;}
.w17{width:95.220000px;}
.w18{width:102.060000px;}
.wb{width:127.476000px;}
.w1a{width:134.316000px;}
.we{width:147.780000px;}
.wf{width:147.996000px;}
.wd{width:161.310000px;}
.w8{width:248.040000px;}
.w6{width:273.060000px;}
.w15{width:315.360000px;}
.w7{width:330.480000px;}
.w3{width:529.665000px;}
.w2{width:603.825000px;}
.w20{width:647.025000px;}
.w19{width:728.070000px;}
.w5{width:756.720000px;}
.w13{width:762.660000px;}
.w14{width:762.840000px;}
.w21{width:782.070000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1e{left:7.740000px;}
.xf{left:10.800000px;}
.x1c{left:16.776000px;}
.xc{left:19.800000px;}
.x21{left:21.960000px;}
.xa{left:26.460000px;}
.x31{left:30.060000px;}
.x6{left:33.660000px;}
.x13{left:40.320000px;}
.x10{left:47.340000px;}
.x2b{left:51.090000px;}
.x2a{left:60.090000px;}
.x16{left:84.345000px;}
.x35{left:94.860000px;}
.x2{left:108.035986px;}
.x1b{left:114.120000px;}
.x18{left:141.660000px;}
.x30{left:154.545000px;}
.x1f{left:182.730000px;}
.x32{left:192.450000px;}
.x9{left:197.325000px;}
.x7{left:202.005000px;}
.x5{left:204.870000px;}
.x3{left:211.529986px;}
.xd{left:221.625000px;}
.x37{left:229.890000px;}
.x17{left:232.200000px;}
.x2d{left:238.215000px;}
.x14{left:250.770000px;}
.xb{left:260.505000px;}
.x2c{left:265.530000px;}
.x1{left:270.029986px;}
.xe{left:279.030000px;}
.x15{left:286.455000px;}
.x8{left:301.725000px;}
.x38{left:303.870000px;}
.x20{left:310.935000px;}
.x33{left:337.215000px;}
.x22{left:364.935000px;}
.x39{left:384.915000px;}
.x34{left:388.515000px;}
.x25{left:405.435000px;}
.x19{left:427.860000px;}
.x26{left:445.935000px;}
.x11{left:459.074986px;}
.x3a{left:465.915000px;}
.x2e{left:478.545000px;}
.x4{left:486.074986px;}
.x23{left:526.965000px;}
.x3b{left:533.445000px;}
.x2f{left:555.480000px;}
.x27{left:567.465000px;}
.x28{left:601.305000px;}
.x1a{left:616.860000px;}
.x29{left:634.965000px;}
.x3c{left:668.445000px;}
.x24{left:675.465000px;}
.x3d{left:749.490000px;}
.x36{left:823.650000px;}
.x12{left:866.309986px;}
.x1d{left:870.809986px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsd{letter-spacing:-0.688000pt;}
.ls13{letter-spacing:-0.544000pt;}
.ls29{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.230933pt;}
.ls15{letter-spacing:-0.183467pt;}
.ls1e{letter-spacing:-0.081067pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls1f{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:-0.007680pt;}
.lsb{letter-spacing:-0.003840pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.106240pt;}
.ls19{letter-spacing:0.154027pt;}
.ls1{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.183467pt;}
.ls2a{letter-spacing:0.183680pt;}
.ls18{letter-spacing:0.207360pt;}
.ls1c{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.231040pt;}
.ls2d{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.603307pt;}
.ls22{letter-spacing:0.607147pt;}
.ls24{letter-spacing:0.628480pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.655360pt;}
.lsc{letter-spacing:0.800000pt;}
.ls17{letter-spacing:2.240000pt;}
.ls5{letter-spacing:2.720000pt;}
.ls2b{letter-spacing:3.360000pt;}
.ls12{letter-spacing:4.000000pt;}
.ls6{letter-spacing:6.560000pt;}
.lsf{letter-spacing:7.200000pt;}
.ls1d{letter-spacing:11.040000pt;}
.ls2c{letter-spacing:13.600000pt;}
.ls10{letter-spacing:14.880000pt;}
.ls27{letter-spacing:34.080000pt;}
.ls11{letter-spacing:71.840000pt;}
.ls26{letter-spacing:76.320000pt;}
.ls28{letter-spacing:76.960000pt;}
.ls25{letter-spacing:81.440000pt;}
.lse{letter-spacing:102.080000pt;}
.ws2{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.049067pt;}
.ws0{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.592000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws4{word-spacing:-8.636160pt;}
.ws3{word-spacing:-8.632320pt;}
.wsb{word-spacing:-0.540160pt;}
.ws8{word-spacing:0.000000pt;}
.wse{word-spacing:0.640000pt;}
.wsd{word-spacing:93.104000pt;}
._11{margin-left:-3.293440pt;}
._9{margin-left:-2.290773pt;}
._1{margin-left:-1.298133pt;}
._0{width:1.168640pt;}
._2{width:2.892160pt;}
._a{width:3.966080pt;}
._f{width:5.312000pt;}
._10{width:6.852480pt;}
._5{width:8.392960pt;}
._6{width:9.508480pt;}
._c{width:10.464640pt;}
._b{width:11.739520pt;}
._4{width:14.714240pt;}
._3{width:15.776640pt;}
._12{width:16.785920pt;}
._24{width:18.167040pt;}
._15{width:19.601280pt;}
._1d{width:20.554667pt;}
._2a{width:21.802453pt;}
._1b{width:22.735360pt;}
._1a{width:23.638400pt;}
._8{width:24.670933pt;}
._7{width:25.603840pt;}
._20{width:26.784640pt;}
._1f{width:27.778560pt;}
._18{width:28.791040pt;}
._19{width:30.331520pt;}
._30{width:31.340800pt;}
._2b{width:32.562560pt;}
._21{width:33.571840pt;}
._1c{width:34.581120pt;}
._22{width:36.001067pt;}
._27{width:37.396480pt;}
._26{width:38.458880pt;}
._2c{width:39.521280pt;}
._13{width:41.168000pt;}
._14{width:42.336640pt;}
._e{width:43.983360pt;}
._d{width:44.886400pt;}
._29{width:45.882027pt;}
._28{width:46.958080pt;}
._2d{width:51.101440pt;}
._25{width:52.588800pt;}
._32{width:60.556800pt;}
._2f{width:63.291307pt;}
._2e{width:64.593920pt;}
._35{width:67.834240pt;}
._37{width:69.587200pt;}
._1e{width:71.775787pt;}
._3c{width:74.580480pt;}
._3a{width:76.877867pt;}
._3b{width:77.955627pt;}
._39{width:80.961067pt;}
._36{width:82.389120pt;}
._3d{width:83.929600pt;}
._31{width:87.376000pt;}
._33{width:95.669120pt;}
._16{width:102.248107pt;}
._23{width:114.546987pt;}
._17{width:116.492160pt;}
._38{width:129.347200pt;}
._34{width:151.232640pt;}
.fs5{font-size:5.120000pt;}
.fsc{font-size:10.880000pt;}
.fs8{font-size:16.000000pt;}
.fs7{font-size:21.120000pt;}
.fs2{font-size:26.880000pt;}
.fs4{font-size:32.000000pt;}
.fs1{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:48.128000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fsb{font-size:64.000000pt;}
.y62{bottom:-129.280000pt;}
.y61{bottom:-102.240000pt;}
.y60{bottom:-86.880000pt;}
.y5f{bottom:-71.520000pt;}
.y5e{bottom:-56.160000pt;}
.y5d{bottom:-40.800000pt;}
.y41{bottom:-25.920000pt;}
.y5c{bottom:-25.440000pt;}
.y40{bottom:-10.560000pt;}
.y5b{bottom:-10.080000pt;}
.y0{bottom:0.000000pt;}
.y16f{bottom:2.880000pt;}
.y15e{bottom:4.133333pt;}
.y18b{bottom:4.160000pt;}
.y18d{bottom:4.640000pt;}
.y160{bottom:4.706667pt;}
.y3f{bottom:4.800000pt;}
.y5a{bottom:5.120000pt;}
.y18e{bottom:5.280000pt;}
.y162{bottom:6.146667pt;}
.y164{bottom:9.533333pt;}
.y188{bottom:10.266667pt;}
.y15c{bottom:11.520000pt;}
.y1a7{bottom:12.640000pt;}
.y15a{bottom:15.746667pt;}
.y59{bottom:17.920000pt;}
.y178{bottom:18.234667pt;}
.y175{bottom:18.240000pt;}
.y58{bottom:22.080000pt;}
.y3e{bottom:24.640000pt;}
.y177{bottom:33.434667pt;}
.y190{bottom:33.440000pt;}
.y174{bottom:33.600000pt;}
.y3d{bottom:35.360000pt;}
.y57{bottom:37.440000pt;}
.y193{bottom:48.800000pt;}
.y173{bottom:48.960000pt;}
.y6a{bottom:51.072000pt;}
.y56{bottom:52.640000pt;}
.y3c{bottom:55.360000pt;}
.y172{bottom:64.320000pt;}
.y55{bottom:68.000000pt;}
.y69{bottom:68.992000pt;}
.y3b{bottom:70.720000pt;}
.y16d{bottom:78.720000pt;}
.y171{bottom:79.680000pt;}
.y3a{bottom:80.320000pt;}
.y54{bottom:83.386667pt;}
.y39{bottom:90.560000pt;}
.y16c{bottom:94.080000pt;}
.y53{bottom:98.746667pt;}
.y118{bottom:99.712000pt;}
.ybf{bottom:101.152000pt;}
.y1ba{bottom:104.032000pt;}
.y38{bottom:105.920000pt;}
.y36{bottom:106.272000pt;}
.ya0{bottom:110.432000pt;}
.y135{bottom:111.872000pt;}
.y52{bottom:114.106667pt;}
.y117{bottom:115.072000pt;}
.ybe{bottom:116.512000pt;}
.y1b9{bottom:119.392000pt;}
.y35{bottom:121.472000pt;}
.y9f{bottom:125.792000pt;}
.y176{bottom:126.112000pt;}
.y150{bottom:127.013333pt;}
.y134{bottom:127.232000pt;}
.yee{bottom:128.832000pt;}
.y51{bottom:129.466667pt;}
.y116{bottom:130.272000pt;}
.ybd{bottom:130.432000pt;}
.y1c7{bottom:131.872000pt;}
.y1b8{bottom:134.746667pt;}
.y34{bottom:136.826667pt;}
.ybc{bottom:139.546667pt;}
.y9e{bottom:141.146667pt;}
.y151{bottom:141.280000pt;}
.yed{bottom:142.426667pt;}
.y133{bottom:142.586667pt;}
.y115{bottom:144.186667pt;}
.y50{bottom:144.666667pt;}
.y1c6{bottom:147.226667pt;}
.y1b7{bottom:149.946667pt;}
.yec{bottom:150.266667pt;}
.y33{bottom:152.186667pt;}
.y114{bottom:153.306667pt;}
.ybb{bottom:154.906667pt;}
.y152{bottom:155.520000pt;}
.y9d{bottom:156.346667pt;}
.y132{bottom:157.946667pt;}
.y4f{bottom:160.026667pt;}
.y1c5{bottom:162.586667pt;}
.y1b6{bottom:165.306667pt;}
.yeb{bottom:165.626667pt;}
.y32{bottom:167.546667pt;}
.y113{bottom:168.666667pt;}
.y153{bottom:169.786667pt;}
.yba{bottom:170.266667pt;}
.y9c{bottom:171.706667pt;}
.y170{bottom:172.666667pt;}
.y131{bottom:173.306667pt;}
.y4e{bottom:175.386667pt;}
.y1c4{bottom:177.946667pt;}
.y1b5{bottom:180.666667pt;}
.y17a{bottom:180.893333pt;}
.yea{bottom:180.986667pt;}
.y31{bottom:182.906667pt;}
.y112{bottom:184.026667pt;}
.yb9{bottom:185.466667pt;}
.y9b{bottom:187.066667pt;}
.y130{bottom:187.226667pt;}
.y4d{bottom:190.746667pt;}
.y1c3{bottom:191.546667pt;}
.y1b4{bottom:196.026667pt;}
.ye9{bottom:196.346667pt;}
.y30{bottom:198.266667pt;}
.y154{bottom:198.306667pt;}
.y111{bottom:199.386667pt;}
.yb8{bottom:200.826667pt;}
.y9a{bottom:202.426667pt;}
.y4c{bottom:206.106667pt;}
.y17b{bottom:210.560000pt;}
.y1b3{bottom:211.386667pt;}
.ye8{bottom:211.546667pt;}
.y155{bottom:212.546667pt;}
.y2f{bottom:213.466667pt;}
.yb7{bottom:214.426667pt;}
.y110{bottom:214.586667pt;}
.y99{bottom:217.786667pt;}
.y4b{bottom:221.466667pt;}
.yb6{bottom:222.266667pt;}
.y189{bottom:225.280000pt;}
.y1b2{bottom:226.586667pt;}
.y156{bottom:226.813333pt;}
.ye7{bottom:226.906667pt;}
.y2e{bottom:228.826667pt;}
.y10f{bottom:229.946667pt;}
.y98{bottom:232.986667pt;}
.y4a{bottom:236.666667pt;}
.yb5{bottom:237.626667pt;}
.y17c{bottom:240.226667pt;}
.y157{bottom:241.093333pt;}
.y1b1{bottom:241.946667pt;}
.ye6{bottom:242.266667pt;}
.y2d{bottom:244.186667pt;}
.y10e{bottom:245.306667pt;}
.y1fe{bottom:246.906667pt;}
.y97{bottom:248.346667pt;}
.y49{bottom:252.026667pt;}
.yb4{bottom:252.986667pt;}
.y158{bottom:255.333333pt;}
.y1b0{bottom:257.306667pt;}
.ye5{bottom:257.626667pt;}
.y2c{bottom:259.586667pt;}
.y1e0{bottom:260.066667pt;}
.y10d{bottom:260.706667pt;}
.y1fd{bottom:262.306667pt;}
.y96{bottom:263.746667pt;}
.y1df{bottom:265.346667pt;}
.y16b{bottom:265.506667pt;}
.y48{bottom:267.386667pt;}
.yb3{bottom:268.386667pt;}
.y17d{bottom:269.893333pt;}
.y1af{bottom:272.706667pt;}
.ye4{bottom:273.026667pt;}
.y2b{bottom:274.946667pt;}
.y10c{bottom:276.066667pt;}
.y1fc{bottom:277.506667pt;}
.y95{bottom:279.106667pt;}
.y1de{bottom:280.706667pt;}
.y14e{bottom:281.186667pt;}
.yb2{bottom:282.626667pt;}
.y47{bottom:282.746667pt;}
.y64{bottom:283.400000pt;}
.y1ae{bottom:288.066667pt;}
.ye3{bottom:288.226667pt;}
.y1c2{bottom:289.666667pt;}
.y2a{bottom:290.306667pt;}
.y10b{bottom:291.426667pt;}
.yb1{bottom:292.866667pt;}
.y12e{bottom:293.026667pt;}
.y94{bottom:294.466667pt;}
.y1dd{bottom:295.906667pt;}
.y1c1{bottom:297.506667pt;}
.y14d{bottom:297.666667pt;}
.y46{bottom:298.106667pt;}
.y17e{bottom:299.546667pt;}
.y12f{bottom:301.986667pt;}
.y12d{bottom:302.146667pt;}
.y1ad{bottom:303.426667pt;}
.ye2{bottom:303.586667pt;}
.y29{bottom:305.506667pt;}
.y10a{bottom:306.626667pt;}
.yb0{bottom:308.226667pt;}
.y159{bottom:309.693333pt;}
.y93{bottom:309.826667pt;}
.y14c{bottom:309.986667pt;}
.y1dc{bottom:311.266667pt;}
.y14f{bottom:311.520000pt;}
.y1c0{bottom:312.866667pt;}
.y45{bottom:313.506667pt;}
.y12c{bottom:317.506667pt;}
.y1ac{bottom:318.626667pt;}
.ye1{bottom:318.946667pt;}
.y28{bottom:320.866667pt;}
.y109{bottom:321.986667pt;}
.yaf{bottom:323.586667pt;}
.y92{bottom:325.026667pt;}
.y1db{bottom:325.186667pt;}
.y1bf{bottom:328.226667pt;}
.y44{bottom:328.706667pt;}
.y17f{bottom:329.213333pt;}
.y12b{bottom:332.706667pt;}
.y1ab{bottom:333.986667pt;}
.ye0{bottom:334.306667pt;}
.y27{bottom:336.226667pt;}
.y108{bottom:337.346667pt;}
.y1fb{bottom:337.506667pt;}
.yae{bottom:338.946667pt;}
.y91{bottom:340.386667pt;}
.y1be{bottom:343.426667pt;}
.y43{bottom:344.066667pt;}
.y1fa{bottom:346.626667pt;}
.y12a{bottom:348.066667pt;}
.y1aa{bottom:349.346667pt;}
.ydf{bottom:349.666667pt;}
.y26{bottom:351.586667pt;}
.y107{bottom:352.706667pt;}
.yad{bottom:354.306667pt;}
.y90{bottom:355.746667pt;}
.y16e{bottom:356.706667pt;}
.y1bd{bottom:358.786667pt;}
.y180{bottom:358.880000pt;}
.y1f9{bottom:361.826667pt;}
.y129{bottom:363.426667pt;}
.y1a9{bottom:364.706667pt;}
.yde{bottom:365.026667pt;}
.y106{bottom:366.626667pt;}
.y25{bottom:366.946667pt;}
.yac{bottom:369.506667pt;}
.y8f{bottom:371.106667pt;}
.y1bc{bottom:372.386667pt;}
.y16a{bottom:375.586667pt;}
.y105{bottom:375.746667pt;}
.y1f8{bottom:377.186667pt;}
.y1a8{bottom:377.826667pt;}
.y128{bottom:378.786667pt;}
.ydd{bottom:380.226667pt;}
.y24{bottom:382.146667pt;}
.yab{bottom:383.426667pt;}
.y8e{bottom:386.466667pt;}
.y181{bottom:388.546667pt;}
.y169{bottom:390.786667pt;}
.y104{bottom:390.946667pt;}
.yaa{bottom:392.546667pt;}
.y127{bottom:394.146667pt;}
.ydc{bottom:395.586667pt;}
.y23{bottom:397.506667pt;}
.y8d{bottom:401.826667pt;}
.y168{bottom:403.586667pt;}
.y103{bottom:406.306667pt;}
.y167{bottom:407.746667pt;}
.ya9{bottom:407.906667pt;}
.y126{bottom:409.346667pt;}
.y22{bottom:410.306667pt;}
.ydb{bottom:410.946667pt;}
.y21{bottom:414.466667pt;}
.y8c{bottom:417.026667pt;}
.y182{bottom:418.240000pt;}
.y42{bottom:418.626667pt;}
.y102{bottom:421.666667pt;}
.y166{bottom:423.106667pt;}
.ya8{bottom:423.266667pt;}
.y125{bottom:424.706667pt;}
.yda{bottom:426.306667pt;}
.y1a6{bottom:429.346667pt;}
.y20{bottom:429.826667pt;}
.y8b{bottom:432.386667pt;}
.y165{bottom:435.426667pt;}
.y186{bottom:436.160000pt;}
.y185{bottom:436.800000pt;}
.y179{bottom:436.960000pt;}
.y101{bottom:437.026667pt;}
.ya7{bottom:438.626667pt;}
.y1bb{bottom:439.906667pt;}
.y163{bottom:440.000000pt;}
.y124{bottom:440.066667pt;}
.y1da{bottom:440.226667pt;}
.yd9{bottom:441.666667pt;}
.y1f{bottom:445.026667pt;}
.y1a5{bottom:445.346667pt;}
.y8a{bottom:447.746667pt;}
.y183{bottom:447.906667pt;}
.y1d9{bottom:449.346667pt;}
.y100{bottom:452.386667pt;}
.ya6{bottom:453.826667pt;}
.y123{bottom:453.986667pt;}
.yd8{bottom:457.026667pt;}
.y1e{bottom:460.386667pt;}
.y1a4{bottom:461.346667pt;}
.y89{bottom:463.106667pt;}
.y1d8{bottom:464.546667pt;}
.yff{bottom:467.746667pt;}
.ya5{bottom:469.186667pt;}
.yd7{bottom:470.786667pt;}
.y184{bottom:473.733333pt;}
.y1d{bottom:475.746667pt;}
.y1f7{bottom:476.866667pt;}
.y1a3{bottom:477.346667pt;}
.y88{bottom:478.466667pt;}
.yd6{bottom:479.906667pt;}
.yfe{bottom:482.946667pt;}
.ya4{bottom:484.546667pt;}
.y1c{bottom:489.693333pt;}
.y1f6{bottom:492.253333pt;}
.y1a2{bottom:493.373333pt;}
.y87{bottom:493.853333pt;}
.yd5{bottom:495.293333pt;}
.yfd{bottom:498.333333pt;}
.ya3{bottom:499.933333pt;}
.y1b{bottom:500.253333pt;}
.y1f5{bottom:507.613333pt;}
.y86{bottom:509.053333pt;}
.yd4{bottom:510.653333pt;}
.yfc{bottom:513.693333pt;}
.ya2{bottom:515.293333pt;}
.y1a{bottom:515.613333pt;}
.y1f4{bottom:522.973333pt;}
.y85{bottom:524.413333pt;}
.y1a1{bottom:524.733333pt;}
.yd3{bottom:526.013333pt;}
.yfb{bottom:529.053333pt;}
.ya1{bottom:529.533333pt;}
.y19{bottom:529.853333pt;}
.y1f3{bottom:538.173333pt;}
.y1d7{bottom:539.613333pt;}
.y84{bottom:539.773333pt;}
.y18{bottom:540.093333pt;}
.yd2{bottom:541.373333pt;}
.yfa{bottom:544.413333pt;}
.y1d6{bottom:547.453333pt;}
.y15b{bottom:548.000000pt;}
.y161{bottom:550.720000pt;}
.y1f2{bottom:552.093333pt;}
.y63{bottom:552.573333pt;}
.y15f{bottom:552.800000pt;}
.y15d{bottom:554.720000pt;}
.y83{bottom:555.133333pt;}
.y17{bottom:555.453333pt;}
.y1a0{bottom:556.093333pt;}
.yd1{bottom:556.573333pt;}
.yf9{bottom:559.773333pt;}
.y1f1{bottom:561.213333pt;}
.y1d5{bottom:562.813333pt;}
.y122{bottom:569.053333pt;}
.y82{bottom:570.493333pt;}
.y16{bottom:570.813333pt;}
.yd0{bottom:571.933333pt;}
.y19f{bottom:572.093333pt;}
.yf8{bottom:574.973333pt;}
.y1f0{bottom:576.573333pt;}
.y121{bottom:578.173333pt;}
.y81{bottom:585.693333pt;}
.y15{bottom:586.173333pt;}
.ycf{bottom:587.293333pt;}
.y19e{bottom:588.093333pt;}
.yf7{bottom:588.253333pt;}
.y1ef{bottom:591.933333pt;}
.y120{bottom:593.373333pt;}
.yf6{bottom:594.973333pt;}
.y80{bottom:601.053333pt;}
.y14{bottom:601.533333pt;}
.yce{bottom:602.653333pt;}
.y1ee{bottom:605.533333pt;}
.y19d{bottom:606.973333pt;}
.y11f{bottom:608.733333pt;}
.yf5{bottom:610.333333pt;}
.y1ed{bottom:613.373333pt;}
.y7f{bottom:616.413333pt;}
.y13{bottom:616.893333pt;}
.ycd{bottom:618.013333pt;}
.y19c{bottom:620.573333pt;}
.y1d4{bottom:622.653333pt;}
.y11e{bottom:624.093333pt;}
.yf4{bottom:625.693333pt;}
.y19b{bottom:628.413333pt;}
.y1ec{bottom:628.733333pt;}
.y12{bottom:631.453333pt;}
.y7e{bottom:631.773333pt;}
.ycc{bottom:633.373333pt;}
.y11d{bottom:639.453333pt;}
.yf3{bottom:640.893333pt;}
.y11{bottom:642.173333pt;}
.y19a{bottom:643.773333pt;}
.y1eb{bottom:644.093333pt;}
.y7d{bottom:647.133333pt;}
.ycb{bottom:648.573333pt;}
.y10{bottom:652.893333pt;}
.y11c{bottom:654.813333pt;}
.yf2{bottom:656.253333pt;}
.y199{bottom:659.133333pt;}
.y1ea{bottom:659.293333pt;}
.y7c{bottom:662.493333pt;}
.yf{bottom:662.973333pt;}
.yca{bottom:663.933333pt;}
.y14b{bottom:668.573333pt;}
.y13e{bottom:669.853333pt;}
.y11b{bottom:670.173333pt;}
.yf1{bottom:671.613333pt;}
.ye{bottom:672.093333pt;}
.y198{bottom:674.493333pt;}
.y1e9{bottom:674.653333pt;}
.y7b{bottom:677.693333pt;}
.yc9{bottom:679.293333pt;}
.y14a{bottom:683.933333pt;}
.y11a{bottom:685.373333pt;}
.yf0{bottom:686.973333pt;}
.yd{bottom:687.293333pt;}
.y1e8{bottom:688.253333pt;}
.y197{bottom:689.693333pt;}
.y7a{bottom:693.053333pt;}
.yc8{bottom:693.213333pt;}
.y1e7{bottom:696.093333pt;}
.y119{bottom:699.293333pt;}
.yc7{bottom:702.333333pt;}
.yc{bottom:702.653333pt;}
.y196{bottom:705.053333pt;}
.y1d3{bottom:706.973333pt;}
.y79{bottom:708.413333pt;}
.y1e6{bottom:711.453333pt;}
.y149{bottom:714.493333pt;}
.y1d2{bottom:716.093333pt;}
.yc6{bottom:717.693333pt;}
.yb{bottom:718.013333pt;}
.y195{bottom:720.453333pt;}
.y78{bottom:723.813333pt;}
.y1e5{bottom:726.853333pt;}
.y148{bottom:729.893333pt;}
.y1d1{bottom:731.493333pt;}
.yc5{bottom:732.933333pt;}
.ya{bottom:733.413333pt;}
.y194{bottom:733.573333pt;}
.y77{bottom:739.173333pt;}
.y1e4{bottom:742.213333pt;}
.y147{bottom:745.253333pt;}
.y1d0{bottom:746.853333pt;}
.yc4{bottom:748.293333pt;}
.y9{bottom:748.773333pt;}
.y13d{bottom:753.093333pt;}
.y76{bottom:754.533333pt;}
.y1e3{bottom:757.573333pt;}
.y146{bottom:760.613333pt;}
.y1cf{bottom:761.093333pt;}
.y13c{bottom:762.053333pt;}
.yc3{bottom:763.653333pt;}
.y8{bottom:765.573333pt;}
.y75{bottom:769.733333pt;}
.y1e2{bottom:770.853333pt;}
.y1ce{bottom:771.333333pt;}
.y145{bottom:775.973333pt;}
.yef{bottom:777.253333pt;}
.y13b{bottom:777.413333pt;}
.yc2{bottom:779.013333pt;}
.y192{bottom:780.293333pt;}
.y74{bottom:785.093333pt;}
.y1cd{bottom:786.693333pt;}
.y7{bottom:791.173333pt;}
.y144{bottom:791.333333pt;}
.y13a{bottom:792.773333pt;}
.yc1{bottom:794.373333pt;}
.y73{bottom:800.453333pt;}
.y1cc{bottom:802.053333pt;}
.y143{bottom:806.533333pt;}
.yc0{bottom:807.973333pt;}
.y139{bottom:808.133333pt;}
.y37{bottom:810.853333pt;}
.y72{bottom:815.813333pt;}
.y6{bottom:818.373333pt;}
.y142{bottom:821.893333pt;}
.y138{bottom:823.493333pt;}
.y1cb{bottom:824.933333pt;}
.y71{bottom:831.173333pt;}
.y141{bottom:837.253333pt;}
.y1e1{bottom:837.413333pt;}
.y137{bottom:838.853333pt;}
.y1ca{bottom:840.293333pt;}
.y191{bottom:842.213333pt;}
.y5{bottom:842.693333pt;}
.y70{bottom:846.373333pt;}
.y136{bottom:852.613333pt;}
.y1c9{bottom:855.653333pt;}
.y6f{bottom:861.733333pt;}
.y187{bottom:861.920000pt;}
.y140{bottom:867.973333pt;}
.y1c8{bottom:869.253333pt;}
.y18a{bottom:872.773333pt;}
.y18c{bottom:874.693333pt;}
.y6e{bottom:877.093333pt;}
.y13f{bottom:882.213333pt;}
.y18f{bottom:888.933333pt;}
.y6d{bottom:892.453333pt;}
.y6c{bottom:907.813333pt;}
.y6b{bottom:923.173333pt;}
.y4{bottom:949.600000pt;}
.y68{bottom:950.400000pt;}
.y3{bottom:964.960000pt;}
.y67{bottom:965.760000pt;}
.y2{bottom:980.160000pt;}
.y66{bottom:980.960000pt;}
.y1{bottom:995.520000pt;}
.y65{bottom:996.320000pt;}
.h11{height:3.575000pt;}
.hb{height:3.612500pt;}
.h34{height:7.596875pt;}
.h16{height:11.171875pt;}
.h14{height:14.746875pt;}
.h15{height:14.901562pt;}
.h23{height:15.200000pt;}
.h30{height:15.360000pt;}
.h32{height:15.392000pt;}
.h2c{height:18.400000pt;}
.h7{height:18.768750pt;}
.ha{height:18.965625pt;}
.h2b{height:19.040000pt;}
.h2d{height:20.160000pt;}
.he{height:22.343750pt;}
.h9{height:22.578125pt;}
.h1d{height:22.880000pt;}
.h1e{height:23.360000pt;}
.hf{height:24.131250pt;}
.h1f{height:24.800000pt;}
.h33{height:25.120000pt;}
.h8{height:26.190625pt;}
.h2a{height:30.080000pt;}
.h1c{height:30.240000pt;}
.h31{height:30.720000pt;}
.h28{height:36.445312pt;}
.h1{height:37.090625pt;}
.h2{height:37.479688pt;}
.h3{height:38.672812pt;}
.h4{height:39.840000pt;}
.h17{height:41.112500pt;}
.h5{height:42.691250pt;}
.h6{height:42.851250pt;}
.hc{height:43.782500pt;}
.h21{height:44.687500pt;}
.h1b{height:45.156250pt;}
.h26{height:45.920000pt;}
.h2e{height:46.080000pt;}
.h19{height:47.742188pt;}
.h1a{height:47.869500pt;}
.h13{height:58.563750pt;}
.h2f{height:61.280000pt;}
.h24{height:90.400000pt;}
.h25{height:92.032000pt;}
.h22{height:106.400000pt;}
.hd{height:118.400000pt;}
.h20{height:180.480000pt;}
.h12{height:297.306667pt;}
.h18{height:326.560000pt;}
.h10{height:356.546667pt;}
.h27{height:498.560000pt;}
.h29{height:498.720000pt;}
.h0{height:1056.000000pt;}
.w9{width:17.760000pt;}
.w12{width:29.280000pt;}
.w10{width:35.360000pt;}
.w11{width:35.392000pt;}
.w4{width:44.992000pt;}
.wc{width:47.360000pt;}
.w1f{width:59.200000pt;}
.w1e{width:59.232000pt;}
.w1b{width:64.960000pt;}
.wa{width:65.280000pt;}
.w1d{width:71.200000pt;}
.w1c{width:71.232000pt;}
.w16{width:72.640000pt;}
.w17{width:84.640000pt;}
.w18{width:90.720000pt;}
.wb{width:113.312000pt;}
.w1a{width:119.392000pt;}
.we{width:131.360000pt;}
.wf{width:131.552000pt;}
.wd{width:143.386667pt;}
.w8{width:220.480000pt;}
.w6{width:242.720000pt;}
.w15{width:280.320000pt;}
.w7{width:293.760000pt;}
.w3{width:470.813333pt;}
.w2{width:536.733333pt;}
.w20{width:575.133333pt;}
.w19{width:647.173333pt;}
.w5{width:672.640000pt;}
.w13{width:677.920000pt;}
.w14{width:678.080000pt;}
.w21{width:695.173333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.880000pt;}
.xf{left:9.600000pt;}
.x1c{left:14.912000pt;}
.xc{left:17.600000pt;}
.x21{left:19.520000pt;}
.xa{left:23.520000pt;}
.x31{left:26.720000pt;}
.x6{left:29.920000pt;}
.x13{left:35.840000pt;}
.x10{left:42.080000pt;}
.x2b{left:45.413333pt;}
.x2a{left:53.413333pt;}
.x16{left:74.973333pt;}
.x35{left:84.320000pt;}
.x2{left:96.031988pt;}
.x1b{left:101.440000pt;}
.x18{left:125.920000pt;}
.x30{left:137.373333pt;}
.x1f{left:162.426667pt;}
.x32{left:171.066667pt;}
.x9{left:175.400000pt;}
.x7{left:179.560000pt;}
.x5{left:182.106667pt;}
.x3{left:188.026655pt;}
.xd{left:197.000000pt;}
.x37{left:204.346667pt;}
.x17{left:206.400000pt;}
.x2d{left:211.746667pt;}
.x14{left:222.906667pt;}
.xb{left:231.560000pt;}
.x2c{left:236.026667pt;}
.x1{left:240.026655pt;}
.xe{left:248.026667pt;}
.x15{left:254.626667pt;}
.x8{left:268.200000pt;}
.x38{left:270.106667pt;}
.x20{left:276.386667pt;}
.x33{left:299.746667pt;}
.x22{left:324.386667pt;}
.x39{left:342.146667pt;}
.x34{left:345.346667pt;}
.x25{left:360.386667pt;}
.x19{left:380.320000pt;}
.x26{left:396.386667pt;}
.x11{left:408.066655pt;}
.x3a{left:414.146667pt;}
.x2e{left:425.373333pt;}
.x4{left:432.066655pt;}
.x23{left:468.413333pt;}
.x3b{left:474.173333pt;}
.x2f{left:493.760000pt;}
.x27{left:504.413333pt;}
.x28{left:534.493333pt;}
.x1a{left:548.320000pt;}
.x29{left:564.413333pt;}
.x3c{left:594.173333pt;}
.x24{left:600.413333pt;}
.x3d{left:666.213333pt;}
.x36{left:732.133333pt;}
.x12{left:770.053321pt;}
.x1d{left:774.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; }
  