
    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_15012f46a109fc585616d83a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.999512;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_2881b2d2864edb69731f7941.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_c89df6a8e3141e96658902ca.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_c734cff0ff0507c59e40e74d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9d99dd27044e2b298c2742a8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.999512;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_98f2f8a253e5a48ec1b0435b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_47e487595b94ccc4c9319250.woff')format("woff");}.ff8{font-family:ff8;line-height:0.999512;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_8ba66958d8e861adff2ac4ae.woff')format("woff");}.ff9{font-family:ff9;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_88932a5f03588a21db480f2e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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_b4feb020e884746ba36338c3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4984e2c737102216874feee5.woff')format("woff");}.ffd{font-family:ffd;line-height:1.020020;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_4e9e063d05cda62f5b72ced9.woff')format("woff");}.fff{font-family:fff;line-height:0.750000;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_ec1837c01af5cfeea9593d63.woff')format("woff");}.ff10{font-family:ff10;line-height:0.740234;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:ff11;src:url('chunks/assets/font_113660621cf3d4f87dbdb757.woff')format("woff");}.ff11{font-family:ff11;line-height:1.020020;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:ff12;src:url('chunks/assets/font_db25cb6cb0525a2f300f389c.woff')format("woff");}.ff12{font-family:ff12;line-height:0.708008;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;}
.ls1b{letter-spacing:-0.840000px;}
.ls3{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls23{letter-spacing:-0.273600px;}
.ls13{letter-spacing:-0.247800px;}
.ls16{letter-spacing:-0.213000px;}
.lsf{letter-spacing:-0.207600px;}
.ls17{letter-spacing:-0.155400px;}
.ls20{letter-spacing:-0.141000px;}
.ls1e{letter-spacing:-0.115200px;}
.ls10{letter-spacing:-0.057600px;}
.ls19{letter-spacing:-0.043200px;}
.ls12{letter-spacing:-0.025920px;}
.ls1c{letter-spacing:-0.023040px;}
.ls15{letter-spacing:-0.008640px;}
.ls18{letter-spacing:-0.000011px;}
.ls1a{letter-spacing:-0.000006px;}
.ls6{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.034560px;}
.lsc{letter-spacing:0.054720px;}
.ls2{letter-spacing:0.074880px;}
.ls9{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.222000px;}
.ls11{letter-spacing:0.224400px;}
.ls21{letter-spacing:0.233400px;}
.ls22{letter-spacing:0.265200px;}
.ls1f{letter-spacing:0.313920px;}
.ls4{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.371400px;}
.ls8{letter-spacing:0.720000px;}
.ls14{letter-spacing:59.321280px;}
.lsb{letter-spacing:60.768000px;}
.lse{letter-spacing:64.002720px;}
.lsa{letter-spacing:845.705280px;}
.ls1{letter-spacing:845.741280px;}
.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;}
}
.ws14{word-spacing:-66.240000px;}
.wse{word-spacing:-59.760000px;}
.wsb{word-spacing:-30.240000px;}
.ws1e{word-spacing:-30.239994px;}
.ws9{word-spacing:-16.488000px;}
.ws3{word-spacing:-14.832000px;}
.ws4{word-spacing:-14.760000px;}
.ws8{word-spacing:-14.616000px;}
.ws1{word-spacing:-14.400000px;}
.ws6{word-spacing:-14.399997px;}
.ws5{word-spacing:-14.112000px;}
.ws2{word-spacing:-14.040000px;}
.ws1b{word-spacing:-13.645440px;}
.wsd{word-spacing:-13.619400px;}
.ws1d{word-spacing:-13.513200px;}
.ws1c{word-spacing:-13.481400px;}
.ws7{word-spacing:-13.470000px;}
.wsc{word-spacing:-13.302720px;}
.wsf{word-spacing:-13.248000px;}
.ws13{word-spacing:-13.239360px;}
.ws19{word-spacing:-13.224960px;}
.ws11{word-spacing:-13.222080px;}
.ws17{word-spacing:-13.204800px;}
.ws10{word-spacing:-13.190400px;}
.ws1a{word-spacing:-13.132800px;}
.ws16{word-spacing:-13.092600px;}
.ws15{word-spacing:-13.035000px;}
.ws12{word-spacing:-13.000200px;}
.ws18{word-spacing:-12.408000px;}
.wsa{word-spacing:-0.288000px;}
.ws0{word-spacing:0.000000px;}
._b{margin-left:-12.744000px;}
._8{margin-left:-11.112000px;}
._9{margin-left:-9.312000px;}
._a{margin-left:-7.358400px;}
._5{margin-left:-5.544000px;}
._7{margin-left:-4.104000px;}
._6{margin-left:-2.952000px;}
._4{margin-left:-1.060800px;}
._0{width:1.053360px;}
._1{width:2.088960px;}
._3{width:63.072000px;}
._2{width:505.152000px;}
.fc3{color:rgb(5,99,193);}
.fc4{color:rgb(196,89,17);}
.fc1{color:transparent;}
.fc2{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:4.500000px;}
.y25{bottom:4.860000px;}
.y2e{bottom:5.400000px;}
.y41{bottom:18.000000px;}
.y43{bottom:18.045000px;}
.y45{bottom:18.180000px;}
.y1b1{bottom:24.480000px;}
.y144{bottom:24.660000px;}
.y1b5{bottom:24.705000px;}
.y37{bottom:26.820000px;}
.y52{bottom:26.865000px;}
.y32{bottom:27.000000px;}
.y1b{bottom:42.480000px;}
.y1b4{bottom:44.685000px;}
.y148{bottom:44.820000px;}
.y36{bottom:48.780000px;}
.y35{bottom:70.740000px;}
.y1a{bottom:71.856000px;}
.y5d{bottom:92.700000px;}
.yb0{bottom:113.976000px;}
.y4a{bottom:116.856000px;}
.yd7{bottom:120.096000px;}
.yf5{bottom:121.356000px;}
.y176{bottom:122.616000px;}
.y63{bottom:123.156000px;}
.y18{bottom:123.336000px;}
.y1f5{bottom:123.696000px;}
.y119{bottom:123.876000px;}
.y155{bottom:126.216000px;}
.y8e{bottom:128.556000px;}
.y1d0{bottom:128.916000px;}
.y13b{bottom:131.616000px;}
.yaf{bottom:135.756000px;}
.y190{bottom:139.176000px;}
.yd6{bottom:141.876000px;}
.yf4{bottom:143.136000px;}
.y1f4{bottom:143.856000px;}
.y175{bottom:144.396000px;}
.y49{bottom:150.690000px;}
.y1cf{bottom:151.590000px;}
.y8d{bottom:155.010000px;}
.y1ae{bottom:156.450000px;}
.y62{bottom:156.810000px;}
.yae{bottom:157.350000px;}
.y118{bottom:157.530000px;}
.y18f{bottom:160.950000px;}
.y17{bottom:162.390000px;}
.yd5{bottom:163.650000px;}
.y154{bottom:165.270000px;}
.y13a{bottom:165.450000px;}
.y174{bottom:166.170000px;}
.y1ce{bottom:174.090000px;}
.yf3{bottom:176.970000px;}
.y1ad{bottom:178.230000px;}
.yad{bottom:179.130000px;}
.y117{bottom:179.310000px;}
.y48{bottom:184.350000px;}
.y1f3{bottom:185.070000px;}
.yd4{bottom:185.250000px;}
.y173{bottom:187.770000px;}
.y139{bottom:187.950000px;}
.y61{bottom:190.650000px;}
.y18e{bottom:194.610000px;}
.y16{bottom:196.050000px;}
.y1cd{bottom:196.770000px;}
.yf2{bottom:198.570000px;}
.y153{bottom:198.930000px;}
.y1ac{bottom:200.010000px;}
.y47{bottom:200.730000px;}
.yac{bottom:200.910000px;}
.y1f2{bottom:205.230000px;}
.y60{bottom:207.030000px;}
.y172{bottom:209.550000px;}
.y138{bottom:210.630000px;}
.y116{bottom:212.970000px;}
.y152{bottom:215.310000px;}
.y18d{bottom:216.390000px;}
.y1cc{bottom:219.270000px;}
.yf1{bottom:220.350000px;}
.y1ab{bottom:221.610000px;}
.yab{bottom:222.690000px;}
.y1f1{bottom:225.390000px;}
.y15{bottom:229.890000px;}
.y171{bottom:231.330000px;}
.y137{bottom:233.310000px;}
.y115{bottom:234.750000px;}
.y46{bottom:235.290000px;}
.y151{bottom:236.190000px;}
.y18c{bottom:238.170000px;}
.yd3{bottom:240.870000px;}
.y1cb{bottom:241.950000px;}
.yf0{bottom:242.130000px;}
.y1aa{bottom:243.390000px;}
.yaa{bottom:244.470000px;}
.y1f0{bottom:245.550000px;}
.y5f{bottom:251.670000px;}
.y170{bottom:253.110000px;}
.y136{bottom:255.810000px;}
.y114{bottom:257.430000px;}
.y18b{bottom:259.950000px;}
.yd2{bottom:262.470000px;}
.y14{bottom:263.550000px;}
.yef{bottom:263.910000px;}
.y1a9{bottom:265.170000px;}
.y1ef{bottom:265.710000px;}
.y44{bottom:269.670000px;}
.y16f{bottom:274.710000px;}
.y1ca{bottom:276.690000px;}
.y150{bottom:277.230000px;}
.y135{bottom:278.490000px;}
.y113{bottom:279.030000px;}
.ya9{bottom:280.650000px;}
.y18a{bottom:281.550000px;}
.yd1{bottom:284.250000px;}
.yee{bottom:285.510000px;}
.y1a8{bottom:286.950000px;}
.y5e{bottom:296.490000px;}
.y13{bottom:297.390000px;}
.y1c9{bottom:298.290000px;}
.y134{bottom:300.990000px;}
.y112{bottom:301.710000px;}
.y189{bottom:303.330000px;}
.y42{bottom:304.230000px;}
.yd0{bottom:306.030000px;}
.yed{bottom:307.290000px;}
.y1a7{bottom:308.550000px;}
.y1ee{bottom:310.890000px;}
.y14f{bottom:318.315000px;}
.y1c8{bottom:320.115000px;}
.y111{bottom:323.535000px;}
.y133{bottom:323.715000px;}
.ya8{bottom:325.875000px;}
.ycf{bottom:327.855000px;}
.yec{bottom:329.115000px;}
.y1a6{bottom:330.375000px;}
.y12{bottom:331.095000px;}
.y188{bottom:337.215000px;}
.y40{bottom:338.835000px;}
.y16e{bottom:340.095000px;}
.y5c{bottom:341.175000px;}
.y110{bottom:346.035000px;}
.y132{bottom:346.395000px;}
.yce{bottom:349.455000px;}
.y1c7{bottom:353.775000px;}
.y1ed{bottom:356.115000px;}
.y14e{bottom:359.355000px;}
.ya7{bottom:359.535000px;}
.y187{bottom:359.715000px;}
.y16d{bottom:361.695000px;}
.yeb{bottom:362.775000px;}
.y1a5{bottom:364.215000px;}
.y11{bottom:364.935000px;}
.y10f{bottom:368.715000px;}
.y131{bottom:368.895000px;}
.ycd{bottom:371.235000px;}
.y1c6{bottom:375.555000px;}
.y1ec{bottom:377.895000px;}
.y20f{bottom:380.055000px;}
.ya6{bottom:381.315000px;}
.y186{bottom:382.395000px;}
.y16c{bottom:383.475000px;}
.yea{bottom:384.555000px;}
.y10e{bottom:390.495000px;}
.y3f{bottom:391.395000px;}
.y130{bottom:391.575000px;}
.ycc{bottom:393.015000px;}
.y1c5{bottom:397.335000px;}
.y1a4{bottom:397.875000px;}
.y10{bottom:398.595000px;}
.y1eb{bottom:399.495000px;}
.y14d{bottom:400.395000px;}
.ya5{bottom:403.095000px;}
.y185{bottom:404.895000px;}
.y16b{bottom:405.255000px;}
.ye9{bottom:406.335000px;}
.y20e{bottom:413.895000px;}
.y12f{bottom:414.255000px;}
.ycb{bottom:414.795000px;}
.y1c4{bottom:419.115000px;}
.y1ea{bottom:421.275000px;}
.ya4{bottom:424.875000px;}
.y10d{bottom:425.055000px;}
.y3e{bottom:425.775000px;}
.y184{bottom:427.575000px;}
.y16a{bottom:427.755000px;}
.ye8{bottom:428.115000px;}
.y1a3{bottom:431.535000px;}
.yf{bottom:432.255000px;}
.yca{bottom:436.395000px;}
.y12e{bottom:436.755000px;}
.y14c{bottom:439.455000px;}
.y1c3{bottom:440.895000px;}
.y1e9{bottom:443.055000px;}
.y10c{bottom:446.835000px;}
.y20d{bottom:447.555000px;}
.ye7{bottom:449.715000px;}
.y183{bottom:450.255000px;}
.y169{bottom:450.435000px;}
.y5b{bottom:451.875000px;}
.y1a2{bottom:453.315000px;}
.yc9{bottom:458.175000px;}
.ya3{bottom:458.535000px;}
.y14b{bottom:461.055000px;}
.y1c2{bottom:462.495000px;}
.y3d{bottom:464.835000px;}
.ye{bottom:466.095000px;}
.y10b{bottom:468.615000px;}
.y20c{bottom:469.335000px;}
.ye6{bottom:471.495000px;}
.y168{bottom:472.215000px;}
.y1a1{bottom:475.095000px;}
.y1e8{bottom:476.715000px;}
.yc8{bottom:479.955000px;}
.ya2{bottom:480.315000px;}
.y14a{bottom:482.835000px;}
.y1c1{bottom:484.275000px;}
.y182{bottom:484.815000px;}
.y10a{bottom:490.395000px;}
.y20b{bottom:491.115000px;}
.ye5{bottom:493.275000px;}
.y167{bottom:493.995000px;}
.y1a0{bottom:496.875000px;}
.y3c{bottom:498.675000px;}
.y149{bottom:499.215000px;}
.yd{bottom:499.755000px;}
.ya1{bottom:502.095000px;}
.y12d{bottom:505.155000px;}
.y1c0{bottom:506.055000px;}
.y181{bottom:506.595000px;}
.y1e7{bottom:510.555000px;}
.yc7{bottom:513.615000px;}
.y3b{bottom:515.055000px;}
.y166{bottom:515.775000px;}
.y5a{bottom:518.475000px;}
.y19f{bottom:518.655000px;}
.y147{bottom:520.095000px;}
.ya0{bottom:523.695000px;}
.y20a{bottom:524.775000px;}
.y109{bottom:526.575000px;}
.y1bf{bottom:527.835000px;}
.y180{bottom:528.375000px;}
.ye4{bottom:529.455000px;}
.yc{bottom:533.595000px;}
.yc6{bottom:535.395000px;}
.y165{bottom:537.375000px;}
.y3a{bottom:537.735000px;}
.y12c{bottom:538.815000px;}
.y19e{bottom:540.255000px;}
.y1e6{bottom:544.215000px;}
.y209{bottom:546.555000px;}
.y1be{bottom:549.435000px;}
.y17f{bottom:549.975000px;}
.yc5{bottom:557.175000px;}
.y9f{bottom:557.535000px;}
.y164{bottom:559.155000px;}
.y39{bottom:560.415000px;}
.y12b{bottom:561.495000px;}
.y19d{bottom:562.035000px;}
.yb{bottom:567.255000px;}
.y208{bottom:568.365000px;}
.y108{bottom:571.785000px;}
.ye3{bottom:574.665000px;}
.y1e5{bottom:578.085000px;}
.yc4{bottom:578.985000px;}
.y9e{bottom:579.345000px;}
.y163{bottom:580.965000px;}
.y146{bottom:581.325000px;}
.y38{bottom:583.125000px;}
.y1bd{bottom:583.305000px;}
.y19c{bottom:583.845000px;}
.y12a{bottom:584.205000px;}
.y59{bottom:585.105000px;}
.y207{bottom:589.965000px;}
.y17e{bottom:593.565000px;}
.y1e4{bottom:599.685000px;}
.yc3{bottom:600.585000px;}
.y9d{bottom:600.945000px;}
.ya{bottom:601.125000px;}
.y162{bottom:602.745000px;}
.y107{bottom:605.625000px;}
.ye2{bottom:608.505000px;}
.y206{bottom:611.745000px;}
.y17d{bottom:615.345000px;}
.y1bc{bottom:616.965000px;}
.y129{bottom:618.765000px;}
.y1e3{bottom:621.465000px;}
.y145{bottom:622.365000px;}
.y161{bottom:624.345000px;}
.y106{bottom:627.225000px;}
.y34{bottom:627.945000px;}
.y7a{bottom:629.385000px;}
.y58{bottom:629.925000px;}
.y8c{bottom:630.825000px;}
.yc2{bottom:634.425000px;}
.y9{bottom:634.785000px;}
.y17c{bottom:636.945000px;}
.ye1{bottom:642.165000px;}
.y1e2{bottom:643.245000px;}
.y205{bottom:645.585000px;}
.y160{bottom:646.125000px;}
.y105{bottom:649.005000px;}
.y1bb{bottom:650.805000px;}
.y8b{bottom:652.425000px;}
.y57{bottom:652.605000px;}
.yc1{bottom:656.205000px;}
.y9c{bottom:656.565000px;}
.y17b{bottom:658.725000px;}
.y6f{bottom:660.165000px;}
.y79{bottom:660.525000px;}
.y15f{bottom:662.505000px;}
.y143{bottom:663.405000px;}
.y1e1{bottom:665.025000px;}
.y204{bottom:667.185000px;}
.y8{bottom:668.445000px;}
.y104{bottom:670.785000px;}
.y1ba{bottom:672.405000px;}
.y8a{bottom:674.205000px;}
.ye0{bottom:676.005000px;}
.yc0{bottom:677.805000px;}
.y9b{bottom:678.165000px;}
.y6e{bottom:681.945000px;}
.y19b{bottom:682.665000px;}
.y15e{bottom:683.385000px;}
.y128{bottom:686.265000px;}
.y203{bottom:688.965000px;}
.y78{bottom:692.025000px;}
.y103{bottom:692.565000px;}
.y56{bottom:694.005000px;}
.y1b9{bottom:694.185000px;}
.y89{bottom:695.985000px;}
.y1e0{bottom:698.685000px;}
.ybf{bottom:699.585000px;}
.y9a{bottom:699.945000px;}
.y7{bottom:703.725000px;}
.y142{bottom:704.445000px;}
.ydf{bottom:709.665000px;}
.y202{bottom:710.745000px;}
.y102{bottom:714.165000px;}
.y1b8{bottom:715.965000px;}
.y33{bottom:716.505000px;}
.y127{bottom:719.925000px;}
.y1df{bottom:720.465000px;}
.ybe{bottom:721.365000px;}
.y55{bottom:721.725000px;}
.y15d{bottom:724.425000px;}
.y19a{bottom:726.225000px;}
.y88{bottom:729.645000px;}
.y77{bottom:731.085000px;}
.y201{bottom:732.525000px;}
.y101{bottom:735.945000px;}
.y6d{bottom:737.385000px;}
.y1b7{bottom:737.745000px;}
.y31{bottom:739.185000px;}
.y126{bottom:741.705000px;}
.y1de{bottom:742.245000px;}
.ybd{bottom:743.145000px;}
.y99{bottom:743.505000px;}
.y6{bottom:747.645000px;}
.y199{bottom:748.005000px;}
.y54{bottom:748.905000px;}
.y87{bottom:751.425000px;}
.y1b6{bottom:754.125000px;}
.y100{bottom:757.725000px;}
.y6c{bottom:759.165000px;}
.y125{bottom:763.485000px;}
.y1dd{bottom:763.845000px;}
.ybc{bottom:764.745000px;}
.y98{bottom:765.105000px;}
.y15c{bottom:765.465000px;}
.y200{bottom:766.185000px;}
.y198{bottom:769.785000px;}
.y76{bottom:772.845000px;}
.y86{bottom:773.205000px;}
.yde{bottom:777.165000px;}
.yff{bottom:779.505000px;}
.y6b{bottom:780.765000px;}
.y53{bottom:782.745000px;}
.y30{bottom:784.005000px;}
.y124{bottom:785.265000px;}
.y1dc{bottom:785.625000px;}
.ybb{bottom:786.525000px;}
.y97{bottom:786.885000px;}
.y1ff{bottom:787.965000px;}
.y5{bottom:790.485000px;}
.y197{bottom:791.385000px;}
.y85{bottom:794.985000px;}
.y1b3{bottom:795.165000px;}
.y51{bottom:799.125000px;}
.y17a{bottom:801.105000px;}
.y6a{bottom:802.545000px;}
.y15b{bottom:806.505000px;}
.y123{bottom:806.865000px;}
.y1db{bottom:807.405000px;}
.yba{bottom:808.305000px;}
.y96{bottom:808.665000px;}
.y1fe{bottom:809.745000px;}
.ydd{bottom:810.825000px;}
.yfe{bottom:813.165000px;}
.y75{bottom:814.425000px;}
.y84{bottom:816.585000px;}
.y179{bottom:822.930000px;}
.y2f{bottom:824.730000px;}
.y4{bottom:825.090000px;}
.y196{bottom:825.270000px;}
.y122{bottom:828.690000px;}
.yb9{bottom:830.130000px;}
.y95{bottom:830.490000px;}
.y1fd{bottom:831.390000px;}
.y23{bottom:831.570000px;}
.ydc{bottom:832.650000px;}
.yfd{bottom:834.990000px;}
.y69{bottom:836.430000px;}
.y83{bottom:838.410000px;}
.y1da{bottom:841.110000px;}
.y2d{bottom:841.290000px;}
.y50{bottom:843.810000px;}
.y178{bottom:844.710000px;}
.y15a{bottom:845.610000px;}
.y195{bottom:846.870000px;}
.y121{bottom:850.470000px;}
.y94{bottom:852.090000px;}
.y1fc{bottom:853.170000px;}
.y141{bottom:854.430000px;}
.y74{bottom:856.230000px;}
.y1b2{bottom:856.410000px;}
.yfc{bottom:856.770000px;}
.y68{bottom:858.030000px;}
.y82{bottom:860.190000px;}
.yb8{bottom:863.790000px;}
.y2c{bottom:864.510000px;}
.y22{bottom:865.410000px;}
.y4f{bottom:866.490000px;}
.y194{bottom:868.650000px;}
.y120{bottom:872.250000px;}
.y93{bottom:873.870000px;}
.y1d9{bottom:874.950000px;}
.y140{bottom:876.210000px;}
.yfb{bottom:878.370000px;}
.y159{bottom:879.270000px;}
.y67{bottom:879.810000px;}
.y81{bottom:881.970000px;}
.yb7{bottom:885.570000px;}
.y2b{bottom:887.190000px;}
.ydb{bottom:888.090000px;}
.y1fb{bottom:889.350000px;}
.y193{bottom:890.430000px;}
.y11f{bottom:893.850000px;}
.y92{bottom:895.650000px;}
.y1d8{bottom:896.730000px;}
.y1b0{bottom:897.450000px;}
.y13f{bottom:897.810000px;}
.y73{bottom:897.990000px;}
.y21{bottom:899.790000px;}
.yfa{bottom:900.150000px;}
.y66{bottom:901.590000px;}
.y80{bottom:903.570000px;}
.yb6{bottom:908.070000px;}
.y2a{bottom:909.870000px;}
.y4e{bottom:911.310000px;}
.y192{bottom:912.210000px;}
.y11e{bottom:915.630000px;}
.y1d7{bottom:918.330000px;}
.y13e{bottom:919.590000px;}
.yf9{bottom:921.930000px;}
.y65{bottom:923.370000px;}
.y7f{bottom:925.350000px;}
.y91{bottom:929.310000px;}
.yb5{bottom:930.750000px;}
.y177{bottom:931.650000px;}
.y29{bottom:932.550000px;}
.y191{bottom:933.810000px;}
.y158{bottom:936.690000px;}
.y11d{bottom:937.410000px;}
.y1af{bottom:938.310000px;}
.y20{bottom:939.570000px;}
.y1d6{bottom:940.110000px;}
.y13d{bottom:941.370000px;}
.y1fa{bottom:941.550000px;}
.yda{bottom:943.710000px;}
.y7e{bottom:947.130000px;}
.yb4{bottom:952.530000px;}
.y28{bottom:955.410000px;}
.yf8{bottom:955.590000px;}
.y4d{bottom:955.950000px;}
.y64{bottom:957.030000px;}
.y11c{bottom:959.190000px;}
.y1d5{bottom:961.890000px;}
.y90{bottom:963.150000px;}
.yd9{bottom:965.310000px;}
.y7d{bottom:968.910000px;}
.y13c{bottom:975.030000px;}
.yf7{bottom:977.370000px;}
.y157{bottom:977.730000px;}
.y27{bottom:978.090000px;}
.y1f{bottom:979.350000px;}
.y11b{bottom:980.790000px;}
.y72{bottom:981.510000px;}
.y1f9{bottom:983.670000px;}
.yb3{bottom:987.090000px;}
.y3{bottom:991.410000px;}
.y1d4{bottom:995.550000px;}
.y8f{bottom:996.810000px;}
.y4c{bottom:997.350000px;}
.yf6{bottom:999.150000px;}
.y26{bottom:1000.770000px;}
.y1f8{bottom:1003.830000px;}
.y7c{bottom:1005.090000px;}
.yd8{bottom:1008.870000px;}
.y11a{bottom:1017.150000px;}
.y1d3{bottom:1018.230000px;}
.y1e{bottom:1019.130000px;}
.yb2{bottom:1020.750000px;}
.y71{bottom:1023.270000px;}
.y24{bottom:1023.450000px;}
.y1f7{bottom:1023.990000px;}
.y4b{bottom:1025.250000px;}
.y2{bottom:1030.650000px;}
.y156{bottom:1038.930000px;}
.y1d2{bottom:1040.730000px;}
.yb1{bottom:1042.530000px;}
.y1f6{bottom:1044.150000px;}
.y7b{bottom:1052.790000px;}
.y1d{bottom:1058.910000px;}
.y70{bottom:1062.870000px;}
.y1d1{bottom:1063.410000px;}
.y1{bottom:1064.310000px;}
.y19{bottom:1117.440000px;}
.h4{height:20.160000px;}
.h1d{height:20.196000px;}
.h5{height:21.960000px;}
.ha{height:21.996000px;}
.h7{height:22.500000px;}
.hb{height:33.660000px;}
.hc{height:33.696000px;}
.hd{height:33.840000px;}
.h1e{height:40.140000px;}
.h19{height:40.320000px;}
.h1b{height:40.356000px;}
.h18{height:42.161133px;}
.he{height:43.920000px;}
.hf{height:43.956000px;}
.h8{height:44.100000px;}
.h20{height:49.992188px;}
.h1{height:50.359219px;}
.h17{height:51.717656px;}
.h6{height:54.738281px;}
.h1f{height:60.336000px;}
.h1c{height:60.480000px;}
.h1a{height:60.516000px;}
.h15{height:61.189805px;}
.h2{height:63.180000px;}
.h11{height:65.880000px;}
.h10{height:65.916000px;}
.h16{height:71.613281px;}
.h3{height:71.820000px;}
.h13{height:73.722656px;}
.h14{height:81.000000px;}
.h9{height:87.840000px;}
.h12{height:109.800000px;}
.h0{height:1188.000000px;}
.w12{width:7.200000px;}
.w3{width:7.560000px;}
.w11{width:7.920000px;}
.w2{width:8.460000px;}
.wa{width:8.640000px;}
.w1c{width:14.580000px;}
.w14{width:14.940000px;}
.w1a{width:15.300000px;}
.w15{width:15.840000px;}
.w13{width:16.020000px;}
.w1b{width:16.200000px;}
.w8{width:29.520000px;}
.wb{width:83.700000px;}
.wc{width:115.956000px;}
.wd{width:153.180000px;}
.wf{width:153.900000px;}
.w17{width:212.790000px;}
.w18{width:214.950000px;}
.w19{width:215.130000px;}
.w16{width:219.630000px;}
.w4{width:231.150000px;}
.w6{width:232.770000px;}
.we{width:345.675000px;}
.w7{width:498.855000px;}
.w5{width:502.095000px;}
.w10{width:546.045000px;}
.w9{width:671.145000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:108.035986px;}
.xe{left:135.035986px;}
.x8{left:138.996000px;}
.xd{left:141.155986px;}
.x11{left:162.029986px;}
.x9{left:193.170000px;}
.xc{left:263.370000px;}
.xa{left:309.855000px;}
.x3{left:316.874986px;}
.x6{left:340.635000px;}
.x7{left:342.435000px;}
.x14{left:378.615000px;}
.x12{left:383.115000px;}
.x10{left:386.894986px;}
.xb{left:463.755000px;}
.x2{left:508.964986px;}
.x15{left:594.285000px;}
.x13{left:596.625000px;}
.xf{left:810.149986px;}
.x4{left:877.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.746667pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls23{letter-spacing:-0.243200pt;}
.ls13{letter-spacing:-0.220267pt;}
.ls16{letter-spacing:-0.189333pt;}
.lsf{letter-spacing:-0.184533pt;}
.ls17{letter-spacing:-0.138133pt;}
.ls20{letter-spacing:-0.125333pt;}
.ls1e{letter-spacing:-0.102400pt;}
.ls10{letter-spacing:-0.051200pt;}
.ls19{letter-spacing:-0.038400pt;}
.ls12{letter-spacing:-0.023040pt;}
.ls1c{letter-spacing:-0.020480pt;}
.ls15{letter-spacing:-0.007680pt;}
.ls18{letter-spacing:-0.000010pt;}
.ls1a{letter-spacing:-0.000005pt;}
.ls6{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.030720pt;}
.lsc{letter-spacing:0.048640pt;}
.ls2{letter-spacing:0.066560pt;}
.ls9{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.197333pt;}
.ls11{letter-spacing:0.199467pt;}
.ls21{letter-spacing:0.207467pt;}
.ls22{letter-spacing:0.235733pt;}
.ls1f{letter-spacing:0.279040pt;}
.ls4{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.330133pt;}
.ls8{letter-spacing:0.640000pt;}
.ls14{letter-spacing:52.730027pt;}
.lsb{letter-spacing:54.016000pt;}
.lse{letter-spacing:56.891307pt;}
.lsa{letter-spacing:751.738027pt;}
.ls1{letter-spacing:751.770027pt;}
.ws14{word-spacing:-58.880000pt;}
.wse{word-spacing:-53.120000pt;}
.wsb{word-spacing:-26.880000pt;}
.ws1e{word-spacing:-26.879995pt;}
.ws9{word-spacing:-14.656000pt;}
.ws3{word-spacing:-13.184000pt;}
.ws4{word-spacing:-13.120000pt;}
.ws8{word-spacing:-12.992000pt;}
.ws1{word-spacing:-12.800000pt;}
.ws6{word-spacing:-12.799997pt;}
.ws5{word-spacing:-12.544000pt;}
.ws2{word-spacing:-12.480000pt;}
.ws1b{word-spacing:-12.129280pt;}
.wsd{word-spacing:-12.106133pt;}
.ws1d{word-spacing:-12.011733pt;}
.ws1c{word-spacing:-11.983467pt;}
.ws7{word-spacing:-11.973333pt;}
.wsc{word-spacing:-11.824640pt;}
.wsf{word-spacing:-11.776000pt;}
.ws13{word-spacing:-11.768320pt;}
.ws19{word-spacing:-11.755520pt;}
.ws11{word-spacing:-11.752960pt;}
.ws17{word-spacing:-11.737600pt;}
.ws10{word-spacing:-11.724800pt;}
.ws1a{word-spacing:-11.673600pt;}
.ws16{word-spacing:-11.637867pt;}
.ws15{word-spacing:-11.586667pt;}
.ws12{word-spacing:-11.555733pt;}
.ws18{word-spacing:-11.029333pt;}
.wsa{word-spacing:-0.256000pt;}
.ws0{word-spacing:0.000000pt;}
._b{margin-left:-11.328000pt;}
._8{margin-left:-9.877333pt;}
._9{margin-left:-8.277333pt;}
._a{margin-left:-6.540800pt;}
._5{margin-left:-4.928000pt;}
._7{margin-left:-3.648000pt;}
._6{margin-left:-2.624000pt;}
._4{margin-left:-0.942933pt;}
._0{width:0.936320pt;}
._1{width:1.856853pt;}
._3{width:56.064000pt;}
._2{width:449.024000pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:4.000000pt;}
.y25{bottom:4.320000pt;}
.y2e{bottom:4.800000pt;}
.y41{bottom:16.000000pt;}
.y43{bottom:16.040000pt;}
.y45{bottom:16.160000pt;}
.y1b1{bottom:21.760000pt;}
.y144{bottom:21.920000pt;}
.y1b5{bottom:21.960000pt;}
.y37{bottom:23.840000pt;}
.y52{bottom:23.880000pt;}
.y32{bottom:24.000000pt;}
.y1b{bottom:37.760000pt;}
.y1b4{bottom:39.720000pt;}
.y148{bottom:39.840000pt;}
.y36{bottom:43.360000pt;}
.y35{bottom:62.880000pt;}
.y1a{bottom:63.872000pt;}
.y5d{bottom:82.400000pt;}
.yb0{bottom:101.312000pt;}
.y4a{bottom:103.872000pt;}
.yd7{bottom:106.752000pt;}
.yf5{bottom:107.872000pt;}
.y176{bottom:108.992000pt;}
.y63{bottom:109.472000pt;}
.y18{bottom:109.632000pt;}
.y1f5{bottom:109.952000pt;}
.y119{bottom:110.112000pt;}
.y155{bottom:112.192000pt;}
.y8e{bottom:114.272000pt;}
.y1d0{bottom:114.592000pt;}
.y13b{bottom:116.992000pt;}
.yaf{bottom:120.672000pt;}
.y190{bottom:123.712000pt;}
.yd6{bottom:126.112000pt;}
.yf4{bottom:127.232000pt;}
.y1f4{bottom:127.872000pt;}
.y175{bottom:128.352000pt;}
.y49{bottom:133.946667pt;}
.y1cf{bottom:134.746667pt;}
.y8d{bottom:137.786667pt;}
.y1ae{bottom:139.066667pt;}
.y62{bottom:139.386667pt;}
.yae{bottom:139.866667pt;}
.y118{bottom:140.026667pt;}
.y18f{bottom:143.066667pt;}
.y17{bottom:144.346667pt;}
.yd5{bottom:145.466667pt;}
.y154{bottom:146.906667pt;}
.y13a{bottom:147.066667pt;}
.y174{bottom:147.706667pt;}
.y1ce{bottom:154.746667pt;}
.yf3{bottom:157.306667pt;}
.y1ad{bottom:158.426667pt;}
.yad{bottom:159.226667pt;}
.y117{bottom:159.386667pt;}
.y48{bottom:163.866667pt;}
.y1f3{bottom:164.506667pt;}
.yd4{bottom:164.666667pt;}
.y173{bottom:166.906667pt;}
.y139{bottom:167.066667pt;}
.y61{bottom:169.466667pt;}
.y18e{bottom:172.986667pt;}
.y16{bottom:174.266667pt;}
.y1cd{bottom:174.906667pt;}
.yf2{bottom:176.506667pt;}
.y153{bottom:176.826667pt;}
.y1ac{bottom:177.786667pt;}
.y47{bottom:178.426667pt;}
.yac{bottom:178.586667pt;}
.y1f2{bottom:182.426667pt;}
.y60{bottom:184.026667pt;}
.y172{bottom:186.266667pt;}
.y138{bottom:187.226667pt;}
.y116{bottom:189.306667pt;}
.y152{bottom:191.386667pt;}
.y18d{bottom:192.346667pt;}
.y1cc{bottom:194.906667pt;}
.yf1{bottom:195.866667pt;}
.y1ab{bottom:196.986667pt;}
.yab{bottom:197.946667pt;}
.y1f1{bottom:200.346667pt;}
.y15{bottom:204.346667pt;}
.y171{bottom:205.626667pt;}
.y137{bottom:207.386667pt;}
.y115{bottom:208.666667pt;}
.y46{bottom:209.146667pt;}
.y151{bottom:209.946667pt;}
.y18c{bottom:211.706667pt;}
.yd3{bottom:214.106667pt;}
.y1cb{bottom:215.066667pt;}
.yf0{bottom:215.226667pt;}
.y1aa{bottom:216.346667pt;}
.yaa{bottom:217.306667pt;}
.y1f0{bottom:218.266667pt;}
.y5f{bottom:223.706667pt;}
.y170{bottom:224.986667pt;}
.y136{bottom:227.386667pt;}
.y114{bottom:228.826667pt;}
.y18b{bottom:231.066667pt;}
.yd2{bottom:233.306667pt;}
.y14{bottom:234.266667pt;}
.yef{bottom:234.586667pt;}
.y1a9{bottom:235.706667pt;}
.y1ef{bottom:236.186667pt;}
.y44{bottom:239.706667pt;}
.y16f{bottom:244.186667pt;}
.y1ca{bottom:245.946667pt;}
.y150{bottom:246.426667pt;}
.y135{bottom:247.546667pt;}
.y113{bottom:248.026667pt;}
.ya9{bottom:249.466667pt;}
.y18a{bottom:250.266667pt;}
.yd1{bottom:252.666667pt;}
.yee{bottom:253.786667pt;}
.y1a8{bottom:255.066667pt;}
.y5e{bottom:263.546667pt;}
.y13{bottom:264.346667pt;}
.y1c9{bottom:265.146667pt;}
.y134{bottom:267.546667pt;}
.y112{bottom:268.186667pt;}
.y189{bottom:269.626667pt;}
.y42{bottom:270.426667pt;}
.yd0{bottom:272.026667pt;}
.yed{bottom:273.146667pt;}
.y1a7{bottom:274.266667pt;}
.y1ee{bottom:276.346667pt;}
.y14f{bottom:282.946667pt;}
.y1c8{bottom:284.546667pt;}
.y111{bottom:287.586667pt;}
.y133{bottom:287.746667pt;}
.ya8{bottom:289.666667pt;}
.ycf{bottom:291.426667pt;}
.yec{bottom:292.546667pt;}
.y1a6{bottom:293.666667pt;}
.y12{bottom:294.306667pt;}
.y188{bottom:299.746667pt;}
.y40{bottom:301.186667pt;}
.y16e{bottom:302.306667pt;}
.y5c{bottom:303.266667pt;}
.y110{bottom:307.586667pt;}
.y132{bottom:307.906667pt;}
.yce{bottom:310.626667pt;}
.y1c7{bottom:314.466667pt;}
.y1ed{bottom:316.546667pt;}
.y14e{bottom:319.426667pt;}
.ya7{bottom:319.586667pt;}
.y187{bottom:319.746667pt;}
.y16d{bottom:321.506667pt;}
.yeb{bottom:322.466667pt;}
.y1a5{bottom:323.746667pt;}
.y11{bottom:324.386667pt;}
.y10f{bottom:327.746667pt;}
.y131{bottom:327.906667pt;}
.ycd{bottom:329.986667pt;}
.y1c6{bottom:333.826667pt;}
.y1ec{bottom:335.906667pt;}
.y20f{bottom:337.826667pt;}
.ya6{bottom:338.946667pt;}
.y186{bottom:339.906667pt;}
.y16c{bottom:340.866667pt;}
.yea{bottom:341.826667pt;}
.y10e{bottom:347.106667pt;}
.y3f{bottom:347.906667pt;}
.y130{bottom:348.066667pt;}
.ycc{bottom:349.346667pt;}
.y1c5{bottom:353.186667pt;}
.y1a4{bottom:353.666667pt;}
.y10{bottom:354.306667pt;}
.y1eb{bottom:355.106667pt;}
.y14d{bottom:355.906667pt;}
.ya5{bottom:358.306667pt;}
.y185{bottom:359.906667pt;}
.y16b{bottom:360.226667pt;}
.ye9{bottom:361.186667pt;}
.y20e{bottom:367.906667pt;}
.y12f{bottom:368.226667pt;}
.ycb{bottom:368.706667pt;}
.y1c4{bottom:372.546667pt;}
.y1ea{bottom:374.466667pt;}
.ya4{bottom:377.666667pt;}
.y10d{bottom:377.826667pt;}
.y3e{bottom:378.466667pt;}
.y184{bottom:380.066667pt;}
.y16a{bottom:380.226667pt;}
.ye8{bottom:380.546667pt;}
.y1a3{bottom:383.586667pt;}
.yf{bottom:384.226667pt;}
.yca{bottom:387.906667pt;}
.y12e{bottom:388.226667pt;}
.y14c{bottom:390.626667pt;}
.y1c3{bottom:391.906667pt;}
.y1e9{bottom:393.826667pt;}
.y10c{bottom:397.186667pt;}
.y20d{bottom:397.826667pt;}
.ye7{bottom:399.746667pt;}
.y183{bottom:400.226667pt;}
.y169{bottom:400.386667pt;}
.y5b{bottom:401.666667pt;}
.y1a2{bottom:402.946667pt;}
.yc9{bottom:407.266667pt;}
.ya3{bottom:407.586667pt;}
.y14b{bottom:409.826667pt;}
.y1c2{bottom:411.106667pt;}
.y3d{bottom:413.186667pt;}
.ye{bottom:414.306667pt;}
.y10b{bottom:416.546667pt;}
.y20c{bottom:417.186667pt;}
.ye6{bottom:419.106667pt;}
.y168{bottom:419.746667pt;}
.y1a1{bottom:422.306667pt;}
.y1e8{bottom:423.746667pt;}
.yc8{bottom:426.626667pt;}
.ya2{bottom:426.946667pt;}
.y14a{bottom:429.186667pt;}
.y1c1{bottom:430.466667pt;}
.y182{bottom:430.946667pt;}
.y10a{bottom:435.906667pt;}
.y20b{bottom:436.546667pt;}
.ye5{bottom:438.466667pt;}
.y167{bottom:439.106667pt;}
.y1a0{bottom:441.666667pt;}
.y3c{bottom:443.266667pt;}
.y149{bottom:443.746667pt;}
.yd{bottom:444.226667pt;}
.ya1{bottom:446.306667pt;}
.y12d{bottom:449.026667pt;}
.y1c0{bottom:449.826667pt;}
.y181{bottom:450.306667pt;}
.y1e7{bottom:453.826667pt;}
.yc7{bottom:456.546667pt;}
.y3b{bottom:457.826667pt;}
.y166{bottom:458.466667pt;}
.y5a{bottom:460.866667pt;}
.y19f{bottom:461.026667pt;}
.y147{bottom:462.306667pt;}
.ya0{bottom:465.506667pt;}
.y20a{bottom:466.466667pt;}
.y109{bottom:468.066667pt;}
.y1bf{bottom:469.186667pt;}
.y180{bottom:469.666667pt;}
.ye4{bottom:470.626667pt;}
.yc{bottom:474.306667pt;}
.yc6{bottom:475.906667pt;}
.y165{bottom:477.666667pt;}
.y3a{bottom:477.986667pt;}
.y12c{bottom:478.946667pt;}
.y19e{bottom:480.226667pt;}
.y1e6{bottom:483.746667pt;}
.y209{bottom:485.826667pt;}
.y1be{bottom:488.386667pt;}
.y17f{bottom:488.866667pt;}
.yc5{bottom:495.266667pt;}
.y9f{bottom:495.586667pt;}
.y164{bottom:497.026667pt;}
.y39{bottom:498.146667pt;}
.y12b{bottom:499.106667pt;}
.y19d{bottom:499.586667pt;}
.yb{bottom:504.226667pt;}
.y208{bottom:505.213333pt;}
.y108{bottom:508.253333pt;}
.ye3{bottom:510.813333pt;}
.y1e5{bottom:513.853333pt;}
.yc4{bottom:514.653333pt;}
.y9e{bottom:514.973333pt;}
.y163{bottom:516.413333pt;}
.y146{bottom:516.733333pt;}
.y38{bottom:518.333333pt;}
.y1bd{bottom:518.493333pt;}
.y19c{bottom:518.973333pt;}
.y12a{bottom:519.293333pt;}
.y59{bottom:520.093333pt;}
.y207{bottom:524.413333pt;}
.y17e{bottom:527.613333pt;}
.y1e4{bottom:533.053333pt;}
.yc3{bottom:533.853333pt;}
.y9d{bottom:534.173333pt;}
.ya{bottom:534.333333pt;}
.y162{bottom:535.773333pt;}
.y107{bottom:538.333333pt;}
.ye2{bottom:540.893333pt;}
.y206{bottom:543.773333pt;}
.y17d{bottom:546.973333pt;}
.y1bc{bottom:548.413333pt;}
.y129{bottom:550.013333pt;}
.y1e3{bottom:552.413333pt;}
.y145{bottom:553.213333pt;}
.y161{bottom:554.973333pt;}
.y106{bottom:557.533333pt;}
.y34{bottom:558.173333pt;}
.y7a{bottom:559.453333pt;}
.y58{bottom:559.933333pt;}
.y8c{bottom:560.733333pt;}
.yc2{bottom:563.933333pt;}
.y9{bottom:564.253333pt;}
.y17c{bottom:566.173333pt;}
.ye1{bottom:570.813333pt;}
.y1e2{bottom:571.773333pt;}
.y205{bottom:573.853333pt;}
.y160{bottom:574.333333pt;}
.y105{bottom:576.893333pt;}
.y1bb{bottom:578.493333pt;}
.y8b{bottom:579.933333pt;}
.y57{bottom:580.093333pt;}
.yc1{bottom:583.293333pt;}
.y9c{bottom:583.613333pt;}
.y17b{bottom:585.533333pt;}
.y6f{bottom:586.813333pt;}
.y79{bottom:587.133333pt;}
.y15f{bottom:588.893333pt;}
.y143{bottom:589.693333pt;}
.y1e1{bottom:591.133333pt;}
.y204{bottom:593.053333pt;}
.y8{bottom:594.173333pt;}
.y104{bottom:596.253333pt;}
.y1ba{bottom:597.693333pt;}
.y8a{bottom:599.293333pt;}
.ye0{bottom:600.893333pt;}
.yc0{bottom:602.493333pt;}
.y9b{bottom:602.813333pt;}
.y6e{bottom:606.173333pt;}
.y19b{bottom:606.813333pt;}
.y15e{bottom:607.453333pt;}
.y128{bottom:610.013333pt;}
.y203{bottom:612.413333pt;}
.y78{bottom:615.133333pt;}
.y103{bottom:615.613333pt;}
.y56{bottom:616.893333pt;}
.y1b9{bottom:617.053333pt;}
.y89{bottom:618.653333pt;}
.y1e0{bottom:621.053333pt;}
.ybf{bottom:621.853333pt;}
.y9a{bottom:622.173333pt;}
.y7{bottom:625.533333pt;}
.y142{bottom:626.173333pt;}
.ydf{bottom:630.813333pt;}
.y202{bottom:631.773333pt;}
.y102{bottom:634.813333pt;}
.y1b8{bottom:636.413333pt;}
.y33{bottom:636.893333pt;}
.y127{bottom:639.933333pt;}
.y1df{bottom:640.413333pt;}
.ybe{bottom:641.213333pt;}
.y55{bottom:641.533333pt;}
.y15d{bottom:643.933333pt;}
.y19a{bottom:645.533333pt;}
.y88{bottom:648.573333pt;}
.y77{bottom:649.853333pt;}
.y201{bottom:651.133333pt;}
.y101{bottom:654.173333pt;}
.y6d{bottom:655.453333pt;}
.y1b7{bottom:655.773333pt;}
.y31{bottom:657.053333pt;}
.y126{bottom:659.293333pt;}
.y1de{bottom:659.773333pt;}
.ybd{bottom:660.573333pt;}
.y99{bottom:660.893333pt;}
.y6{bottom:664.573333pt;}
.y199{bottom:664.893333pt;}
.y54{bottom:665.693333pt;}
.y87{bottom:667.933333pt;}
.y1b6{bottom:670.333333pt;}
.y100{bottom:673.533333pt;}
.y6c{bottom:674.813333pt;}
.y125{bottom:678.653333pt;}
.y1dd{bottom:678.973333pt;}
.ybc{bottom:679.773333pt;}
.y98{bottom:680.093333pt;}
.y15c{bottom:680.413333pt;}
.y200{bottom:681.053333pt;}
.y198{bottom:684.253333pt;}
.y76{bottom:686.973333pt;}
.y86{bottom:687.293333pt;}
.yde{bottom:690.813333pt;}
.yff{bottom:692.893333pt;}
.y6b{bottom:694.013333pt;}
.y53{bottom:695.773333pt;}
.y30{bottom:696.893333pt;}
.y124{bottom:698.013333pt;}
.y1dc{bottom:698.333333pt;}
.ybb{bottom:699.133333pt;}
.y97{bottom:699.453333pt;}
.y1ff{bottom:700.413333pt;}
.y5{bottom:702.653333pt;}
.y197{bottom:703.453333pt;}
.y85{bottom:706.653333pt;}
.y1b3{bottom:706.813333pt;}
.y51{bottom:710.333333pt;}
.y17a{bottom:712.093333pt;}
.y6a{bottom:713.373333pt;}
.y15b{bottom:716.893333pt;}
.y123{bottom:717.213333pt;}
.y1db{bottom:717.693333pt;}
.yba{bottom:718.493333pt;}
.y96{bottom:718.813333pt;}
.y1fe{bottom:719.773333pt;}
.ydd{bottom:720.733333pt;}
.yfe{bottom:722.813333pt;}
.y75{bottom:723.933333pt;}
.y84{bottom:725.853333pt;}
.y179{bottom:731.493333pt;}
.y2f{bottom:733.093333pt;}
.y4{bottom:733.413333pt;}
.y196{bottom:733.573333pt;}
.y122{bottom:736.613333pt;}
.yb9{bottom:737.893333pt;}
.y95{bottom:738.213333pt;}
.y1fd{bottom:739.013333pt;}
.y23{bottom:739.173333pt;}
.ydc{bottom:740.133333pt;}
.yfd{bottom:742.213333pt;}
.y69{bottom:743.493333pt;}
.y83{bottom:745.253333pt;}
.y1da{bottom:747.653333pt;}
.y2d{bottom:747.813333pt;}
.y50{bottom:750.053333pt;}
.y178{bottom:750.853333pt;}
.y15a{bottom:751.653333pt;}
.y195{bottom:752.773333pt;}
.y121{bottom:755.973333pt;}
.y94{bottom:757.413333pt;}
.y1fc{bottom:758.373333pt;}
.y141{bottom:759.493333pt;}
.y74{bottom:761.093333pt;}
.y1b2{bottom:761.253333pt;}
.yfc{bottom:761.573333pt;}
.y68{bottom:762.693333pt;}
.y82{bottom:764.613333pt;}
.yb8{bottom:767.813333pt;}
.y2c{bottom:768.453333pt;}
.y22{bottom:769.253333pt;}
.y4f{bottom:770.213333pt;}
.y194{bottom:772.133333pt;}
.y120{bottom:775.333333pt;}
.y93{bottom:776.773333pt;}
.y1d9{bottom:777.733333pt;}
.y140{bottom:778.853333pt;}
.yfb{bottom:780.773333pt;}
.y159{bottom:781.573333pt;}
.y67{bottom:782.053333pt;}
.y81{bottom:783.973333pt;}
.yb7{bottom:787.173333pt;}
.y2b{bottom:788.613333pt;}
.ydb{bottom:789.413333pt;}
.y1fb{bottom:790.533333pt;}
.y193{bottom:791.493333pt;}
.y11f{bottom:794.533333pt;}
.y92{bottom:796.133333pt;}
.y1d8{bottom:797.093333pt;}
.y1b0{bottom:797.733333pt;}
.y13f{bottom:798.053333pt;}
.y73{bottom:798.213333pt;}
.y21{bottom:799.813333pt;}
.yfa{bottom:800.133333pt;}
.y66{bottom:801.413333pt;}
.y80{bottom:803.173333pt;}
.yb6{bottom:807.173333pt;}
.y2a{bottom:808.773333pt;}
.y4e{bottom:810.053333pt;}
.y192{bottom:810.853333pt;}
.y11e{bottom:813.893333pt;}
.y1d7{bottom:816.293333pt;}
.y13e{bottom:817.413333pt;}
.yf9{bottom:819.493333pt;}
.y65{bottom:820.773333pt;}
.y7f{bottom:822.533333pt;}
.y91{bottom:826.053333pt;}
.yb5{bottom:827.333333pt;}
.y177{bottom:828.133333pt;}
.y29{bottom:828.933333pt;}
.y191{bottom:830.053333pt;}
.y158{bottom:832.613333pt;}
.y11d{bottom:833.253333pt;}
.y1af{bottom:834.053333pt;}
.y20{bottom:835.173333pt;}
.y1d6{bottom:835.653333pt;}
.y13d{bottom:836.773333pt;}
.y1fa{bottom:836.933333pt;}
.yda{bottom:838.853333pt;}
.y7e{bottom:841.893333pt;}
.yb4{bottom:846.693333pt;}
.y28{bottom:849.253333pt;}
.yf8{bottom:849.413333pt;}
.y4d{bottom:849.733333pt;}
.y64{bottom:850.693333pt;}
.y11c{bottom:852.613333pt;}
.y1d5{bottom:855.013333pt;}
.y90{bottom:856.133333pt;}
.yd9{bottom:858.053333pt;}
.y7d{bottom:861.253333pt;}
.y13c{bottom:866.693333pt;}
.yf7{bottom:868.773333pt;}
.y157{bottom:869.093333pt;}
.y27{bottom:869.413333pt;}
.y1f{bottom:870.533333pt;}
.y11b{bottom:871.813333pt;}
.y72{bottom:872.453333pt;}
.y1f9{bottom:874.373333pt;}
.yb3{bottom:877.413333pt;}
.y3{bottom:881.253333pt;}
.y1d4{bottom:884.933333pt;}
.y8f{bottom:886.053333pt;}
.y4c{bottom:886.533333pt;}
.yf6{bottom:888.133333pt;}
.y26{bottom:889.573333pt;}
.y1f8{bottom:892.293333pt;}
.y7c{bottom:893.413333pt;}
.yd8{bottom:896.773333pt;}
.y11a{bottom:904.133333pt;}
.y1d3{bottom:905.093333pt;}
.y1e{bottom:905.893333pt;}
.yb2{bottom:907.333333pt;}
.y71{bottom:909.573333pt;}
.y24{bottom:909.733333pt;}
.y1f7{bottom:910.213333pt;}
.y4b{bottom:911.333333pt;}
.y2{bottom:916.133333pt;}
.y156{bottom:923.493333pt;}
.y1d2{bottom:925.093333pt;}
.yb1{bottom:926.693333pt;}
.y1f6{bottom:928.133333pt;}
.y7b{bottom:935.813333pt;}
.y1d{bottom:941.253333pt;}
.y70{bottom:944.773333pt;}
.y1d1{bottom:945.253333pt;}
.y1{bottom:946.053333pt;}
.y19{bottom:993.280000pt;}
.h4{height:17.920000pt;}
.h1d{height:17.952000pt;}
.h5{height:19.520000pt;}
.ha{height:19.552000pt;}
.h7{height:20.000000pt;}
.hb{height:29.920000pt;}
.hc{height:29.952000pt;}
.hd{height:30.080000pt;}
.h1e{height:35.680000pt;}
.h19{height:35.840000pt;}
.h1b{height:35.872000pt;}
.h18{height:37.476562pt;}
.he{height:39.040000pt;}
.hf{height:39.072000pt;}
.h8{height:39.200000pt;}
.h20{height:44.437500pt;}
.h1{height:44.763750pt;}
.h17{height:45.971250pt;}
.h6{height:48.656250pt;}
.h1f{height:53.632000pt;}
.h1c{height:53.760000pt;}
.h1a{height:53.792000pt;}
.h15{height:54.390938pt;}
.h2{height:56.160000pt;}
.h11{height:58.560000pt;}
.h10{height:58.592000pt;}
.h16{height:63.656250pt;}
.h3{height:63.840000pt;}
.h13{height:65.531250pt;}
.h14{height:72.000000pt;}
.h9{height:78.080000pt;}
.h12{height:97.600000pt;}
.h0{height:1056.000000pt;}
.w12{width:6.400000pt;}
.w3{width:6.720000pt;}
.w11{width:7.040000pt;}
.w2{width:7.520000pt;}
.wa{width:7.680000pt;}
.w1c{width:12.960000pt;}
.w14{width:13.280000pt;}
.w1a{width:13.600000pt;}
.w15{width:14.080000pt;}
.w13{width:14.240000pt;}
.w1b{width:14.400000pt;}
.w8{width:26.240000pt;}
.wb{width:74.400000pt;}
.wc{width:103.072000pt;}
.wd{width:136.160000pt;}
.wf{width:136.800000pt;}
.w17{width:189.146667pt;}
.w18{width:191.066667pt;}
.w19{width:191.226667pt;}
.w16{width:195.226667pt;}
.w4{width:205.466667pt;}
.w6{width:206.906667pt;}
.we{width:307.266667pt;}
.w7{width:443.426667pt;}
.w5{width:446.306667pt;}
.w10{width:485.373333pt;}
.w9{width:596.573333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:96.031988pt;}
.xe{left:120.031988pt;}
.x8{left:123.552000pt;}
.xd{left:125.471988pt;}
.x11{left:144.026655pt;}
.x9{left:171.706667pt;}
.xc{left:234.106667pt;}
.xa{left:275.426667pt;}
.x3{left:281.666655pt;}
.x6{left:302.786667pt;}
.x7{left:304.386667pt;}
.x14{left:336.546667pt;}
.x12{left:340.546667pt;}
.x10{left:343.906655pt;}
.xb{left:412.226667pt;}
.x2{left:452.413321pt;}
.x15{left:528.253333pt;}
.x13{left:530.333333pt;}
.xf{left:720.133321pt;}
.x4{left:780.000000pt;}
}




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