
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ed6762281c2d28f91cf0037b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d8b74bb8cb911439da83a99f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e861286572accaff91bb05f8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4dafd1c82a59525dcee01c4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8a9cf4b760248764dc324076.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7e424ef1b5f826503f03a035.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8af503f77564926c498f3cde.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f6c60eb0dd9d454b549d4252.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls5{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.370200px;}
.ls7{letter-spacing:-0.326400px;}
.ls12{letter-spacing:-0.097800px;}
.ls1a{letter-spacing:-0.053280px;}
.ls17{letter-spacing:-0.040320px;}
.ls18{letter-spacing:-0.036000px;}
.ls9{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.013200px;}
.ls4{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.209400px;}
.lsc{letter-spacing:0.211680px;}
.ls11{letter-spacing:0.319680px;}
.ls14{letter-spacing:0.328800px;}
.ls8{letter-spacing:0.351600px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.385800px;}
.lsd{letter-spacing:0.666720px;}
.lsf{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.732000px;}
.ls10{letter-spacing:12.772800px;}
.ls2{letter-spacing:15.120000px;}
.ls19{letter-spacing:47.466720px;}
.lse{letter-spacing:64.026720px;}
.ls16{letter-spacing:81.306720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.wsa{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.572800px;}
.wsc{word-spacing:-13.879200px;}
.wsd{word-spacing:-13.476000px;}
.ws10{word-spacing:-13.466880px;}
.ws4{word-spacing:-13.160400px;}
.ws9{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.wsf{word-spacing:-13.111200px;}
.wse{word-spacing:-13.106880px;}
.ws11{word-spacing:-13.093920px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:2.552040px;}
._10{margin-left:-3.624359px;}
._5{margin-left:-2.530921px;}
._0{margin-left:-1.134000px;}
._4{width:1.015800px;}
._3{width:2.027170px;}
._7{width:4.003800px;}
._a{width:5.380193px;}
._e{width:7.231797px;}
._d{width:8.306401px;}
._f{width:9.860400px;}
._b{width:10.876200px;}
._c{width:12.011999px;}
._6{width:14.402399px;}
._11{width:16.034556px;}
._1{width:17.371284px;}
._8{width:19.123200px;}
._9{width:20.139598px;}
._15{width:21.274201px;}
._1d{width:22.701358px;}
._16{width:23.827795px;}
._14{width:24.979680px;}
._12{width:26.411160px;}
._13{width:28.038721px;}
._26{width:29.872080px;}
._17{width:31.852080px;}
._2{width:33.274884px;}
._43{width:34.720560px;}
._3c{width:36.573120px;}
._2b{width:38.007360px;}
._3b{width:39.369600px;}
._30{width:40.688640px;}
._2c{width:42.310080px;}
._23{width:43.744320px;}
._4a{width:44.820000px;}
._2e{width:47.210400px;}
._21{width:49.294080px;}
._5f{width:50.437440px;}
._4e{width:51.811920px;}
._2f{width:53.485200px;}
._5b{width:55.397520px;}
._2a{width:58.385520px;}
._20{width:59.580720px;}
._34{width:60.775920px;}
._1a{width:62.449200px;}
._48{width:63.524880px;}
._1b{width:64.959120px;}
._4f{width:67.289760px;}
._3a{width:69.620400px;}
._36{width:70.696080px;}
._29{width:72.548640px;}
._5e{width:76.492800px;}
._22{width:78.166080px;}
._5a{width:81.512640px;}
._33{width:82.887120px;}
._52{width:84.679920px;}
._18{width:86.592240px;}
._4c{width:87.787560px;}
._4d{width:89.161920px;}
._50{width:92.628000px;}
._3f{width:95.795280px;}
._1c{width:97.110000px;}
._6a{width:99.141601px;}
._42{width:100.635960px;}
._69{width:102.150119px;}
._53{width:103.325040px;}
._3d{width:104.639760px;}
._44{width:107.687520px;}
._40{width:110.317080px;}
._63{width:111.631680px;}
._51{width:115.217280px;}
._28{width:116.233200px;}
._31{width:118.205280px;}
._3e{width:119.998080px;}
._67{width:122.269199px;}
._66{width:123.284880px;}
._37{width:124.898400px;}
._35{width:130.336560px;}
._61{width:131.591520px;}
._27{width:134.460000px;}
._38{width:138.702960px;}
._62{width:140.794560px;}
._5c{width:141.930000px;}
._1f{width:143.902080px;}
._47{width:149.758560px;}
._2d{width:150.953760px;}
._19{width:158.423880px;}
._46{width:163.622880px;}
._54{width:169.718520px;}
._24{width:177.188400px;}
._39{width:183.762000px;}
._59{width:185.853600px;}
._5d{width:189.259920px;}
._45{width:194.100480px;}
._68{width:195.104398px;}
._49{width:196.371360px;}
._1e{width:204.678000px;}
._57{width:206.052480px;}
._56{width:214.179840px;}
._32{width:223.084080px;}
._65{width:229.972922px;}
._64{width:231.075478px;}
._25{width:234.498240px;}
._58{width:245.673360px;}
._55{width:250.334640px;}
._4b{width:273.222720px;}
._60{width:277.644960px;}
._41{width:355.153680px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yf5{bottom:3.420000px;}
.yb3{bottom:7.740000px;}
.yb5{bottom:7.920000px;}
.ydd{bottom:7.950000px;}
.y131{bottom:7.965000px;}
.y144{bottom:11.880000px;}
.yd6{bottom:13.140000px;}
.y11c{bottom:20.880000px;}
.yf4{bottom:21.054000px;}
.y142{bottom:21.060000px;}
.yd1{bottom:25.380000px;}
.y178{bottom:25.425000px;}
.yd0{bottom:25.560000px;}
.ydc{bottom:25.590000px;}
.y117{bottom:25.605000px;}
.yf7{bottom:29.514000px;}
.y12f{bottom:30.600000px;}
.yd3{bottom:30.780000px;}
.y143{bottom:34.020000px;}
.y113{bottom:35.100000px;}
.yd5{bottom:35.280000px;}
.y11b{bottom:38.514000px;}
.yf3{bottom:38.694000px;}
.yed{bottom:43.020000px;}
.ydb{bottom:43.050000px;}
.y101{bottom:43.065000px;}
.y162{bottom:43.194000px;}
.ye3{bottom:43.200000px;}
.y116{bottom:43.245000px;}
.yd2{bottom:45.000000px;}
.y13f{bottom:47.160000px;}
.yf6{bottom:51.654000px;}
.yef{bottom:51.660000px;}
.ydf{bottom:51.690000px;}
.yce{bottom:52.740000px;}
.yd4{bottom:52.920000px;}
.yf2{bottom:56.154000px;}
.ye4{bottom:56.160000px;}
.y14b{bottom:60.300000px;}
.y15d{bottom:60.480000px;}
.y161{bottom:60.654000px;}
.ye2{bottom:60.660000px;}
.yda{bottom:60.690000px;}
.y100{bottom:60.705000px;}
.y141{bottom:69.120000px;}
.ye9{bottom:69.300000px;}
.y14e{bottom:69.345000px;}
.y2{bottom:73.296000px;}
.yde{bottom:73.650000px;}
.yee{bottom:73.665000px;}
.yf1{bottom:73.794000px;}
.y2a{bottom:74.196000px;}
.y11f{bottom:78.120000px;}
.yff{bottom:78.165000px;}
.y160{bottom:78.294000px;}
.ye1{bottom:78.300000px;}
.yd9{bottom:78.330000px;}
.yec{bottom:78.345000px;}
.y14a{bottom:82.260000px;}
.y104{bottom:86.805000px;}
.ye8{bottom:91.260000px;}
.y14d{bottom:91.305000px;}
.yfb{bottom:91.440000px;}
.y119{bottom:95.760000px;}
.yd8{bottom:95.790000px;}
.yeb{bottom:95.805000px;}
.y15f{bottom:95.934000px;}
.ye7{bottom:95.940000px;}
.y1{bottom:95.976000px;}
.y121{bottom:95.985000px;}
.y149{bottom:104.400000px;}
.y103{bottom:108.945000px;}
.y15e{bottom:110.196000px;}
.y11a{bottom:112.896000px;}
.y5e{bottom:113.256000px;}
.ye6{bottom:113.400000px;}
.y17c{bottom:113.430000px;}
.yfe{bottom:113.445000px;}
.yfa{bottom:113.580000px;}
.y17a{bottom:114.336000px;}
.y1ea{bottom:116.676000px;}
.ybd{bottom:119.916000px;}
.y198{bottom:122.436000px;}
.y1bf{bottom:124.416000px;}
.y148{bottom:126.540000px;}
.y5d{bottom:130.896000px;}
.y102{bottom:130.905000px;}
.y147{bottom:131.040000px;}
.yfd{bottom:131.085000px;}
.y1e9{bottom:134.316000px;}
.ybc{bottom:137.556000px;}
.y81{bottom:138.456000px;}
.y197{bottom:140.076000px;}
.y1be{bottom:142.056000px;}
.yf0{bottom:143.496000px;}
.ya4{bottom:143.856000px;}
.y5c{bottom:148.536000px;}
.y146{bottom:148.680000px;}
.y1e8{bottom:151.950000px;}
.y28{bottom:152.850000px;}
.ybb{bottom:155.190000px;}
.y80{bottom:156.090000px;}
.y196{bottom:157.530000px;}
.y5b{bottom:166.170000px;}
.y1bd{bottom:168.870000px;}
.y27{bottom:170.490000px;}
.y118{bottom:170.850000px;}
.y179{bottom:172.290000px;}
.yba{bottom:172.830000px;}
.y7f{bottom:173.550000px;}
.y195{bottom:175.170000px;}
.y1e7{bottom:178.410000px;}
.ya3{bottom:179.490000px;}
.y5a{bottom:183.630000px;}
.y26{bottom:188.130000px;}
.y132{bottom:188.490000px;}
.y140{bottom:188.850000px;}
.y7e{bottom:191.190000px;}
.y194{bottom:192.810000px;}
.y1e6{bottom:196.050000px;}
.yb9{bottom:199.290000px;}
.y59{bottom:201.270000px;}
.y25{bottom:205.770000px;}
.y1bc{bottom:205.950000px;}
.y7d{bottom:208.830000px;}
.y193{bottom:210.270000px;}
.ya2{bottom:215.130000px;}
.y58{bottom:218.910000px;}
.y1e5{bottom:222.690000px;}
.y24{bottom:223.230000px;}
.y1bb{bottom:223.590000px;}
.y15c{bottom:225.570000px;}
.y7c{bottom:226.290000px;}
.y192{bottom:227.910000px;}
.yb8{bottom:229.170000px;}
.y57{bottom:236.370000px;}
.yea{bottom:236.730000px;}
.y1e4{bottom:240.330000px;}
.y23{bottom:240.870000px;}
.y1ba{bottom:241.050000px;}
.y7b{bottom:243.930000px;}
.y191{bottom:245.550000px;}
.ya1{bottom:250.590000px;}
.yb7{bottom:256.530000px;}
.y22{bottom:258.510000px;}
.y1b9{bottom:258.690000px;}
.y7a{bottom:261.570000px;}
.y1e3{bottom:266.790000px;}
.y56{bottom:272.010000px;}
.y21{bottom:276.150000px;}
.y1b8{bottom:276.330000px;}
.y79{bottom:279.210000px;}
.y190{bottom:281.010000px;}
.yb6{bottom:283.890000px;}
.y1e2{bottom:284.430000px;}
.y115{bottom:286.050000px;}
.ya0{bottom:286.230000px;}
.y177{bottom:287.670000px;}
.y55{bottom:289.650000px;}
.y20{bottom:293.610000px;}
.y18f{bottom:298.650000px;}
.y1e1{bottom:302.070000px;}
.y130{bottom:303.690000px;}
.y78{bottom:305.670000px;}
.y54{bottom:307.110000px;}
.y1f{bottom:311.295000px;}
.y1b7{bottom:311.835000px;}
.y18e{bottom:316.335000px;}
.y13e{bottom:321.735000px;}
.y9f{bottom:321.915000px;}
.y15b{bottom:323.175000px;}
.y53{bottom:324.795000px;}
.y1e0{bottom:328.575000px;}
.y1b6{bottom:329.475000px;}
.y18d{bottom:333.975000px;}
.y1e{bottom:338.115000px;}
.yb4{bottom:338.655000px;}
.y77{bottom:341.355000px;}
.y52{bottom:342.435000px;}
.y1df{bottom:346.215000px;}
.y1b5{bottom:347.115000px;}
.y18c{bottom:351.435000px;}
.ye5{bottom:351.975000px;}
.y9e{bottom:357.375000px;}
.y76{bottom:358.815000px;}
.y51{bottom:360.075000px;}
.y1de{bottom:363.855000px;}
.yb2{bottom:366.015000px;}
.y114{bottom:366.195000px;}
.y18b{bottom:369.075000px;}
.y1b4{bottom:373.935000px;}
.y75{bottom:377.355000px;}
.y50{bottom:377.535000px;}
.y1dd{bottom:381.315000px;}
.y176{bottom:385.275000px;}
.y1d{bottom:386.355000px;}
.y18a{bottom:386.715000px;}
.y9d{bottom:393.015000px;}
.y74{bottom:394.815000px;}
.y4f{bottom:395.175000px;}
.y12d{bottom:401.475000px;}
.y189{bottom:404.175000px;}
.y1c{bottom:404.355000px;}
.y1dc{bottom:407.955000px;}
.y1b3{bottom:411.195000px;}
.y4e{bottom:412.815000px;}
.y73{bottom:413.355000px;}
.yb1{bottom:414.615000px;}
.y188{bottom:421.815000px;}
.y1db{bottom:425.595000px;}
.y9c{bottom:428.655000px;}
.y12e{bottom:428.835000px;}
.y4d{bottom:430.275000px;}
.y72{bottom:430.995000px;}
.y187{bottom:439.455000px;}
.y1b{bottom:441.255000px;}
.y4c{bottom:447.915000px;}
.y71{bottom:448.455000px;}
.yb0{bottom:450.255000px;}
.y1da{bottom:452.055000px;}
.y13c{bottom:454.575000px;}
.y15a{bottom:456.015000px;}
.y186{bottom:456.915000px;}
.y1a{bottom:458.895000px;}
.y1b2{bottom:459.615000px;}
.y111{bottom:463.935000px;}
.y9b{bottom:464.295000px;}
.y70{bottom:466.995000px;}
.yaf{bottom:467.895000px;}
.y1d9{bottom:469.695000px;}
.y185{bottom:474.555000px;}
.y4b{bottom:474.735000px;}
.y19{bottom:476.535000px;}
.y1b1{bottom:477.255000px;}
.y13d{bottom:481.935000px;}
.y6f{bottom:484.455000px;}
.ye0{bottom:484.815000px;}
.yae{bottom:485.535000px;}
.y112{bottom:491.295000px;}
.y18{bottom:494.175000px;}
.y12c{bottom:495.075000px;}
.y1d8{bottom:496.335000px;}
.y9a{bottom:499.755000px;}
.y184{bottom:501.375000px;}
.yad{bottom:502.995000px;}
.y159{bottom:504.795000px;}
.y17{bottom:511.815000px;}
.y1b0{bottom:512.715000px;}
.y1d7{bottom:513.975000px;}
.y175{bottom:518.115000px;}
.y4a{bottom:522.975000px;}
.y16{bottom:529.275000px;}
.yac{bottom:529.635000px;}
.y1af{bottom:530.355000px;}
.y12b{bottom:530.535000px;}
.y99{bottom:535.395000px;}
.y1fd{bottom:540.255000px;}
.y158{bottom:540.435000px;}
.y49{bottom:540.615000px;}
.y15{bottom:546.915000px;}
.y6e{bottom:547.455000px;}
.y1ae{bottom:547.995000px;}
.y12a{bottom:548.175000px;}
.y183{bottom:549.795000px;}
.y98{bottom:553.035000px;}
.y110{bottom:557.535000px;}
.y1fc{bottom:557.895000px;}
.y157{bottom:558.075000px;}
.y48{bottom:558.255000px;}
.yab{bottom:562.215000px;}
.y14{bottom:564.555000px;}
.y6d{bottom:565.095000px;}
.y1ad{bottom:565.455000px;}
.y129{bottom:565.815000px;}
.y174{bottom:566.895000px;}
.y182{bottom:567.435000px;}
.y47{bottom:575.895000px;}
.y97{bottom:579.495000px;}
.y13{bottom:582.015000px;}
.yd7{bottom:582.555000px;}
.y6c{bottom:582.735000px;}
.y1ac{bottom:583.125000px;}
.y128{bottom:583.485000px;}
.y13b{bottom:583.845000px;}
.y1fb{bottom:584.385000px;}
.y181{bottom:584.925000px;}
.y1d6{bottom:589.065000px;}
.y10f{bottom:593.205000px;}
.y46{bottom:593.385000px;}
.y156{bottom:593.565000px;}
.yaa{bottom:597.885000px;}
.y12{bottom:599.685000px;}
.y6b{bottom:600.225000px;}
.y1ab{bottom:600.765000px;}
.y13a{bottom:601.485000px;}
.y1fa{bottom:602.025000px;}
.y173{bottom:602.565000px;}
.y1d5{bottom:606.705000px;}
.y10e{bottom:610.845000px;}
.y155{bottom:611.205000px;}
.y96{bottom:615.165000px;}
.ya9{bottom:615.525000px;}
.y11{bottom:617.325000px;}
.y1aa{bottom:618.225000px;}
.y127{bottom:618.945000px;}
.y139{bottom:619.125000px;}
.y180{bottom:620.205000px;}
.y10d{bottom:628.305000px;}
.y1f9{bottom:628.665000px;}
.y154{bottom:628.845000px;}
.y45{bottom:629.025000px;}
.y95{bottom:632.805000px;}
.ya8{bottom:632.985000px;}
.y10{bottom:634.785000px;}
.y6a{bottom:635.865000px;}
.y126{bottom:636.585000px;}
.y172{bottom:638.025000px;}
.y1d4{bottom:642.165000px;}
.y10c{bottom:645.945000px;}
.y153{bottom:646.305000px;}
.y44{bottom:646.665000px;}
.y94{bottom:650.445000px;}
.ya7{bottom:650.625000px;}
.yf{bottom:652.425000px;}
.y69{bottom:653.505000px;}
.y125{bottom:654.225000px;}
.y171{bottom:655.665000px;}
.y1d3{bottom:659.805000px;}
.y10b{bottom:663.585000px;}
.y1f8{bottom:663.765000px;}
.y152{bottom:663.945000px;}
.y43{bottom:664.305000px;}
.y93{bottom:667.905000px;}
.ye{bottom:670.065000px;}
.y68{bottom:671.145000px;}
.y124{bottom:671.865000px;}
.y170{bottom:673.305000px;}
.y1d2{bottom:677.445000px;}
.y151{bottom:681.585000px;}
.y42{bottom:681.765000px;}
.y92{bottom:685.545000px;}
.ya6{bottom:686.085000px;}
.yd{bottom:687.705000px;}
.y67{bottom:688.605000px;}
.y1a9{bottom:688.965000px;}
.y138{bottom:689.325000px;}
.y1f7{bottom:690.405000px;}
.y16f{bottom:690.945000px;}
.y1d1{bottom:695.085000px;}
.ycd{bottom:697.785000px;}
.y123{bottom:698.685000px;}
.y10a{bottom:699.045000px;}
.y150{bottom:699.225000px;}
.y41{bottom:699.405000px;}
.y91{bottom:703.185000px;}
.y66{bottom:706.245000px;}
.y1a8{bottom:706.605000px;}
.y137{bottom:706.965000px;}
.y1f6{bottom:708.045000px;}
.y16e{bottom:708.405000px;}
.y1d0{bottom:712.725000px;}
.yc{bottom:714.345000px;}
.y109{bottom:716.685000px;}
.ya5{bottom:718.305000px;}
.y90{bottom:720.645000px;}
.y65{bottom:723.885000px;}
.y1a7{bottom:724.245000px;}
.y136{bottom:724.605000px;}
.ycf{bottom:725.145000px;}
.y1f5{bottom:725.505000px;}
.y17f{bottom:726.045000px;}
.y1cf{bottom:730.185000px;}
.y122{bottom:733.065000px;}
.y108{bottom:734.325000px;}
.y40{bottom:734.865000px;}
.y64{bottom:741.345000px;}
.y1a6{bottom:741.885000px;}
.y1f4{bottom:743.145000px;}
.y17e{bottom:743.685000px;}
.y16d{bottom:744.045000px;}
.y8f{bottom:747.465000px;}
.y135{bottom:751.425000px;}
.y107{bottom:751.965000px;}
.y3f{bottom:752.505000px;}
.y1ce{bottom:757.005000px;}
.y63{bottom:758.985000px;}
.y1a5{bottom:759.345000px;}
.y14f{bottom:761.145000px;}
.y16c{bottom:761.685000px;}
.yb{bottom:762.765000px;}
.y106{bottom:769.425000px;}
.y1f3{bottom:769.605000px;}
.y3e{bottom:770.145000px;}
.y1a4{bottom:776.985000px;}
.y16b{bottom:779.145000px;}
.y62{bottom:785.805000px;}
.y1f2{bottom:787.245000px;}
.y3d{bottom:787.785000px;}
.ycc{bottom:791.385000px;}
.y1cd{bottom:794.085000px;}
.y1a3{bottom:794.625000px;}
.y14c{bottom:795.525000px;}
.y8e{bottom:795.885000px;}
.y105{bottom:796.245000px;}
.y16a{bottom:796.785000px;}
.ya{bottom:798.585000px;}
.y1f1{bottom:804.885000px;}
.y3c{bottom:805.245000px;}
.y1cc{bottom:811.725000px;}
.y1a2{bottom:812.085000px;}
.y8d{bottom:813.525000px;}
.y169{bottom:814.425000px;}
.y3b{bottom:822.885000px;}
.ycb{bottom:827.025000px;}
.y1cb{bottom:829.365000px;}
.y1a1{bottom:829.725000px;}
.yfc{bottom:830.805000px;}
.y8c{bottom:831.165000px;}
.y1f0{bottom:831.525000px;}
.y168{bottom:832.065000px;}
.y9{bottom:834.585000px;}
.y3a{bottom:840.525000px;}
.yca{bottom:844.665000px;}
.y1ca{bottom:846.825000px;}
.y1a0{bottom:847.365000px;}
.y120{bottom:848.265000px;}
.y8b{bottom:848.625000px;}
.y1ef{bottom:849.165000px;}
.y167{bottom:849.525000px;}
.y39{bottom:858.165000px;}
.y8a{bottom:866.310000px;}
.y1ee{bottom:866.670000px;}
.y166{bottom:867.210000px;}
.yc9{bottom:871.530000px;}
.y19f{bottom:874.230000px;}
.y8{bottom:874.410000px;}
.y61{bottom:876.030000px;}
.y1c9{bottom:882.510000px;}
.y165{bottom:884.850000px;}
.y7{bottom:892.410000px;}
.y1ed{bottom:893.310000px;}
.y38{bottom:893.670000px;}
.y17d{bottom:894.030000px;}
.y1c8{bottom:900.150000px;}
.y89{bottom:901.770000px;}
.y1ec{bottom:910.950000px;}
.y37{bottom:911.310000px;}
.y164{bottom:911.670000px;}
.y1c7{bottom:917.790000px;}
.y134{bottom:918.690000px;}
.y88{bottom:919.410000px;}
.yc8{bottom:919.770000px;}
.y6{bottom:924.630000px;}
.y145{bottom:928.410000px;}
.y36{bottom:928.950000px;}
.y1c6{bottom:935.250000px;}
.yc7{bottom:937.410000px;}
.y163{bottom:946.050000px;}
.y35{bottom:946.410000px;}
.y87{bottom:955.050000px;}
.y5{bottom:962.970000px;}
.y11e{bottom:963.690000px;}
.y60{bottom:964.050000px;}
.y1c5{bottom:970.890000px;}
.y86{bottom:972.690000px;}
.yc6{bottom:973.050000px;}
.yf9{bottom:981.150000px;}
.y5f{bottom:981.690000px;}
.y34{bottom:982.050000px;}
.y4{bottom:987.630000px;}
.y1c4{bottom:988.530000px;}
.y85{bottom:990.150000px;}
.yc5{bottom:990.690000px;}
.y19e{bottom:999.150000px;}
.y33{bottom:999.690000px;}
.y1c3{bottom:1005.990000px;}
.y84{bottom:1007.790000px;}
.yc4{bottom:1008.150000px;}
.y3{bottom:1012.290000px;}
.y133{bottom:1016.430000px;}
.y19d{bottom:1016.790000px;}
.y32{bottom:1017.150000px;}
.y1c2{bottom:1023.630000px;}
.yc3{bottom:1025.790000px;}
.y17b{bottom:1026.150000px;}
.y83{bottom:1034.430000px;}
.y31{bottom:1034.790000px;}
.y1c1{bottom:1041.270000px;}
.yc2{bottom:1043.430000px;}
.y19c{bottom:1052.070000px;}
.y30{bottom:1052.430000px;}
.y1eb{bottom:1060.890000px;}
.yc1{bottom:1061.070000px;}
.y1c0{bottom:1068.090000px;}
.y19b{bottom:1069.530000px;}
.y82{bottom:1069.890000px;}
.y2f{bottom:1070.070000px;}
.yc0{bottom:1078.530000px;}
.y19a{bottom:1087.170000px;}
.y2e{bottom:1087.530000px;}
.ybf{bottom:1096.170000px;}
.y11d{bottom:1096.530000px;}
.y2d{bottom:1105.170000px;}
.ybe{bottom:1113.810000px;}
.yf8{bottom:1113.990000px;}
.y199{bottom:1122.630000px;}
.y2c{bottom:1122.810000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.he{height:26.460000px;}
.h10{height:26.640000px;}
.h11{height:26.676000px;}
.h6{height:35.477578px;}
.h3{height:39.468516px;}
.h18{height:39.816000px;}
.h13{height:44.100000px;}
.h2{height:46.986328px;}
.hf{height:50.597578px;}
.h7{height:51.998203px;}
.h8{height:56.084062px;}
.h1c{height:57.240000px;}
.h1d{height:57.276000px;}
.h5{height:57.636562px;}
.hd{height:59.614102px;}
.h9{height:60.960938px;}
.hc{height:61.423863px;}
.hb{height:62.211094px;}
.ha{height:68.956875px;}
.h12{height:71.460000px;}
.h4{height:73.298672px;}
.h20{height:74.880000px;}
.h1a{height:79.416000px;}
.h17{height:92.520000px;}
.h21{height:96.840000px;}
.h24{height:96.876000px;}
.h15{height:97.020000px;}
.h1f{height:97.056000px;}
.h1b{height:114.480000px;}
.h14{height:114.516000px;}
.h25{height:114.660000px;}
.h1e{height:114.696000px;}
.h27{height:127.656000px;}
.h16{height:132.120000px;}
.h22{height:132.156000px;}
.h19{height:149.616000px;}
.h26{height:149.760000px;}
.h23{height:167.400000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w23{width:43.380000px;}
.w1e{width:43.596000px;}
.w17{width:46.800000px;}
.we{width:46.980000px;}
.w21{width:55.836000px;}
.w13{width:56.016000px;}
.w16{width:56.736000px;}
.wc{width:57.240000px;}
.wa{width:57.276000px;}
.wd{width:60.336000px;}
.w1c{width:63.000000px;}
.w15{width:63.180000px;}
.w12{width:67.680000px;}
.w9{width:68.940000px;}
.w14{width:73.620000px;}
.w22{width:74.340000px;}
.w1b{width:74.520000px;}
.wb{width:75.060000px;}
.w11{width:76.320000px;}
.w20{width:76.500000px;}
.w7{width:77.220000px;}
.w8{width:77.256000px;}
.w1a{width:77.976000px;}
.w3{width:111.096000px;}
.w6{width:113.436000px;}
.w18{width:115.236000px;}
.wf{width:115.416000px;}
.w24{width:116.136000px;}
.w1d{width:116.460000px;}
.w19{width:116.676000px;}
.w10{width:117.216000px;}
.w1f{width:118.116000px;}
.w25{width:150.510000px;}
.w26{width:150.690000px;}
.w4{width:155.010000px;}
.w5{width:164.550000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.075987px;}
.x24{left:111.275987px;}
.x5{left:122.075987px;}
.xc{left:182.910000px;}
.x15{left:186.690000px;}
.x2{left:202.709987px;}
.x20{left:220.170000px;}
.x8{left:230.610000px;}
.xd{left:260.850000px;}
.x16{left:263.775000px;}
.x1a{left:264.855000px;}
.x7{left:328.934987px;}
.xe{left:338.835000px;}
.x17{left:340.815000px;}
.xa{left:342.435000px;}
.x21{left:371.415000px;}
.xf{left:408.495000px;}
.x1b{left:410.295000px;}
.x10{left:466.485000px;}
.x1f{left:467.745000px;}
.xb{left:498.165000px;}
.x22{left:522.645000px;}
.x18{left:540.285000px;}
.x11{left:542.445000px;}
.x12{left:600.405000px;}
.x19{left:604.185000px;}
.x1c{left:606.345000px;}
.x13{left:661.470000px;}
.x1d{left:663.810000px;}
.x6{left:665.969987px;}
.x23{left:674.070000px;}
.x14{left:709.170000px;}
.x1e{left:780.990000px;}
.x3{left:791.969987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.329067pt;}
.ls7{letter-spacing:-0.290133pt;}
.ls12{letter-spacing:-0.086933pt;}
.ls1a{letter-spacing:-0.047360pt;}
.ls17{letter-spacing:-0.035840pt;}
.ls18{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.011733pt;}
.ls4{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.186133pt;}
.lsc{letter-spacing:0.188160pt;}
.ls11{letter-spacing:0.284160pt;}
.ls14{letter-spacing:0.292267pt;}
.ls8{letter-spacing:0.312533pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.342933pt;}
.lsd{letter-spacing:0.592640pt;}
.lsf{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.650667pt;}
.ls10{letter-spacing:11.353600pt;}
.ls2{letter-spacing:13.440000pt;}
.ls19{letter-spacing:42.192640pt;}
.lse{letter-spacing:56.912640pt;}
.ls16{letter-spacing:72.272640pt;}
.wsb{word-spacing:-53.120000pt;}
.wsa{word-spacing:-13.296533pt;}
.ws7{word-spacing:-12.953600pt;}
.wsc{word-spacing:-12.337067pt;}
.wsd{word-spacing:-11.978667pt;}
.ws10{word-spacing:-11.970560pt;}
.ws4{word-spacing:-11.698133pt;}
.ws9{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.wsf{word-spacing:-11.654400pt;}
.wse{word-spacing:-11.650560pt;}
.ws11{word-spacing:-11.639040pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:2.268480pt;}
._10{margin-left:-3.221652pt;}
._5{margin-left:-2.249708pt;}
._0{margin-left:-1.008000pt;}
._4{width:0.902934pt;}
._3{width:1.801929pt;}
._7{width:3.558934pt;}
._a{width:4.782394pt;}
._e{width:6.428264pt;}
._d{width:7.383468pt;}
._f{width:8.764800pt;}
._b{width:9.667734pt;}
._c{width:10.677332pt;}
._6{width:12.802132pt;}
._11{width:14.252938pt;}
._1{width:15.441142pt;}
._8{width:16.998400pt;}
._9{width:17.901865pt;}
._15{width:18.910401pt;}
._1d{width:20.178985pt;}
._16{width:21.180262pt;}
._14{width:22.204160pt;}
._12{width:23.476586pt;}
._13{width:24.923308pt;}
._26{width:26.552960pt;}
._17{width:28.312960pt;}
._2{width:29.577675pt;}
._43{width:30.862720pt;}
._3c{width:32.509440pt;}
._2b{width:33.784320pt;}
._3b{width:34.995200pt;}
._30{width:36.167680pt;}
._2c{width:37.608960pt;}
._23{width:38.883840pt;}
._4a{width:39.840000pt;}
._2e{width:41.964800pt;}
._21{width:43.816960pt;}
._5f{width:44.833280pt;}
._4e{width:46.055040pt;}
._2f{width:47.542400pt;}
._5b{width:49.242240pt;}
._2a{width:51.898240pt;}
._20{width:52.960640pt;}
._34{width:54.023040pt;}
._1a{width:55.510400pt;}
._48{width:56.466560pt;}
._1b{width:57.741440pt;}
._4f{width:59.813120pt;}
._3a{width:61.884800pt;}
._36{width:62.840960pt;}
._29{width:64.487680pt;}
._5e{width:67.993600pt;}
._22{width:69.480960pt;}
._5a{width:72.455680pt;}
._33{width:73.677440pt;}
._52{width:75.271040pt;}
._18{width:76.970880pt;}
._4c{width:78.033386pt;}
._4d{width:79.255040pt;}
._50{width:82.336000pt;}
._3f{width:85.151360pt;}
._1c{width:86.320000pt;}
._6a{width:88.125868pt;}
._42{width:89.454186pt;}
._69{width:90.800105pt;}
._53{width:91.844480pt;}
._3d{width:93.013120pt;}
._44{width:95.722240pt;}
._40{width:98.059626pt;}
._63{width:99.228160pt;}
._51{width:102.415360pt;}
._28{width:103.318400pt;}
._31{width:105.071360pt;}
._3e{width:106.664960pt;}
._67{width:108.683732pt;}
._66{width:109.586560pt;}
._37{width:111.020800pt;}
._35{width:115.854720pt;}
._61{width:116.970240pt;}
._27{width:119.520000pt;}
._38{width:123.291520pt;}
._62{width:125.150720pt;}
._5c{width:126.160000pt;}
._1f{width:127.912960pt;}
._47{width:133.118720pt;}
._2d{width:134.181120pt;}
._19{width:140.821226pt;}
._46{width:145.442560pt;}
._54{width:150.860906pt;}
._24{width:157.500800pt;}
._39{width:163.344000pt;}
._59{width:165.203200pt;}
._5d{width:168.231040pt;}
._45{width:172.533760pt;}
._68{width:173.426132pt;}
._49{width:174.552320pt;}
._1e{width:181.936000pt;}
._57{width:183.157760pt;}
._56{width:190.382080pt;}
._32{width:198.296960pt;}
._65{width:204.420375pt;}
._64{width:205.400425pt;}
._25{width:208.442880pt;}
._58{width:218.376320pt;}
._55{width:222.519680pt;}
._4b{width:242.864640pt;}
._60{width:246.795520pt;}
._41{width:315.692160pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:3.040000pt;}
.yb3{bottom:6.880000pt;}
.yb5{bottom:7.040000pt;}
.ydd{bottom:7.066667pt;}
.y131{bottom:7.080000pt;}
.y144{bottom:10.560000pt;}
.yd6{bottom:11.680000pt;}
.y11c{bottom:18.560000pt;}
.yf4{bottom:18.714667pt;}
.y142{bottom:18.720000pt;}
.yd1{bottom:22.560000pt;}
.y178{bottom:22.600000pt;}
.yd0{bottom:22.720000pt;}
.ydc{bottom:22.746667pt;}
.y117{bottom:22.760000pt;}
.yf7{bottom:26.234667pt;}
.y12f{bottom:27.200000pt;}
.yd3{bottom:27.360000pt;}
.y143{bottom:30.240000pt;}
.y113{bottom:31.200000pt;}
.yd5{bottom:31.360000pt;}
.y11b{bottom:34.234667pt;}
.yf3{bottom:34.394667pt;}
.yed{bottom:38.240000pt;}
.ydb{bottom:38.266667pt;}
.y101{bottom:38.280000pt;}
.y162{bottom:38.394667pt;}
.ye3{bottom:38.400000pt;}
.y116{bottom:38.440000pt;}
.yd2{bottom:40.000000pt;}
.y13f{bottom:41.920000pt;}
.yf6{bottom:45.914667pt;}
.yef{bottom:45.920000pt;}
.ydf{bottom:45.946667pt;}
.yce{bottom:46.880000pt;}
.yd4{bottom:47.040000pt;}
.yf2{bottom:49.914667pt;}
.ye4{bottom:49.920000pt;}
.y14b{bottom:53.600000pt;}
.y15d{bottom:53.760000pt;}
.y161{bottom:53.914667pt;}
.ye2{bottom:53.920000pt;}
.yda{bottom:53.946667pt;}
.y100{bottom:53.960000pt;}
.y141{bottom:61.440000pt;}
.ye9{bottom:61.600000pt;}
.y14e{bottom:61.640000pt;}
.y2{bottom:65.152000pt;}
.yde{bottom:65.466667pt;}
.yee{bottom:65.480000pt;}
.yf1{bottom:65.594667pt;}
.y2a{bottom:65.952000pt;}
.y11f{bottom:69.440000pt;}
.yff{bottom:69.480000pt;}
.y160{bottom:69.594667pt;}
.ye1{bottom:69.600000pt;}
.yd9{bottom:69.626667pt;}
.yec{bottom:69.640000pt;}
.y14a{bottom:73.120000pt;}
.y104{bottom:77.160000pt;}
.ye8{bottom:81.120000pt;}
.y14d{bottom:81.160000pt;}
.yfb{bottom:81.280000pt;}
.y119{bottom:85.120000pt;}
.yd8{bottom:85.146667pt;}
.yeb{bottom:85.160000pt;}
.y15f{bottom:85.274667pt;}
.ye7{bottom:85.280000pt;}
.y1{bottom:85.312000pt;}
.y121{bottom:85.320000pt;}
.y149{bottom:92.800000pt;}
.y103{bottom:96.840000pt;}
.y15e{bottom:97.952000pt;}
.y11a{bottom:100.352000pt;}
.y5e{bottom:100.672000pt;}
.ye6{bottom:100.800000pt;}
.y17c{bottom:100.826667pt;}
.yfe{bottom:100.840000pt;}
.yfa{bottom:100.960000pt;}
.y17a{bottom:101.632000pt;}
.y1ea{bottom:103.712000pt;}
.ybd{bottom:106.592000pt;}
.y198{bottom:108.832000pt;}
.y1bf{bottom:110.592000pt;}
.y148{bottom:112.480000pt;}
.y5d{bottom:116.352000pt;}
.y102{bottom:116.360000pt;}
.y147{bottom:116.480000pt;}
.yfd{bottom:116.520000pt;}
.y1e9{bottom:119.392000pt;}
.ybc{bottom:122.272000pt;}
.y81{bottom:123.072000pt;}
.y197{bottom:124.512000pt;}
.y1be{bottom:126.272000pt;}
.yf0{bottom:127.552000pt;}
.ya4{bottom:127.872000pt;}
.y5c{bottom:132.032000pt;}
.y146{bottom:132.160000pt;}
.y1e8{bottom:135.066667pt;}
.y28{bottom:135.866667pt;}
.ybb{bottom:137.946667pt;}
.y80{bottom:138.746667pt;}
.y196{bottom:140.026667pt;}
.y5b{bottom:147.706667pt;}
.y1bd{bottom:150.106667pt;}
.y27{bottom:151.546667pt;}
.y118{bottom:151.866667pt;}
.y179{bottom:153.146667pt;}
.yba{bottom:153.626667pt;}
.y7f{bottom:154.266667pt;}
.y195{bottom:155.706667pt;}
.y1e7{bottom:158.586667pt;}
.ya3{bottom:159.546667pt;}
.y5a{bottom:163.226667pt;}
.y26{bottom:167.226667pt;}
.y132{bottom:167.546667pt;}
.y140{bottom:167.866667pt;}
.y7e{bottom:169.946667pt;}
.y194{bottom:171.386667pt;}
.y1e6{bottom:174.266667pt;}
.yb9{bottom:177.146667pt;}
.y59{bottom:178.906667pt;}
.y25{bottom:182.906667pt;}
.y1bc{bottom:183.066667pt;}
.y7d{bottom:185.626667pt;}
.y193{bottom:186.906667pt;}
.ya2{bottom:191.226667pt;}
.y58{bottom:194.586667pt;}
.y1e5{bottom:197.946667pt;}
.y24{bottom:198.426667pt;}
.y1bb{bottom:198.746667pt;}
.y15c{bottom:200.506667pt;}
.y7c{bottom:201.146667pt;}
.y192{bottom:202.586667pt;}
.yb8{bottom:203.706667pt;}
.y57{bottom:210.106667pt;}
.yea{bottom:210.426667pt;}
.y1e4{bottom:213.626667pt;}
.y23{bottom:214.106667pt;}
.y1ba{bottom:214.266667pt;}
.y7b{bottom:216.826667pt;}
.y191{bottom:218.266667pt;}
.ya1{bottom:222.746667pt;}
.yb7{bottom:228.026667pt;}
.y22{bottom:229.786667pt;}
.y1b9{bottom:229.946667pt;}
.y7a{bottom:232.506667pt;}
.y1e3{bottom:237.146667pt;}
.y56{bottom:241.786667pt;}
.y21{bottom:245.466667pt;}
.y1b8{bottom:245.626667pt;}
.y79{bottom:248.186667pt;}
.y190{bottom:249.786667pt;}
.yb6{bottom:252.346667pt;}
.y1e2{bottom:252.826667pt;}
.y115{bottom:254.266667pt;}
.ya0{bottom:254.426667pt;}
.y177{bottom:255.706667pt;}
.y55{bottom:257.466667pt;}
.y20{bottom:260.986667pt;}
.y18f{bottom:265.466667pt;}
.y1e1{bottom:268.506667pt;}
.y130{bottom:269.946667pt;}
.y78{bottom:271.706667pt;}
.y54{bottom:272.986667pt;}
.y1f{bottom:276.706667pt;}
.y1b7{bottom:277.186667pt;}
.y18e{bottom:281.186667pt;}
.y13e{bottom:285.986667pt;}
.y9f{bottom:286.146667pt;}
.y15b{bottom:287.266667pt;}
.y53{bottom:288.706667pt;}
.y1e0{bottom:292.066667pt;}
.y1b6{bottom:292.866667pt;}
.y18d{bottom:296.866667pt;}
.y1e{bottom:300.546667pt;}
.yb4{bottom:301.026667pt;}
.y77{bottom:303.426667pt;}
.y52{bottom:304.386667pt;}
.y1df{bottom:307.746667pt;}
.y1b5{bottom:308.546667pt;}
.y18c{bottom:312.386667pt;}
.ye5{bottom:312.866667pt;}
.y9e{bottom:317.666667pt;}
.y76{bottom:318.946667pt;}
.y51{bottom:320.066667pt;}
.y1de{bottom:323.426667pt;}
.yb2{bottom:325.346667pt;}
.y114{bottom:325.506667pt;}
.y18b{bottom:328.066667pt;}
.y1b4{bottom:332.386667pt;}
.y75{bottom:335.426667pt;}
.y50{bottom:335.586667pt;}
.y1dd{bottom:338.946667pt;}
.y176{bottom:342.466667pt;}
.y1d{bottom:343.426667pt;}
.y18a{bottom:343.746667pt;}
.y9d{bottom:349.346667pt;}
.y74{bottom:350.946667pt;}
.y4f{bottom:351.266667pt;}
.y12d{bottom:356.866667pt;}
.y189{bottom:359.266667pt;}
.y1c{bottom:359.426667pt;}
.y1dc{bottom:362.626667pt;}
.y1b3{bottom:365.506667pt;}
.y4e{bottom:366.946667pt;}
.y73{bottom:367.426667pt;}
.yb1{bottom:368.546667pt;}
.y188{bottom:374.946667pt;}
.y1db{bottom:378.306667pt;}
.y9c{bottom:381.026667pt;}
.y12e{bottom:381.186667pt;}
.y4d{bottom:382.466667pt;}
.y72{bottom:383.106667pt;}
.y187{bottom:390.626667pt;}
.y1b{bottom:392.226667pt;}
.y4c{bottom:398.146667pt;}
.y71{bottom:398.626667pt;}
.yb0{bottom:400.226667pt;}
.y1da{bottom:401.826667pt;}
.y13c{bottom:404.066667pt;}
.y15a{bottom:405.346667pt;}
.y186{bottom:406.146667pt;}
.y1a{bottom:407.906667pt;}
.y1b2{bottom:408.546667pt;}
.y111{bottom:412.386667pt;}
.y9b{bottom:412.706667pt;}
.y70{bottom:415.106667pt;}
.yaf{bottom:415.906667pt;}
.y1d9{bottom:417.506667pt;}
.y185{bottom:421.826667pt;}
.y4b{bottom:421.986667pt;}
.y19{bottom:423.586667pt;}
.y1b1{bottom:424.226667pt;}
.y13d{bottom:428.386667pt;}
.y6f{bottom:430.626667pt;}
.ye0{bottom:430.946667pt;}
.yae{bottom:431.586667pt;}
.y112{bottom:436.706667pt;}
.y18{bottom:439.266667pt;}
.y12c{bottom:440.066667pt;}
.y1d8{bottom:441.186667pt;}
.y9a{bottom:444.226667pt;}
.y184{bottom:445.666667pt;}
.yad{bottom:447.106667pt;}
.y159{bottom:448.706667pt;}
.y17{bottom:454.946667pt;}
.y1b0{bottom:455.746667pt;}
.y1d7{bottom:456.866667pt;}
.y175{bottom:460.546667pt;}
.y4a{bottom:464.866667pt;}
.y16{bottom:470.466667pt;}
.yac{bottom:470.786667pt;}
.y1af{bottom:471.426667pt;}
.y12b{bottom:471.586667pt;}
.y99{bottom:475.906667pt;}
.y1fd{bottom:480.226667pt;}
.y158{bottom:480.386667pt;}
.y49{bottom:480.546667pt;}
.y15{bottom:486.146667pt;}
.y6e{bottom:486.626667pt;}
.y1ae{bottom:487.106667pt;}
.y12a{bottom:487.266667pt;}
.y183{bottom:488.706667pt;}
.y98{bottom:491.586667pt;}
.y110{bottom:495.586667pt;}
.y1fc{bottom:495.906667pt;}
.y157{bottom:496.066667pt;}
.y48{bottom:496.226667pt;}
.yab{bottom:499.746667pt;}
.y14{bottom:501.826667pt;}
.y6d{bottom:502.306667pt;}
.y1ad{bottom:502.626667pt;}
.y129{bottom:502.946667pt;}
.y174{bottom:503.906667pt;}
.y182{bottom:504.386667pt;}
.y47{bottom:511.906667pt;}
.y97{bottom:515.106667pt;}
.y13{bottom:517.346667pt;}
.yd7{bottom:517.826667pt;}
.y6c{bottom:517.986667pt;}
.y1ac{bottom:518.333333pt;}
.y128{bottom:518.653333pt;}
.y13b{bottom:518.973333pt;}
.y1fb{bottom:519.453333pt;}
.y181{bottom:519.933333pt;}
.y1d6{bottom:523.613333pt;}
.y10f{bottom:527.293333pt;}
.y46{bottom:527.453333pt;}
.y156{bottom:527.613333pt;}
.yaa{bottom:531.453333pt;}
.y12{bottom:533.053333pt;}
.y6b{bottom:533.533333pt;}
.y1ab{bottom:534.013333pt;}
.y13a{bottom:534.653333pt;}
.y1fa{bottom:535.133333pt;}
.y173{bottom:535.613333pt;}
.y1d5{bottom:539.293333pt;}
.y10e{bottom:542.973333pt;}
.y155{bottom:543.293333pt;}
.y96{bottom:546.813333pt;}
.ya9{bottom:547.133333pt;}
.y11{bottom:548.733333pt;}
.y1aa{bottom:549.533333pt;}
.y127{bottom:550.173333pt;}
.y139{bottom:550.333333pt;}
.y180{bottom:551.293333pt;}
.y10d{bottom:558.493333pt;}
.y1f9{bottom:558.813333pt;}
.y154{bottom:558.973333pt;}
.y45{bottom:559.133333pt;}
.y95{bottom:562.493333pt;}
.ya8{bottom:562.653333pt;}
.y10{bottom:564.253333pt;}
.y6a{bottom:565.213333pt;}
.y126{bottom:565.853333pt;}
.y172{bottom:567.133333pt;}
.y1d4{bottom:570.813333pt;}
.y10c{bottom:574.173333pt;}
.y153{bottom:574.493333pt;}
.y44{bottom:574.813333pt;}
.y94{bottom:578.173333pt;}
.ya7{bottom:578.333333pt;}
.yf{bottom:579.933333pt;}
.y69{bottom:580.893333pt;}
.y125{bottom:581.533333pt;}
.y171{bottom:582.813333pt;}
.y1d3{bottom:586.493333pt;}
.y10b{bottom:589.853333pt;}
.y1f8{bottom:590.013333pt;}
.y152{bottom:590.173333pt;}
.y43{bottom:590.493333pt;}
.y93{bottom:593.693333pt;}
.ye{bottom:595.613333pt;}
.y68{bottom:596.573333pt;}
.y124{bottom:597.213333pt;}
.y170{bottom:598.493333pt;}
.y1d2{bottom:602.173333pt;}
.y151{bottom:605.853333pt;}
.y42{bottom:606.013333pt;}
.y92{bottom:609.373333pt;}
.ya6{bottom:609.853333pt;}
.yd{bottom:611.293333pt;}
.y67{bottom:612.093333pt;}
.y1a9{bottom:612.413333pt;}
.y138{bottom:612.733333pt;}
.y1f7{bottom:613.693333pt;}
.y16f{bottom:614.173333pt;}
.y1d1{bottom:617.853333pt;}
.ycd{bottom:620.253333pt;}
.y123{bottom:621.053333pt;}
.y10a{bottom:621.373333pt;}
.y150{bottom:621.533333pt;}
.y41{bottom:621.693333pt;}
.y91{bottom:625.053333pt;}
.y66{bottom:627.773333pt;}
.y1a8{bottom:628.093333pt;}
.y137{bottom:628.413333pt;}
.y1f6{bottom:629.373333pt;}
.y16e{bottom:629.693333pt;}
.y1d0{bottom:633.533333pt;}
.yc{bottom:634.973333pt;}
.y109{bottom:637.053333pt;}
.ya5{bottom:638.493333pt;}
.y90{bottom:640.573333pt;}
.y65{bottom:643.453333pt;}
.y1a7{bottom:643.773333pt;}
.y136{bottom:644.093333pt;}
.ycf{bottom:644.573333pt;}
.y1f5{bottom:644.893333pt;}
.y17f{bottom:645.373333pt;}
.y1cf{bottom:649.053333pt;}
.y122{bottom:651.613333pt;}
.y108{bottom:652.733333pt;}
.y40{bottom:653.213333pt;}
.y64{bottom:658.973333pt;}
.y1a6{bottom:659.453333pt;}
.y1f4{bottom:660.573333pt;}
.y17e{bottom:661.053333pt;}
.y16d{bottom:661.373333pt;}
.y8f{bottom:664.413333pt;}
.y135{bottom:667.933333pt;}
.y107{bottom:668.413333pt;}
.y3f{bottom:668.893333pt;}
.y1ce{bottom:672.893333pt;}
.y63{bottom:674.653333pt;}
.y1a5{bottom:674.973333pt;}
.y14f{bottom:676.573333pt;}
.y16c{bottom:677.053333pt;}
.yb{bottom:678.013333pt;}
.y106{bottom:683.933333pt;}
.y1f3{bottom:684.093333pt;}
.y3e{bottom:684.573333pt;}
.y1a4{bottom:690.653333pt;}
.y16b{bottom:692.573333pt;}
.y62{bottom:698.493333pt;}
.y1f2{bottom:699.773333pt;}
.y3d{bottom:700.253333pt;}
.ycc{bottom:703.453333pt;}
.y1cd{bottom:705.853333pt;}
.y1a3{bottom:706.333333pt;}
.y14c{bottom:707.133333pt;}
.y8e{bottom:707.453333pt;}
.y105{bottom:707.773333pt;}
.y16a{bottom:708.253333pt;}
.ya{bottom:709.853333pt;}
.y1f1{bottom:715.453333pt;}
.y3c{bottom:715.773333pt;}
.y1cc{bottom:721.533333pt;}
.y1a2{bottom:721.853333pt;}
.y8d{bottom:723.133333pt;}
.y169{bottom:723.933333pt;}
.y3b{bottom:731.453333pt;}
.ycb{bottom:735.133333pt;}
.y1cb{bottom:737.213333pt;}
.y1a1{bottom:737.533333pt;}
.yfc{bottom:738.493333pt;}
.y8c{bottom:738.813333pt;}
.y1f0{bottom:739.133333pt;}
.y168{bottom:739.613333pt;}
.y9{bottom:741.853333pt;}
.y3a{bottom:747.133333pt;}
.yca{bottom:750.813333pt;}
.y1ca{bottom:752.733333pt;}
.y1a0{bottom:753.213333pt;}
.y120{bottom:754.013333pt;}
.y8b{bottom:754.333333pt;}
.y1ef{bottom:754.813333pt;}
.y167{bottom:755.133333pt;}
.y39{bottom:762.813333pt;}
.y8a{bottom:770.053333pt;}
.y1ee{bottom:770.373333pt;}
.y166{bottom:770.853333pt;}
.yc9{bottom:774.693333pt;}
.y19f{bottom:777.093333pt;}
.y8{bottom:777.253333pt;}
.y61{bottom:778.693333pt;}
.y1c9{bottom:784.453333pt;}
.y165{bottom:786.533333pt;}
.y7{bottom:793.253333pt;}
.y1ed{bottom:794.053333pt;}
.y38{bottom:794.373333pt;}
.y17d{bottom:794.693333pt;}
.y1c8{bottom:800.133333pt;}
.y89{bottom:801.573333pt;}
.y1ec{bottom:809.733333pt;}
.y37{bottom:810.053333pt;}
.y164{bottom:810.373333pt;}
.y1c7{bottom:815.813333pt;}
.y134{bottom:816.613333pt;}
.y88{bottom:817.253333pt;}
.yc8{bottom:817.573333pt;}
.y6{bottom:821.893333pt;}
.y145{bottom:825.253333pt;}
.y36{bottom:825.733333pt;}
.y1c6{bottom:831.333333pt;}
.yc7{bottom:833.253333pt;}
.y163{bottom:840.933333pt;}
.y35{bottom:841.253333pt;}
.y87{bottom:848.933333pt;}
.y5{bottom:855.973333pt;}
.y11e{bottom:856.613333pt;}
.y60{bottom:856.933333pt;}
.y1c5{bottom:863.013333pt;}
.y86{bottom:864.613333pt;}
.yc6{bottom:864.933333pt;}
.yf9{bottom:872.133333pt;}
.y5f{bottom:872.613333pt;}
.y34{bottom:872.933333pt;}
.y4{bottom:877.893333pt;}
.y1c4{bottom:878.693333pt;}
.y85{bottom:880.133333pt;}
.yc5{bottom:880.613333pt;}
.y19e{bottom:888.133333pt;}
.y33{bottom:888.613333pt;}
.y1c3{bottom:894.213333pt;}
.y84{bottom:895.813333pt;}
.yc4{bottom:896.133333pt;}
.y3{bottom:899.813333pt;}
.y133{bottom:903.493333pt;}
.y19d{bottom:903.813333pt;}
.y32{bottom:904.133333pt;}
.y1c2{bottom:909.893333pt;}
.yc3{bottom:911.813333pt;}
.y17b{bottom:912.133333pt;}
.y83{bottom:919.493333pt;}
.y31{bottom:919.813333pt;}
.y1c1{bottom:925.573333pt;}
.yc2{bottom:927.493333pt;}
.y19c{bottom:935.173333pt;}
.y30{bottom:935.493333pt;}
.y1eb{bottom:943.013333pt;}
.yc1{bottom:943.173333pt;}
.y1c0{bottom:949.413333pt;}
.y19b{bottom:950.693333pt;}
.y82{bottom:951.013333pt;}
.y2f{bottom:951.173333pt;}
.yc0{bottom:958.693333pt;}
.y19a{bottom:966.373333pt;}
.y2e{bottom:966.693333pt;}
.ybf{bottom:974.373333pt;}
.y11d{bottom:974.693333pt;}
.y2d{bottom:982.373333pt;}
.ybe{bottom:990.053333pt;}
.yf8{bottom:990.213333pt;}
.y199{bottom:997.893333pt;}
.y2c{bottom:998.053333pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.he{height:23.520000pt;}
.h10{height:23.680000pt;}
.h11{height:23.712000pt;}
.h6{height:31.535625pt;}
.h3{height:35.083125pt;}
.h18{height:35.392000pt;}
.h13{height:39.200000pt;}
.h2{height:41.765625pt;}
.hf{height:44.975625pt;}
.h7{height:46.220625pt;}
.h8{height:49.852500pt;}
.h1c{height:50.880000pt;}
.h1d{height:50.912000pt;}
.h5{height:51.232500pt;}
.hd{height:52.990313pt;}
.h9{height:54.187500pt;}
.hc{height:54.598989pt;}
.hb{height:55.298750pt;}
.ha{height:61.295000pt;}
.h12{height:63.520000pt;}
.h4{height:65.154375pt;}
.h20{height:66.560000pt;}
.h1a{height:70.592000pt;}
.h17{height:82.240000pt;}
.h21{height:86.080000pt;}
.h24{height:86.112000pt;}
.h15{height:86.240000pt;}
.h1f{height:86.272000pt;}
.h1b{height:101.760000pt;}
.h14{height:101.792000pt;}
.h25{height:101.920000pt;}
.h1e{height:101.952000pt;}
.h27{height:113.472000pt;}
.h16{height:117.440000pt;}
.h22{height:117.472000pt;}
.h19{height:132.992000pt;}
.h26{height:133.120000pt;}
.h23{height:148.800000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w23{width:38.560000pt;}
.w1e{width:38.752000pt;}
.w17{width:41.600000pt;}
.we{width:41.760000pt;}
.w21{width:49.632000pt;}
.w13{width:49.792000pt;}
.w16{width:50.432000pt;}
.wc{width:50.880000pt;}
.wa{width:50.912000pt;}
.wd{width:53.632000pt;}
.w1c{width:56.000000pt;}
.w15{width:56.160000pt;}
.w12{width:60.160000pt;}
.w9{width:61.280000pt;}
.w14{width:65.440000pt;}
.w22{width:66.080000pt;}
.w1b{width:66.240000pt;}
.wb{width:66.720000pt;}
.w11{width:67.840000pt;}
.w20{width:68.000000pt;}
.w7{width:68.640000pt;}
.w8{width:68.672000pt;}
.w1a{width:69.312000pt;}
.w3{width:98.752000pt;}
.w6{width:100.832000pt;}
.w18{width:102.432000pt;}
.wf{width:102.592000pt;}
.w24{width:103.232000pt;}
.w1d{width:103.520000pt;}
.w19{width:103.712000pt;}
.w10{width:104.192000pt;}
.w1f{width:104.992000pt;}
.w25{width:133.786667pt;}
.w26{width:133.946667pt;}
.w4{width:137.786667pt;}
.w5{width:146.266667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.511988pt;}
.x24{left:98.911988pt;}
.x5{left:108.511988pt;}
.xc{left:162.586667pt;}
.x15{left:165.946667pt;}
.x2{left:180.186655pt;}
.x20{left:195.706667pt;}
.x8{left:204.986667pt;}
.xd{left:231.866667pt;}
.x16{left:234.466667pt;}
.x1a{left:235.426667pt;}
.x7{left:292.386655pt;}
.xe{left:301.186667pt;}
.x17{left:302.946667pt;}
.xa{left:304.386667pt;}
.x21{left:330.146667pt;}
.xf{left:363.106667pt;}
.x1b{left:364.706667pt;}
.x10{left:414.653333pt;}
.x1f{left:415.773333pt;}
.xb{left:442.813333pt;}
.x22{left:464.573333pt;}
.x18{left:480.253333pt;}
.x11{left:482.173333pt;}
.x12{left:533.693333pt;}
.x19{left:537.053333pt;}
.x1c{left:538.973333pt;}
.x13{left:587.973333pt;}
.x1d{left:590.053333pt;}
.x6{left:591.973322pt;}
.x23{left:599.173333pt;}
.x14{left:630.373333pt;}
.x1e{left:694.213333pt;}
.x3{left:703.973322pt;}
}




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