
    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_5bed4134832445b86f830b48.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a1700f3ef06c1d8d8cbd3b0c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_36625ce3b9deb0a726f8173f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.800293;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_e100ee48f25f035880a3c022.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0e04b9effae546a765ec95ae.woff')format("woff");}.ff5{font-family:ff5;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9d4d062ff7076cd3d5c86b16.woff')format("woff");}.ff6{font-family:ff6;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_31ef8a64b294777d2f78f81f.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cfd88c94ba705ce48d8e473a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_815bee6d815b20454e3e4016.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_29d49e0c1daa287471129f29.woff')format("woff");}.ffa{font-family:ffa;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_26f0a0b7d195402664a8eea9.woff')format("woff");}.ffb{font-family:ffb;line-height:0.977539;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_bb44b3ed1b05be50cc6a99f9.woff')format("woff");}.ffc{font-family:ffc;line-height:0.688477;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_2f13d0de4ca458a4771078ba.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fb05aa142eaa72b42521c0b9.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3e07b835d915d54eb0893e85.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_366814855ee03cb19eaf9dac.woff')format("woff");}.ff10{font-family:ff10;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;}
.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;}
.ls13{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.172800px;}
.ls5{letter-spacing:-0.162000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.432000px;}
.lse{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.708000px;}
.lsd{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.840000px;}
.lsf{letter-spacing:2.160000px;}
.lsc{letter-spacing:14.220000px;}
.ls8{letter-spacing:33.960000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-72.000000px;}
.wsd{word-spacing:-18.720000px;}
.ws10{word-spacing:-18.576000px;}
.wsf{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.ws12{word-spacing:-17.496000px;}
.wsb{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.128000px;}
.ws1{word-spacing:-13.147200px;}
.ws6{word-spacing:-11.880000px;}
.ws3{word-spacing:-10.908000px;}
.ws7{word-spacing:-10.612800px;}
.ws4{word-spacing:-10.422000px;}
.ws2{word-spacing:-9.937440px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.622880px;}
._1{width:1.069440px;}
._3{width:2.273280px;}
._2{width:4.039920px;}
._6{width:5.394480px;}
._7{width:7.259040px;}
._4{width:8.426160px;}
._b{width:9.561600px;}
._a{width:10.577520px;}
._c{width:11.798880px;}
._13{width:13.404000px;}
._12{width:14.904000px;}
._5{width:16.260960px;}
._19{width:19.024800px;}
._9{width:20.916000px;}
._8{width:21.928320px;}
._f{width:23.762640px;}
._14{width:25.125360px;}
._11{width:26.136000px;}
._10{width:27.144000px;}
._d{width:28.146960px;}
._1a{width:29.237040px;}
._e{width:30.352800px;}
._21{width:31.680000px;}
._18{width:32.997120px;}
._17{width:34.310880px;}
._15{width:35.352000px;}
._16{width:36.792000px;}
._1d{width:38.232000px;}
._1e{width:39.432000px;}
._22{width:41.808000px;}
._1b{width:43.056000px;}
._1c{width:44.833440px;}
._1f{width:46.368000px;}
._20{width:47.724000px;}
._23{width:49.402560px;}
._24{width:51.768000px;}
._25{width:52.920000px;}
.fc8{color:rgb(0,0,255);}
.fc6{color:rgb(79,129,189);}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc7{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs8{font-size:36.000000px;}
.fs0{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs5{font-size:108.000000px;}
.y3a{bottom:-10.980000px;}
.y35{bottom:-0.210000px;}
.y0{bottom:0.000000px;}
.y33{bottom:2.490000px;}
.ye1{bottom:3.960000px;}
.y153{bottom:4.125000px;}
.ye9{bottom:4.140000px;}
.y3{bottom:4.500000px;}
.y6d{bottom:4.680000px;}
.y91{bottom:4.860000px;}
.y18e{bottom:4.860150px;}
.y3d{bottom:5.400000px;}
.y18b{bottom:6.840000px;}
.y17e{bottom:7.005000px;}
.y39{bottom:8.100000px;}
.y3c{bottom:12.240000px;}
.y18d{bottom:13.139850px;}
.ydf{bottom:13.500000px;}
.y148{bottom:13.680000px;}
.yfd{bottom:14.220000px;}
.y141{bottom:14.580000px;}
.y90{bottom:14.940000px;}
.y6c{bottom:15.120000px;}
.yb0{bottom:15.480000px;}
.y160{bottom:15.840000px;}
.y1cf{bottom:16.740000px;}
.y17c{bottom:17.805000px;}
.y189{bottom:17.820000px;}
.y43{bottom:22.680000px;}
.ye0{bottom:22.860000px;}
.yee{bottom:23.040000px;}
.y152{bottom:23.070000px;}
.ye8{bottom:23.085000px;}
.y2{bottom:24.660000px;}
.y193{bottom:28.620000px;}
.y197{bottom:28.665000px;}
.y17d{bottom:28.785000px;}
.y186{bottom:28.800000px;}
.yf1{bottom:32.400000px;}
.y146{bottom:32.580000px;}
.y151{bottom:32.610000px;}
.ye4{bottom:32.625000px;}
.y3e{bottom:35.280000px;}
.y181{bottom:39.585000px;}
.y188{bottom:39.600000px;}
.y199{bottom:39.645000px;}
.y37{bottom:41.940000px;}
.y14a{bottom:42.120000px;}
.yf8{bottom:42.150000px;}
.ye7{bottom:42.165000px;}
.y1{bottom:42.660000px;}
.y3b{bottom:50.040000px;}
.y183{bottom:50.565000px;}
.y185{bottom:50.580000px;}
.y196{bottom:50.625000px;}
.yf0{bottom:51.480000px;}
.yfb{bottom:51.510000px;}
.ye3{bottom:51.525000px;}
.yeb{bottom:60.840000px;}
.y14d{bottom:60.870000px;}
.y149{bottom:61.020000px;}
.yf4{bottom:61.050000px;}
.ye6{bottom:61.065000px;}
.y191{bottom:61.380000px;}
.y180{bottom:61.545000px;}
.y187{bottom:61.560000px;}
.yef{bottom:70.380000px;}
.y14c{bottom:70.410000px;}
.y147{bottom:70.560000px;}
.yfa{bottom:70.590000px;}
.y182{bottom:72.345000px;}
.y192{bottom:72.360000px;}
.y18a{bottom:72.390000px;}
.y198{bottom:72.405000px;}
.yed{bottom:79.920000px;}
.yf3{bottom:79.950000px;}
.ye5{bottom:79.965000px;}
.yf9{bottom:89.490000px;}
.y194{bottom:94.140000px;}
.yec{bottom:98.820000px;}
.y14e{bottom:98.850000px;}
.yf7{bottom:99.030000px;}
.y31{bottom:100.230000px;}
.y18c{bottom:111.780000px;}
.ycc{bottom:113.580000px;}
.y6b{bottom:113.940000px;}
.y174{bottom:117.000000px;}
.yf6{bottom:117.930000px;}
.y1ce{bottom:122.040000px;}
.y1b6{bottom:125.280000px;}
.y11f{bottom:129.960000px;}
.y15f{bottom:130.320000px;}
.yaf{bottom:131.580000px;}
.y140{bottom:133.020000px;}
.y184{bottom:134.280000px;}
.ydd{bottom:135.180000px;}
.yf5{bottom:137.010000px;}
.y6a{bottom:137.700000px;}
.y1e7{bottom:139.140000px;}
.y173{bottom:140.760000px;}
.y2f{bottom:140.940000px;}
.y1cd{bottom:145.800000px;}
.y1b5{bottom:149.040000px;}
.y15e{bottom:154.080000px;}
.ycb{bottom:155.880000px;}
.y13f{bottom:156.780000px;}
.ydc{bottom:158.940000px;}
.y69{bottom:161.460000px;}
.y1e6{bottom:162.900000px;}
.y2e{bottom:163.800000px;}
.y172{bottom:164.520000px;}
.y11e{bottom:168.840000px;}
.y1cc{bottom:169.740000px;}
.yae{bottom:170.460000px;}
.y1b4{bottom:172.800000px;}
.y15d{bottom:178.020000px;}
.y1fe{bottom:179.100000px;}
.yca{bottom:179.640000px;}
.ydb{bottom:182.880000px;}
.y2d{bottom:183.960000px;}
.y8f{bottom:185.220000px;}
.y215{bottom:187.740000px;}
.y11d{bottom:192.600000px;}
.y1cb{bottom:193.500000px;}
.y13e{bottom:195.660000px;}
.y68{bottom:200.340000px;}
.y1e5{bottom:201.780000px;}
.y1fd{bottom:202.860000px;}
.yc9{bottom:203.400000px;}
.y1b3{bottom:203.580000px;}
.y2c{bottom:204.120000px;}
.yda{bottom:206.670000px;}
.yad{bottom:209.190000px;}
.y210{bottom:211.710000px;}
.y11c{bottom:216.390000px;}
.y15c{bottom:216.750000px;}
.y1ca{bottom:217.290000px;}
.y13d{bottom:219.450000px;}
.y17f{bottom:222.345000px;}
.y67{bottom:224.130000px;}
.y1e4{bottom:225.570000px;}
.y2b{bottom:225.930000px;}
.y1fc{bottom:226.650000px;}
.yc8{bottom:227.190000px;}
.yd9{bottom:230.430000px;}
.y20f{bottom:235.470000px;}
.y11b{bottom:240.150000px;}
.y15b{bottom:240.510000px;}
.y1c9{bottom:241.050000px;}
.y1b2{bottom:242.670000px;}
.y13c{bottom:243.210000px;}
.y66{bottom:247.890000px;}
.yac{bottom:248.070000px;}
.y2a{bottom:248.430000px;}
.y171{bottom:250.950000px;}
.yd8{bottom:254.190000px;}
.y11a{bottom:264.090000px;}
.y15a{bottom:264.450000px;}
.y1fb{bottom:265.530000px;}
.yc7{bottom:266.070000px;}
.y1b1{bottom:266.610000px;}
.y13b{bottom:266.970000px;}
.y65{bottom:271.830000px;}
.y20e{bottom:274.350000px;}
.y170{bottom:274.710000px;}
.yd7{bottom:278.130000px;}
.y29{bottom:279.030000px;}
.y8e{bottom:286.590000px;}
.y119{bottom:287.850000px;}
.y159{bottom:288.210000px;}
.y1fa{bottom:289.290000px;}
.yc6{bottom:289.830000px;}
.y1b0{bottom:290.370000px;}
.y64{bottom:295.590000px;}
.y20d{bottom:298.110000px;}
.y16f{bottom:298.650000px;}
.yd6{bottom:301.890000px;}
.y28{bottom:305.130000px;}
.y13a{bottom:305.850000px;}
.y17b{bottom:310.365000px;}
.y8d{bottom:310.530000px;}
.y1c8{bottom:310.890000px;}
.y118{bottom:311.610000px;}
.y158{bottom:311.970000px;}
.y1f9{bottom:313.050000px;}
.yc5{bottom:313.590000px;}
.y1af{bottom:314.130000px;}
.y63{bottom:319.350000px;}
.yab{bottom:319.530000px;}
.y20c{bottom:321.870000px;}
.y16e{bottom:322.410000px;}
.y27{bottom:324.930000px;}
.yd5{bottom:325.650000px;}
.y1e3{bottom:327.090000px;}
.y139{bottom:329.610000px;}
.y1c7{bottom:334.830000px;}
.y117{bottom:335.370000px;}
.y157{bottom:335.730000px;}
.y1f8{bottom:336.810000px;}
.yc4{bottom:337.530000px;}
.y1ae{bottom:337.890000px;}
.y26{bottom:344.910000px;}
.y8c{bottom:349.230000px;}
.y1e2{bottom:350.850000px;}
.y16d{bottom:353.010000px;}
.y138{bottom:353.370000px;}
.yd4{bottom:358.050000px;}
.y62{bottom:358.230000px;}
.y1c6{bottom:358.590000px;}
.y116{bottom:359.130000px;}
.y156{bottom:359.670000px;}
.y20b{bottom:360.750000px;}
.yc3{bottom:361.290000px;}
.y25{bottom:364.710000px;}
.y8b{bottom:372.990000px;}
.y1e1{bottom:374.610000px;}
.y1f7{bottom:375.690000px;}
.y1ad{bottom:376.770000px;}
.y17a{bottom:376.950000px;}
.y61{bottom:381.990000px;}
.y1c5{bottom:382.350000px;}
.y115{bottom:383.250000px;}
.y24{bottom:384.510000px;}
.yc2{bottom:385.050000px;}
.y155{bottom:390.270000px;}
.yd3{bottom:391.350000px;}
.y137{bottom:392.250000px;}
.y8a{bottom:396.930000px;}
.y1f6{bottom:399.450000px;}
.y1ac{bottom:400.530000px;}
.y23{bottom:404.310000px;}
.y60{bottom:405.750000px;}
.yaa{bottom:405.930000px;}
.y114{bottom:406.110000px;}
.y20a{bottom:408.270000px;}
.yc1{bottom:408.810000px;}
.y1e0{bottom:413.490000px;}
.y154{bottom:414.390000px;}
.yd2{bottom:415.110000px;}
.y136{bottom:416.010000px;}
.y89{bottom:420.690000px;}
.y214{bottom:423.210000px;}
.y22{bottom:424.110000px;}
.y1ab{bottom:424.290000px;}
.y5f{bottom:429.510000px;}
.ya9{bottom:429.690000px;}
.y113{bottom:430.050000px;}
.y150{bottom:431.505000px;}
.y209{bottom:432.030000px;}
.yc0{bottom:432.750000px;}
.y1df{bottom:437.250000px;}
.y1f5{bottom:438.330000px;}
.yd1{bottom:438.870000px;}
.y135{bottom:439.770000px;}
.y21{bottom:444.135000px;}
.y88{bottom:444.495000px;}
.y213{bottom:447.195000px;}
.y1aa{bottom:448.275000px;}
.y5e{bottom:453.495000px;}
.y112{bottom:453.855000px;}
.y16c{bottom:454.935000px;}
.ybf{bottom:456.555000px;}
.y1de{bottom:461.055000px;}
.y1f4{bottom:462.135000px;}
.yd0{bottom:462.675000px;}
.y134{bottom:463.755000px;}
.y20{bottom:463.935000px;}
.y1c4{bottom:468.795000px;}
.y208{bottom:470.955000px;}
.y1a9{bottom:472.035000px;}
.y5d{bottom:477.255000px;}
.y111{bottom:477.615000px;}
.y16b{bottom:478.695000px;}
.ybe{bottom:480.315000px;}
.y87{bottom:483.375000px;}
.y1f{bottom:483.735000px;}
.y1f3{bottom:485.895000px;}
.y133{bottom:487.515000px;}
.y1c3{bottom:492.555000px;}
.y207{bottom:494.715000px;}
.y1a8{bottom:495.795000px;}
.y1dd{bottom:499.935000px;}
.y5c{bottom:501.015000px;}
.y110{bottom:501.375000px;}
.y179{bottom:502.455000px;}
.y1e{bottom:503.535000px;}
.ybd{bottom:504.075000px;}
.ycf{bottom:504.255000px;}
.y86{bottom:507.135000px;}
.y212{bottom:509.655000px;}
.ya8{bottom:510.195000px;}
.y1c2{bottom:516.495000px;}
.y16a{bottom:517.575000px;}
.y206{bottom:518.475000px;}
.yfc{bottom:521.715000px;}
.y1d{bottom:523.335000px;}
.y1dc{bottom:523.695000px;}
.y5b{bottom:524.775000px;}
.y10f{bottom:525.315000px;}
.y132{bottom:526.215000px;}
.y1a7{bottom:526.575000px;}
.y14f{bottom:527.295000px;}
.ybc{bottom:528.015000px;}
.y85{bottom:530.895000px;}
.y211{bottom:533.595000px;}
.ya7{bottom:533.955000px;}
.y1c1{bottom:540.255000px;}
.y178{bottom:541.335000px;}
.y1c{bottom:543.315000px;}
.y1db{bottom:547.455000px;}
.y1f2{bottom:548.535000px;}
.y131{bottom:550.155000px;}
.ybb{bottom:551.775000px;}
.y84{bottom:554.655000px;}
.y10e{bottom:555.915000px;}
.y169{bottom:556.275000px;}
.y205{bottom:557.355000px;}
.ya6{bottom:557.715000px;}
.y1b{bottom:563.115000px;}
.y5a{bottom:563.655000px;}
.y1c0{bottom:564.015000px;}
.y1a6{bottom:565.635000px;}
.y1f1{bottom:572.295000px;}
.yba{bottom:575.535000px;}
.y83{bottom:578.595000px;}
.y168{bottom:580.035000px;}
.y204{bottom:581.115000px;}
.ya5{bottom:581.475000px;}
.y1a{bottom:582.915000px;}
.y1da{bottom:586.335000px;}
.y59{bottom:587.415000px;}
.y130{bottom:588.855000px;}
.y1a5{bottom:589.395000px;}
.y1bf{bottom:594.795000px;}
.y10d{bottom:595.155000px;}
.y1f0{bottom:596.055000px;}
.y167{bottom:603.975000px;}
.ya4{bottom:605.415000px;}
.yb9{bottom:608.295000px;}
.y1d9{bottom:610.095000px;}
.y58{bottom:611.175000px;}
.y1a4{bottom:613.335000px;}
.y19{bottom:613.515000px;}
.y82{bottom:617.295000px;}
.y10c{bottom:618.915000px;}
.y203{bottom:619.995000px;}
.y14b{bottom:622.875000px;}
.y12f{bottom:627.735000px;}
.ya3{bottom:629.175000px;}
.yb8{bottom:632.055000px;}
.y1be{bottom:633.855000px;}
.y1ef{bottom:634.935000px;}
.y57{bottom:635.115000px;}
.yf2{bottom:636.195000px;}
.y1a3{bottom:637.095000px;}
.y18{bottom:640.335000px;}
.y81{bottom:641.055000px;}
.y202{bottom:643.755000px;}
.y12e{bottom:651.495000px;}
.ya2{bottom:652.935000px;}
.y17{bottom:657.435000px;}
.y10b{bottom:657.615000px;}
.y1ee{bottom:658.695000px;}
.y56{bottom:658.875000px;}
.y1a2{bottom:660.855000px;}
.y80{bottom:664.995000px;}
.y1d8{bottom:672.375000px;}
.y12d{bottom:675.255000px;}
.y16{bottom:681.225000px;}
.y10a{bottom:681.585000px;}
.y55{bottom:682.665000px;}
.y1a1{bottom:684.645000px;}
.ya1{bottom:685.725000px;}
.y7f{bottom:688.785000px;}
.y12c{bottom:699.225000px;}
.y15{bottom:701.385000px;}
.y1bd{bottom:705.345000px;}
.y54{bottom:706.425000px;}
.ya0{bottom:709.665000px;}
.y1d7{bottom:711.465000px;}
.y7e{bottom:712.545000px;}
.y109{bottom:720.285000px;}
.y1ed{bottom:721.365000px;}
.y14{bottom:721.725000px;}
.y12b{bottom:722.985000px;}
.y1a0{bottom:723.525000px;}
.y1bc{bottom:729.105000px;}
.y201{bottom:730.185000px;}
.y53{bottom:730.365000px;}
.y9f{bottom:733.425000px;}
.y1d6{bottom:735.405000px;}
.y7d{bottom:736.305000px;}
.y145{bottom:737.385000px;}
.y166{bottom:737.925000px;}
.y13{bottom:741.885000px;}
.y108{bottom:744.225000px;}
.y1ec{bottom:745.125000px;}
.y12a{bottom:746.745000px;}
.y19f{bottom:747.285000px;}
.y1bb{bottom:752.865000px;}
.y52{bottom:754.125000px;}
.y9e{bottom:757.185000px;}
.y12{bottom:758.985000px;}
.y1d5{bottom:759.165000px;}
.y7c{bottom:760.245000px;}
.y165{bottom:761.685000px;}
.y107{bottom:767.985000px;}
.y1eb{bottom:769.065000px;}
.y19e{bottom:771.045000px;}
.y129{bottom:777.345000px;}
.y11{bottom:782.385000px;}
.y1d4{bottom:782.925000px;}
.y7b{bottom:784.005000px;}
.y164{bottom:785.625000px;}
.yea{bottom:788.865000px;}
.y9d{bottom:789.945000px;}
.y106{bottom:791.745000px;}
.y200{bottom:792.825000px;}
.y19d{bottom:794.985000px;}
.y10{bottom:802.545000px;}
.y51{bottom:802.725000px;}
.y1d3{bottom:806.685000px;}
.y1ea{bottom:807.765000px;}
.y163{bottom:809.385000px;}
.y9c{bottom:813.705000px;}
.y105{bottom:815.505000px;}
.y128{bottom:816.585000px;}
.y19c{bottom:818.745000px;}
.y7a{bottom:822.705000px;}
.yf{bottom:822.885000px;}
.y1d2{bottom:830.625000px;}
.y1e9{bottom:831.525000px;}
.y144{bottom:833.145000px;}
.y9b{bottom:837.645000px;}
.y1ba{bottom:839.265000px;}
.y127{bottom:840.345000px;}
.ye{bottom:843.945000px;}
.y50{bottom:845.025000px;}
.y79{bottom:846.645000px;}
.y19b{bottom:849.705000px;}
.y104{bottom:854.385000px;}
.y1e8{bottom:855.465000px;}
.y177{bottom:856.905000px;}
.y9a{bottom:861.405000px;}
.yd{bottom:862.845000px;}
.y1b9{bottom:863.205000px;}
.y162{bottom:863.925000px;}
.y126{bottom:864.285000px;}
.y4f{bottom:868.785000px;}
.yb7{bottom:870.405000px;}
.y19a{bottom:873.645000px;}
.y103{bottom:878.145000px;}
.y1ff{bottom:879.225000px;}
.y99{bottom:885.165000px;}
.y78{bottom:885.345000px;}
.yc{bottom:885.705000px;}
.y1b8{bottom:886.965000px;}
.y176{bottom:887.685000px;}
.y125{bottom:888.045000px;}
.y195{bottom:890.745000px;}
.y4e{bottom:892.545000px;}
.y143{bottom:893.805000px;}
.yb6{bottom:894.165000px;}
.y102{bottom:901.905000px;}
.y161{bottom:902.985000px;}
.ye2{bottom:903.345000px;}
.y98{bottom:908.925000px;}
.y77{bottom:909.285000px;}
.yb{bottom:910.365000px;}
.y124{bottom:911.850000px;}
.y4d{bottom:916.350000px;}
.y1b7{bottom:917.610000px;}
.yb5{bottom:917.970000px;}
.y101{bottom:925.890000px;}
.y175{bottom:926.790000px;}
.y97{bottom:932.910000px;}
.y76{bottom:933.090000px;}
.y4c{bottom:940.110000px;}
.yb4{bottom:941.910000px;}
.ya{bottom:946.950000px;}
.y100{bottom:949.650000px;}
.y123{bottom:950.730000px;}
.y1d1{bottom:956.490000px;}
.y96{bottom:956.670000px;}
.y75{bottom:956.850000px;}
.y4b{bottom:964.050000px;}
.yb3{bottom:965.670000px;}
.yff{bottom:973.410000px;}
.y122{bottom:974.490000px;}
.y9{bottom:976.110000px;}
.y190{bottom:978.810000px;}
.y74{bottom:980.610000px;}
.y4a{bottom:987.810000px;}
.y32{bottom:987.840000px;}
.y3f{bottom:988.020000px;}
.y95{bottom:989.070000px;}
.yb2{bottom:989.430000px;}
.y34{bottom:990.540000px;}
.y8{bottom:994.650000px;}
.y1d0{bottom:995.730000px;}
.yde{bottom:999.150000px;}
.yfe{bottom:1004.010000px;}
.y142{bottom:1004.370000px;}
.y49{bottom:1011.570000px;}
.y30{bottom:1011.780000px;}
.y121{bottom:1013.190000px;}
.y73{bottom:1019.490000px;}
.y7{bottom:1027.590000px;}
.y94{bottom:1028.310000px;}
.y48{bottom:1035.330000px;}
.y120{bottom:1037.130000px;}
.y72{bottom:1043.250000px;}
.y93{bottom:1052.070000px;}
.y47{bottom:1059.270000px;}
.y6{bottom:1062.870000px;}
.y71{bottom:1067.010000px;}
.y92{bottom:1075.830000px;}
.y46{bottom:1083.030000px;}
.y18f{bottom:1088.610000px;}
.y70{bottom:1090.950000px;}
.yce{bottom:1096.710000px;}
.yb1{bottom:1099.590000px;}
.y5{bottom:1101.030000px;}
.y45{bottom:1106.790000px;}
.y6f{bottom:1114.710000px;}
.y44{bottom:1137.750000px;}
.ycd{bottom:1138.110000px;}
.y6e{bottom:1138.470000px;}
.y4{bottom:1139.190000px;}
.y42{bottom:1164.600000px;}
.y41{bottom:1180.440000px;}
.y40{bottom:1196.280000px;}
.y36{bottom:1207.800000px;}
.y38{bottom:1234.260000px;}
.h14{height:11.700000px;}
.h13{height:14.400000px;}
.h1d{height:18.000000px;}
.h1e{height:18.180000px;}
.h30{height:21.778500px;}
.h17{height:24.380859px;}
.h19{height:35.820000px;}
.h21{height:37.800000px;}
.h2{height:38.405391px;}
.h5{height:38.464805px;}
.h1b{height:40.843828px;}
.h18{height:43.057617px;}
.h2d{height:43.725000px;}
.h1a{height:45.720703px;}
.h16{height:49.680000px;}
.ha{height:50.597578px;}
.h15{height:52.817344px;}
.he{height:53.573906px;}
.h4{height:53.709961px;}
.hf{height:58.621992px;}
.hd{height:58.651172px;}
.h27{height:59.343750px;}
.h24{height:59.383125px;}
.hb{height:59.439023px;}
.h6{height:60.226875px;}
.h8{height:60.960938px;}
.h1f{height:64.546875px;}
.h9{height:64.978594px;}
.h22{height:65.010937px;}
.h31{height:65.550000px;}
.h3{height:65.884219px;}
.h1c{height:70.628906px;}
.h10{height:70.664062px;}
.hc{height:71.324297px;}
.h11{height:72.562500px;}
.h20{height:74.004654px;}
.h28{height:82.676953px;}
.h2e{height:87.285000px;}
.h33{height:87.322500px;}
.h2f{height:87.336000px;}
.h7{height:91.441406px;}
.h2b{height:94.845000px;}
.h29{height:94.860000px;}
.h2c{height:94.881000px;}
.h23{height:94.896000px;}
.h32{height:109.065000px;}
.h25{height:113.760000px;}
.h2a{height:113.790000px;}
.h12{height:116.100000px;}
.h26{height:151.950000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:77.400000px;}
.w7{width:79.200000px;}
.w5{width:96.480000px;}
.w3{width:105.480000px;}
.w11{width:112.140000px;}
.wd{width:112.500000px;}
.w1c{width:125.625000px;}
.w4{width:142.920000px;}
.w8{width:143.640000px;}
.wf{width:145.656000px;}
.wb{width:146.376000px;}
.we{width:156.420000px;}
.wa{width:156.780000px;}
.w19{width:171.195000px;}
.w15{width:171.735000px;}
.w18{width:171.930000px;}
.w16{width:172.429500px;}
.w1a{width:172.455000px;}
.w14{width:172.650000px;}
.w12{width:172.789500px;}
.w17{width:174.615000px;}
.w13{width:175.335000px;}
.w1b{width:219.315000px;}
.w10{width:280.155000px;}
.wc{width:280.875000px;}
.w6{width:626.400000px;}
.w2{width:683.460000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:7.740000px;}
.xe{left:10.836000px;}
.x2f{left:11.910000px;}
.x10{left:13.110000px;}
.x34{left:14.925000px;}
.x11{left:17.100000px;}
.x12{left:18.180000px;}
.x33{left:27.525000px;}
.x25{left:32.265000px;}
.x26{left:36.945000px;}
.x2a{left:39.060000px;}
.x23{left:55.254000px;}
.x31{left:61.950000px;}
.x2d{left:63.163500px;}
.x35{left:64.470000px;}
.x28{left:82.470000px;}
.x13{left:94.500000px;}
.x22{left:98.316000px;}
.x2c{left:100.306500px;}
.x1{left:108.036000px;}
.x17{left:111.276000px;}
.x3{left:113.076000px;}
.x1f{left:135.036000px;}
.x39{left:153.030000px;}
.x3b{left:157.530000px;}
.x1b{left:162.030000px;}
.x1a{left:192.810000px;}
.x7{left:201.630000px;}
.x4{left:212.610000px;}
.xc{left:250.950000px;}
.x24{left:255.090000px;}
.x2e{left:273.105000px;}
.x18{left:281.055000px;}
.xb{left:302.115000px;}
.x6{left:333.615000px;}
.xa{left:336.495000px;}
.x8{left:340.095000px;}
.x1d{left:352.515000px;}
.x16{left:392.040000px;}
.x27{left:401.475000px;}
.x5{left:434.595000px;}
.x2{left:446.475000px;}
.x30{left:448.455000px;}
.x14{left:454.965000px;}
.x19{left:532.365000px;}
.x21{left:536.760000px;}
.x1e{left:539.100000px;}
.x36{left:543.600000px;}
.x9{left:568.545000px;}
.xd{left:580.425000px;}
.x32{left:621.120000px;}
.x38{left:667.050000px;}
.x29{left:682.350000px;}
.x1c{left:694.080000px;}
.xf{left:696.960000px;}
.x37{left:698.220000px;}
.x3a{left:701.100000px;}
.x20{left:705.240000px;}
.x15{left:813.780000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.153600pt;}
.ls5{letter-spacing:-0.144000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.629333pt;}
.lsd{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.746667pt;}
.lsf{letter-spacing:1.920000pt;}
.lsc{letter-spacing:12.640000pt;}
.ls8{letter-spacing:30.186667pt;}
.wse{word-spacing:-64.000000pt;}
.wsd{word-spacing:-16.640000pt;}
.ws10{word-spacing:-16.512000pt;}
.wsf{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws12{word-spacing:-15.552000pt;}
.wsb{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.336000pt;}
.ws1{word-spacing:-11.686400pt;}
.ws6{word-spacing:-10.560000pt;}
.ws3{word-spacing:-9.696000pt;}
.ws7{word-spacing:-9.433600pt;}
.ws4{word-spacing:-9.264000pt;}
.ws2{word-spacing:-8.833280pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.442560pt;}
._1{width:0.950613pt;}
._3{width:2.020693pt;}
._2{width:3.591040pt;}
._6{width:4.795093pt;}
._7{width:6.452480pt;}
._4{width:7.489920pt;}
._b{width:8.499200pt;}
._a{width:9.402240pt;}
._c{width:10.487893pt;}
._13{width:11.914667pt;}
._12{width:13.248000pt;}
._5{width:14.454187pt;}
._19{width:16.910933pt;}
._9{width:18.592000pt;}
._8{width:19.491840pt;}
._f{width:21.122347pt;}
._14{width:22.333653pt;}
._11{width:23.232000pt;}
._10{width:24.128000pt;}
._d{width:25.019520pt;}
._1a{width:25.988480pt;}
._e{width:26.980267pt;}
._21{width:28.160000pt;}
._18{width:29.330773pt;}
._17{width:30.498560pt;}
._15{width:31.424000pt;}
._16{width:32.704000pt;}
._1d{width:33.984000pt;}
._1e{width:35.050667pt;}
._22{width:37.162667pt;}
._1b{width:38.272000pt;}
._1c{width:39.851947pt;}
._1f{width:41.216000pt;}
._20{width:42.421333pt;}
._23{width:43.913387pt;}
._24{width:46.016000pt;}
._25{width:47.040000pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs5{font-size:96.000000pt;}
.y3a{bottom:-9.760000pt;}
.y35{bottom:-0.186667pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:2.213333pt;}
.ye1{bottom:3.520000pt;}
.y153{bottom:3.666667pt;}
.ye9{bottom:3.680000pt;}
.y3{bottom:4.000000pt;}
.y6d{bottom:4.160000pt;}
.y91{bottom:4.320000pt;}
.y18e{bottom:4.320133pt;}
.y3d{bottom:4.800000pt;}
.y18b{bottom:6.080000pt;}
.y17e{bottom:6.226667pt;}
.y39{bottom:7.200000pt;}
.y3c{bottom:10.880000pt;}
.y18d{bottom:11.679867pt;}
.ydf{bottom:12.000000pt;}
.y148{bottom:12.160000pt;}
.yfd{bottom:12.640000pt;}
.y141{bottom:12.960000pt;}
.y90{bottom:13.280000pt;}
.y6c{bottom:13.440000pt;}
.yb0{bottom:13.760000pt;}
.y160{bottom:14.080000pt;}
.y1cf{bottom:14.880000pt;}
.y17c{bottom:15.826667pt;}
.y189{bottom:15.840000pt;}
.y43{bottom:20.160000pt;}
.ye0{bottom:20.320000pt;}
.yee{bottom:20.480000pt;}
.y152{bottom:20.506667pt;}
.ye8{bottom:20.520000pt;}
.y2{bottom:21.920000pt;}
.y193{bottom:25.440000pt;}
.y197{bottom:25.480000pt;}
.y17d{bottom:25.586667pt;}
.y186{bottom:25.600000pt;}
.yf1{bottom:28.800000pt;}
.y146{bottom:28.960000pt;}
.y151{bottom:28.986667pt;}
.ye4{bottom:29.000000pt;}
.y3e{bottom:31.360000pt;}
.y181{bottom:35.186667pt;}
.y188{bottom:35.200000pt;}
.y199{bottom:35.240000pt;}
.y37{bottom:37.280000pt;}
.y14a{bottom:37.440000pt;}
.yf8{bottom:37.466667pt;}
.ye7{bottom:37.480000pt;}
.y1{bottom:37.920000pt;}
.y3b{bottom:44.480000pt;}
.y183{bottom:44.946667pt;}
.y185{bottom:44.960000pt;}
.y196{bottom:45.000000pt;}
.yf0{bottom:45.760000pt;}
.yfb{bottom:45.786667pt;}
.ye3{bottom:45.800000pt;}
.yeb{bottom:54.080000pt;}
.y14d{bottom:54.106667pt;}
.y149{bottom:54.240000pt;}
.yf4{bottom:54.266667pt;}
.ye6{bottom:54.280000pt;}
.y191{bottom:54.560000pt;}
.y180{bottom:54.706667pt;}
.y187{bottom:54.720000pt;}
.yef{bottom:62.560000pt;}
.y14c{bottom:62.586667pt;}
.y147{bottom:62.720000pt;}
.yfa{bottom:62.746667pt;}
.y182{bottom:64.306667pt;}
.y192{bottom:64.320000pt;}
.y18a{bottom:64.346667pt;}
.y198{bottom:64.360000pt;}
.yed{bottom:71.040000pt;}
.yf3{bottom:71.066667pt;}
.ye5{bottom:71.080000pt;}
.yf9{bottom:79.546667pt;}
.y194{bottom:83.680000pt;}
.yec{bottom:87.840000pt;}
.y14e{bottom:87.866667pt;}
.yf7{bottom:88.026667pt;}
.y31{bottom:89.093333pt;}
.y18c{bottom:99.360000pt;}
.ycc{bottom:100.960000pt;}
.y6b{bottom:101.280000pt;}
.y174{bottom:104.000000pt;}
.yf6{bottom:104.826667pt;}
.y1ce{bottom:108.480000pt;}
.y1b6{bottom:111.360000pt;}
.y11f{bottom:115.520000pt;}
.y15f{bottom:115.840000pt;}
.yaf{bottom:116.960000pt;}
.y140{bottom:118.240000pt;}
.y184{bottom:119.360000pt;}
.ydd{bottom:120.160000pt;}
.yf5{bottom:121.786667pt;}
.y6a{bottom:122.400000pt;}
.y1e7{bottom:123.680000pt;}
.y173{bottom:125.120000pt;}
.y2f{bottom:125.280000pt;}
.y1cd{bottom:129.600000pt;}
.y1b5{bottom:132.480000pt;}
.y15e{bottom:136.960000pt;}
.ycb{bottom:138.560000pt;}
.y13f{bottom:139.360000pt;}
.ydc{bottom:141.280000pt;}
.y69{bottom:143.520000pt;}
.y1e6{bottom:144.800000pt;}
.y2e{bottom:145.600000pt;}
.y172{bottom:146.240000pt;}
.y11e{bottom:150.080000pt;}
.y1cc{bottom:150.880000pt;}
.yae{bottom:151.520000pt;}
.y1b4{bottom:153.600000pt;}
.y15d{bottom:158.240000pt;}
.y1fe{bottom:159.200000pt;}
.yca{bottom:159.680000pt;}
.ydb{bottom:162.560000pt;}
.y2d{bottom:163.520000pt;}
.y8f{bottom:164.640000pt;}
.y215{bottom:166.880000pt;}
.y11d{bottom:171.200000pt;}
.y1cb{bottom:172.000000pt;}
.y13e{bottom:173.920000pt;}
.y68{bottom:178.080000pt;}
.y1e5{bottom:179.360000pt;}
.y1fd{bottom:180.320000pt;}
.yc9{bottom:180.800000pt;}
.y1b3{bottom:180.960000pt;}
.y2c{bottom:181.440000pt;}
.yda{bottom:183.706667pt;}
.yad{bottom:185.946667pt;}
.y210{bottom:188.186667pt;}
.y11c{bottom:192.346667pt;}
.y15c{bottom:192.666667pt;}
.y1ca{bottom:193.146667pt;}
.y13d{bottom:195.066667pt;}
.y17f{bottom:197.640000pt;}
.y67{bottom:199.226667pt;}
.y1e4{bottom:200.506667pt;}
.y2b{bottom:200.826667pt;}
.y1fc{bottom:201.466667pt;}
.yc8{bottom:201.946667pt;}
.yd9{bottom:204.826667pt;}
.y20f{bottom:209.306667pt;}
.y11b{bottom:213.466667pt;}
.y15b{bottom:213.786667pt;}
.y1c9{bottom:214.266667pt;}
.y1b2{bottom:215.706667pt;}
.y13c{bottom:216.186667pt;}
.y66{bottom:220.346667pt;}
.yac{bottom:220.506667pt;}
.y2a{bottom:220.826667pt;}
.y171{bottom:223.066667pt;}
.yd8{bottom:225.946667pt;}
.y11a{bottom:234.746667pt;}
.y15a{bottom:235.066667pt;}
.y1fb{bottom:236.026667pt;}
.yc7{bottom:236.506667pt;}
.y1b1{bottom:236.986667pt;}
.y13b{bottom:237.306667pt;}
.y65{bottom:241.626667pt;}
.y20e{bottom:243.866667pt;}
.y170{bottom:244.186667pt;}
.yd7{bottom:247.226667pt;}
.y29{bottom:248.026667pt;}
.y8e{bottom:254.746667pt;}
.y119{bottom:255.866667pt;}
.y159{bottom:256.186667pt;}
.y1fa{bottom:257.146667pt;}
.yc6{bottom:257.626667pt;}
.y1b0{bottom:258.106667pt;}
.y64{bottom:262.746667pt;}
.y20d{bottom:264.986667pt;}
.y16f{bottom:265.466667pt;}
.yd6{bottom:268.346667pt;}
.y28{bottom:271.226667pt;}
.y13a{bottom:271.866667pt;}
.y17b{bottom:275.880000pt;}
.y8d{bottom:276.026667pt;}
.y1c8{bottom:276.346667pt;}
.y118{bottom:276.986667pt;}
.y158{bottom:277.306667pt;}
.y1f9{bottom:278.266667pt;}
.yc5{bottom:278.746667pt;}
.y1af{bottom:279.226667pt;}
.y63{bottom:283.866667pt;}
.yab{bottom:284.026667pt;}
.y20c{bottom:286.106667pt;}
.y16e{bottom:286.586667pt;}
.y27{bottom:288.826667pt;}
.yd5{bottom:289.466667pt;}
.y1e3{bottom:290.746667pt;}
.y139{bottom:292.986667pt;}
.y1c7{bottom:297.626667pt;}
.y117{bottom:298.106667pt;}
.y157{bottom:298.426667pt;}
.y1f8{bottom:299.386667pt;}
.yc4{bottom:300.026667pt;}
.y1ae{bottom:300.346667pt;}
.y26{bottom:306.586667pt;}
.y8c{bottom:310.426667pt;}
.y1e2{bottom:311.866667pt;}
.y16d{bottom:313.786667pt;}
.y138{bottom:314.106667pt;}
.yd4{bottom:318.266667pt;}
.y62{bottom:318.426667pt;}
.y1c6{bottom:318.746667pt;}
.y116{bottom:319.226667pt;}
.y156{bottom:319.706667pt;}
.y20b{bottom:320.666667pt;}
.yc3{bottom:321.146667pt;}
.y25{bottom:324.186667pt;}
.y8b{bottom:331.546667pt;}
.y1e1{bottom:332.986667pt;}
.y1f7{bottom:333.946667pt;}
.y1ad{bottom:334.906667pt;}
.y17a{bottom:335.066667pt;}
.y61{bottom:339.546667pt;}
.y1c5{bottom:339.866667pt;}
.y115{bottom:340.666667pt;}
.y24{bottom:341.786667pt;}
.yc2{bottom:342.266667pt;}
.y155{bottom:346.906667pt;}
.yd3{bottom:347.866667pt;}
.y137{bottom:348.666667pt;}
.y8a{bottom:352.826667pt;}
.y1f6{bottom:355.066667pt;}
.y1ac{bottom:356.026667pt;}
.y23{bottom:359.386667pt;}
.y60{bottom:360.666667pt;}
.yaa{bottom:360.826667pt;}
.y114{bottom:360.986667pt;}
.y20a{bottom:362.906667pt;}
.yc1{bottom:363.386667pt;}
.y1e0{bottom:367.546667pt;}
.y154{bottom:368.346667pt;}
.yd2{bottom:368.986667pt;}
.y136{bottom:369.786667pt;}
.y89{bottom:373.946667pt;}
.y214{bottom:376.186667pt;}
.y22{bottom:376.986667pt;}
.y1ab{bottom:377.146667pt;}
.y5f{bottom:381.786667pt;}
.ya9{bottom:381.946667pt;}
.y113{bottom:382.266667pt;}
.y150{bottom:383.560000pt;}
.y209{bottom:384.026667pt;}
.yc0{bottom:384.666667pt;}
.y1df{bottom:388.666667pt;}
.y1f5{bottom:389.626667pt;}
.yd1{bottom:390.106667pt;}
.y135{bottom:390.906667pt;}
.y21{bottom:394.786667pt;}
.y88{bottom:395.106667pt;}
.y213{bottom:397.506667pt;}
.y1aa{bottom:398.466667pt;}
.y5e{bottom:403.106667pt;}
.y112{bottom:403.426667pt;}
.y16c{bottom:404.386667pt;}
.ybf{bottom:405.826667pt;}
.y1de{bottom:409.826667pt;}
.y1f4{bottom:410.786667pt;}
.yd0{bottom:411.266667pt;}
.y134{bottom:412.226667pt;}
.y20{bottom:412.386667pt;}
.y1c4{bottom:416.706667pt;}
.y208{bottom:418.626667pt;}
.y1a9{bottom:419.586667pt;}
.y5d{bottom:424.226667pt;}
.y111{bottom:424.546667pt;}
.y16b{bottom:425.506667pt;}
.ybe{bottom:426.946667pt;}
.y87{bottom:429.666667pt;}
.y1f{bottom:429.986667pt;}
.y1f3{bottom:431.906667pt;}
.y133{bottom:433.346667pt;}
.y1c3{bottom:437.826667pt;}
.y207{bottom:439.746667pt;}
.y1a8{bottom:440.706667pt;}
.y1dd{bottom:444.386667pt;}
.y5c{bottom:445.346667pt;}
.y110{bottom:445.666667pt;}
.y179{bottom:446.626667pt;}
.y1e{bottom:447.586667pt;}
.ybd{bottom:448.066667pt;}
.ycf{bottom:448.226667pt;}
.y86{bottom:450.786667pt;}
.y212{bottom:453.026667pt;}
.ya8{bottom:453.506667pt;}
.y1c2{bottom:459.106667pt;}
.y16a{bottom:460.066667pt;}
.y206{bottom:460.866667pt;}
.yfc{bottom:463.746667pt;}
.y1d{bottom:465.186667pt;}
.y1dc{bottom:465.506667pt;}
.y5b{bottom:466.466667pt;}
.y10f{bottom:466.946667pt;}
.y132{bottom:467.746667pt;}
.y1a7{bottom:468.066667pt;}
.y14f{bottom:468.706667pt;}
.ybc{bottom:469.346667pt;}
.y85{bottom:471.906667pt;}
.y211{bottom:474.306667pt;}
.ya7{bottom:474.626667pt;}
.y1c1{bottom:480.226667pt;}
.y178{bottom:481.186667pt;}
.y1c{bottom:482.946667pt;}
.y1db{bottom:486.626667pt;}
.y1f2{bottom:487.586667pt;}
.y131{bottom:489.026667pt;}
.ybb{bottom:490.466667pt;}
.y84{bottom:493.026667pt;}
.y10e{bottom:494.146667pt;}
.y169{bottom:494.466667pt;}
.y205{bottom:495.426667pt;}
.ya6{bottom:495.746667pt;}
.y1b{bottom:500.546667pt;}
.y5a{bottom:501.026667pt;}
.y1c0{bottom:501.346667pt;}
.y1a6{bottom:502.786667pt;}
.y1f1{bottom:508.706667pt;}
.yba{bottom:511.586667pt;}
.y83{bottom:514.306667pt;}
.y168{bottom:515.586667pt;}
.y204{bottom:516.546667pt;}
.ya5{bottom:516.866667pt;}
.y1a{bottom:518.146667pt;}
.y1da{bottom:521.186667pt;}
.y59{bottom:522.146667pt;}
.y130{bottom:523.426667pt;}
.y1a5{bottom:523.906667pt;}
.y1bf{bottom:528.706667pt;}
.y10d{bottom:529.026667pt;}
.y1f0{bottom:529.826667pt;}
.y167{bottom:536.866667pt;}
.ya4{bottom:538.146667pt;}
.yb9{bottom:540.706667pt;}
.y1d9{bottom:542.306667pt;}
.y58{bottom:543.266667pt;}
.y1a4{bottom:545.186667pt;}
.y19{bottom:545.346667pt;}
.y82{bottom:548.706667pt;}
.y10c{bottom:550.146667pt;}
.y203{bottom:551.106667pt;}
.y14b{bottom:553.666667pt;}
.y12f{bottom:557.986667pt;}
.ya3{bottom:559.266667pt;}
.yb8{bottom:561.826667pt;}
.y1be{bottom:563.426667pt;}
.y1ef{bottom:564.386667pt;}
.y57{bottom:564.546667pt;}
.yf2{bottom:565.506667pt;}
.y1a3{bottom:566.306667pt;}
.y18{bottom:569.186667pt;}
.y81{bottom:569.826667pt;}
.y202{bottom:572.226667pt;}
.y12e{bottom:579.106667pt;}
.ya2{bottom:580.386667pt;}
.y17{bottom:584.386667pt;}
.y10b{bottom:584.546667pt;}
.y1ee{bottom:585.506667pt;}
.y56{bottom:585.666667pt;}
.y1a2{bottom:587.426667pt;}
.y80{bottom:591.106667pt;}
.y1d8{bottom:597.666667pt;}
.y12d{bottom:600.226667pt;}
.y16{bottom:605.533333pt;}
.y10a{bottom:605.853333pt;}
.y55{bottom:606.813333pt;}
.y1a1{bottom:608.573333pt;}
.ya1{bottom:609.533333pt;}
.y7f{bottom:612.253333pt;}
.y12c{bottom:621.533333pt;}
.y15{bottom:623.453333pt;}
.y1bd{bottom:626.973333pt;}
.y54{bottom:627.933333pt;}
.ya0{bottom:630.813333pt;}
.y1d7{bottom:632.413333pt;}
.y7e{bottom:633.373333pt;}
.y109{bottom:640.253333pt;}
.y1ed{bottom:641.213333pt;}
.y14{bottom:641.533333pt;}
.y12b{bottom:642.653333pt;}
.y1a0{bottom:643.133333pt;}
.y1bc{bottom:648.093333pt;}
.y201{bottom:649.053333pt;}
.y53{bottom:649.213333pt;}
.y9f{bottom:651.933333pt;}
.y1d6{bottom:653.693333pt;}
.y7d{bottom:654.493333pt;}
.y145{bottom:655.453333pt;}
.y166{bottom:655.933333pt;}
.y13{bottom:659.453333pt;}
.y108{bottom:661.533333pt;}
.y1ec{bottom:662.333333pt;}
.y12a{bottom:663.773333pt;}
.y19f{bottom:664.253333pt;}
.y1bb{bottom:669.213333pt;}
.y52{bottom:670.333333pt;}
.y9e{bottom:673.053333pt;}
.y12{bottom:674.653333pt;}
.y1d5{bottom:674.813333pt;}
.y7c{bottom:675.773333pt;}
.y165{bottom:677.053333pt;}
.y107{bottom:682.653333pt;}
.y1eb{bottom:683.613333pt;}
.y19e{bottom:685.373333pt;}
.y129{bottom:690.973333pt;}
.y11{bottom:695.453333pt;}
.y1d4{bottom:695.933333pt;}
.y7b{bottom:696.893333pt;}
.y164{bottom:698.333333pt;}
.yea{bottom:701.213333pt;}
.y9d{bottom:702.173333pt;}
.y106{bottom:703.773333pt;}
.y200{bottom:704.733333pt;}
.y19d{bottom:706.653333pt;}
.y10{bottom:713.373333pt;}
.y51{bottom:713.533333pt;}
.y1d3{bottom:717.053333pt;}
.y1ea{bottom:718.013333pt;}
.y163{bottom:719.453333pt;}
.y9c{bottom:723.293333pt;}
.y105{bottom:724.893333pt;}
.y128{bottom:725.853333pt;}
.y19c{bottom:727.773333pt;}
.y7a{bottom:731.293333pt;}
.yf{bottom:731.453333pt;}
.y1d2{bottom:738.333333pt;}
.y1e9{bottom:739.133333pt;}
.y144{bottom:740.573333pt;}
.y9b{bottom:744.573333pt;}
.y1ba{bottom:746.013333pt;}
.y127{bottom:746.973333pt;}
.ye{bottom:750.173333pt;}
.y50{bottom:751.133333pt;}
.y79{bottom:752.573333pt;}
.y19b{bottom:755.293333pt;}
.y104{bottom:759.453333pt;}
.y1e8{bottom:760.413333pt;}
.y177{bottom:761.693333pt;}
.y9a{bottom:765.693333pt;}
.yd{bottom:766.973333pt;}
.y1b9{bottom:767.293333pt;}
.y162{bottom:767.933333pt;}
.y126{bottom:768.253333pt;}
.y4f{bottom:772.253333pt;}
.yb7{bottom:773.693333pt;}
.y19a{bottom:776.573333pt;}
.y103{bottom:780.573333pt;}
.y1ff{bottom:781.533333pt;}
.y99{bottom:786.813333pt;}
.y78{bottom:786.973333pt;}
.yc{bottom:787.293333pt;}
.y1b8{bottom:788.413333pt;}
.y176{bottom:789.053333pt;}
.y125{bottom:789.373333pt;}
.y195{bottom:791.773333pt;}
.y4e{bottom:793.373333pt;}
.y143{bottom:794.493333pt;}
.yb6{bottom:794.813333pt;}
.y102{bottom:801.693333pt;}
.y161{bottom:802.653333pt;}
.ye2{bottom:802.973333pt;}
.y98{bottom:807.933333pt;}
.y77{bottom:808.253333pt;}
.yb{bottom:809.213333pt;}
.y124{bottom:810.533333pt;}
.y4d{bottom:814.533333pt;}
.y1b7{bottom:815.653333pt;}
.yb5{bottom:815.973333pt;}
.y101{bottom:823.013333pt;}
.y175{bottom:823.813333pt;}
.y97{bottom:829.253333pt;}
.y76{bottom:829.413333pt;}
.y4c{bottom:835.653333pt;}
.yb4{bottom:837.253333pt;}
.ya{bottom:841.733333pt;}
.y100{bottom:844.133333pt;}
.y123{bottom:845.093333pt;}
.y1d1{bottom:850.213333pt;}
.y96{bottom:850.373333pt;}
.y75{bottom:850.533333pt;}
.y4b{bottom:856.933333pt;}
.yb3{bottom:858.373333pt;}
.yff{bottom:865.253333pt;}
.y122{bottom:866.213333pt;}
.y9{bottom:867.653333pt;}
.y190{bottom:870.053333pt;}
.y74{bottom:871.653333pt;}
.y4a{bottom:878.053333pt;}
.y32{bottom:878.080000pt;}
.y3f{bottom:878.240000pt;}
.y95{bottom:879.173333pt;}
.yb2{bottom:879.493333pt;}
.y34{bottom:880.480000pt;}
.y8{bottom:884.133333pt;}
.y1d0{bottom:885.093333pt;}
.yde{bottom:888.133333pt;}
.yfe{bottom:892.453333pt;}
.y142{bottom:892.773333pt;}
.y49{bottom:899.173333pt;}
.y30{bottom:899.360000pt;}
.y121{bottom:900.613333pt;}
.y73{bottom:906.213333pt;}
.y7{bottom:913.413333pt;}
.y94{bottom:914.053333pt;}
.y48{bottom:920.293333pt;}
.y120{bottom:921.893333pt;}
.y72{bottom:927.333333pt;}
.y93{bottom:935.173333pt;}
.y47{bottom:941.573333pt;}
.y6{bottom:944.773333pt;}
.y71{bottom:948.453333pt;}
.y92{bottom:956.293333pt;}
.y46{bottom:962.693333pt;}
.y18f{bottom:967.653333pt;}
.y70{bottom:969.733333pt;}
.yce{bottom:974.853333pt;}
.yb1{bottom:977.413333pt;}
.y5{bottom:978.693333pt;}
.y45{bottom:983.813333pt;}
.y6f{bottom:990.853333pt;}
.y44{bottom:1011.333333pt;}
.ycd{bottom:1011.653333pt;}
.y6e{bottom:1011.973333pt;}
.y4{bottom:1012.613333pt;}
.y42{bottom:1035.200000pt;}
.y41{bottom:1049.280000pt;}
.y40{bottom:1063.360000pt;}
.y36{bottom:1073.600000pt;}
.y38{bottom:1097.120000pt;}
.h14{height:10.400000pt;}
.h13{height:12.800000pt;}
.h1d{height:16.000000pt;}
.h1e{height:16.160000pt;}
.h30{height:19.358667pt;}
.h17{height:21.671875pt;}
.h19{height:31.840000pt;}
.h21{height:33.600000pt;}
.h2{height:34.138125pt;}
.h5{height:34.190937pt;}
.h1b{height:36.305625pt;}
.h18{height:38.273438pt;}
.h2d{height:38.866667pt;}
.h1a{height:40.640625pt;}
.h16{height:44.160000pt;}
.ha{height:44.975625pt;}
.h15{height:46.948750pt;}
.he{height:47.621250pt;}
.h4{height:47.742188pt;}
.hf{height:52.108438pt;}
.hd{height:52.134375pt;}
.h27{height:52.750000pt;}
.h24{height:52.785000pt;}
.hb{height:52.834688pt;}
.h6{height:53.535000pt;}
.h8{height:54.187500pt;}
.h1f{height:57.375000pt;}
.h9{height:57.758750pt;}
.h22{height:57.787500pt;}
.h31{height:58.266667pt;}
.h3{height:58.563750pt;}
.h1c{height:62.781250pt;}
.h10{height:62.812500pt;}
.hc{height:63.399375pt;}
.h11{height:64.500000pt;}
.h20{height:65.781915pt;}
.h28{height:73.490625pt;}
.h2e{height:77.586667pt;}
.h33{height:77.620000pt;}
.h2f{height:77.632000pt;}
.h7{height:81.281250pt;}
.h2b{height:84.306667pt;}
.h29{height:84.320000pt;}
.h2c{height:84.338667pt;}
.h23{height:84.352000pt;}
.h32{height:96.946667pt;}
.h25{height:101.120000pt;}
.h2a{height:101.146667pt;}
.h12{height:103.200000pt;}
.h26{height:135.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:68.800000pt;}
.w7{width:70.400000pt;}
.w5{width:85.760000pt;}
.w3{width:93.760000pt;}
.w11{width:99.680000pt;}
.wd{width:100.000000pt;}
.w1c{width:111.666667pt;}
.w4{width:127.040000pt;}
.w8{width:127.680000pt;}
.wf{width:129.472000pt;}
.wb{width:130.112000pt;}
.we{width:139.040000pt;}
.wa{width:139.360000pt;}
.w19{width:152.173333pt;}
.w15{width:152.653333pt;}
.w18{width:152.826667pt;}
.w16{width:153.270667pt;}
.w1a{width:153.293333pt;}
.w14{width:153.466667pt;}
.w12{width:153.590667pt;}
.w17{width:155.213333pt;}
.w13{width:155.853333pt;}
.w1b{width:194.946667pt;}
.w10{width:249.026667pt;}
.wc{width:249.666667pt;}
.w6{width:556.800000pt;}
.w2{width:607.520000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:6.880000pt;}
.xe{left:9.632000pt;}
.x2f{left:10.586667pt;}
.x10{left:11.653333pt;}
.x34{left:13.266667pt;}
.x11{left:15.200000pt;}
.x12{left:16.160000pt;}
.x33{left:24.466667pt;}
.x25{left:28.680000pt;}
.x26{left:32.840000pt;}
.x2a{left:34.720000pt;}
.x23{left:49.114667pt;}
.x31{left:55.066667pt;}
.x2d{left:56.145333pt;}
.x35{left:57.306667pt;}
.x28{left:73.306667pt;}
.x13{left:84.000000pt;}
.x22{left:87.392000pt;}
.x2c{left:89.161333pt;}
.x1{left:96.032000pt;}
.x17{left:98.912000pt;}
.x3{left:100.512000pt;}
.x1f{left:120.032000pt;}
.x39{left:136.026667pt;}
.x3b{left:140.026667pt;}
.x1b{left:144.026667pt;}
.x1a{left:171.386667pt;}
.x7{left:179.226667pt;}
.x4{left:188.986667pt;}
.xc{left:223.066667pt;}
.x24{left:226.746667pt;}
.x2e{left:242.760000pt;}
.x18{left:249.826667pt;}
.xb{left:268.546667pt;}
.x6{left:296.546667pt;}
.xa{left:299.106667pt;}
.x8{left:302.306667pt;}
.x1d{left:313.346667pt;}
.x16{left:348.480000pt;}
.x27{left:356.866667pt;}
.x5{left:386.306667pt;}
.x2{left:396.866667pt;}
.x30{left:398.626667pt;}
.x14{left:404.413333pt;}
.x19{left:473.213333pt;}
.x21{left:477.120000pt;}
.x1e{left:479.200000pt;}
.x36{left:483.200000pt;}
.x9{left:505.373333pt;}
.xd{left:515.933333pt;}
.x32{left:552.106667pt;}
.x38{left:592.933333pt;}
.x29{left:606.533333pt;}
.x1c{left:616.960000pt;}
.xf{left:619.520000pt;}
.x37{left:620.640000pt;}
.x3a{left:623.200000pt;}
.x20{left:626.880000pt;}
.x15{left:723.360000pt;}
}




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