
    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_4d60736ec820516b6e5a8dcf.woff')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_4d60736ec820516b6e5a8dcf.woff')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_73bf7b62eac4dd9adbc1c1f1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.034000;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_0b51534eee6adebf448174ed.woff')format("woff");}.ff4{font-family:ff4;line-height:0.722000;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_39b936b5208ea84398d39d92.woff')format("woff");}.ff5{font-family:ff5;line-height:1.034000;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_4d60736ec820516b6e5a8dcf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_4d60736ec820516b6e5a8dcf.woff')format("woff");}.ff7{font-family:ff7;line-height:0.952000;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_6f32d04848f0ef1b7d2ee3d7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.957000;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_70b18c884ce0cf6e29231330.woff')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_4109b3d51c7c5c764f3c9ed3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.957000;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_d88bd8ad6bd20db6e4c16732.woff')format("woff");}.ffb{font-family:ffb;line-height:0.692383;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_ef86ad08281abab7f6d981c0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.925781;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.200000px;}
.v1{vertical-align:21.600000px;}
.v3{vertical-align:27.000000px;}
.v4{vertical-align:54.000000px;}
.ls3a{letter-spacing:-2.862000px;}
.ls11{letter-spacing:-2.430000px;}
.ls16{letter-spacing:-2.376000px;}
.ls12{letter-spacing:-1.998000px;}
.ls3b{letter-spacing:-1.782000px;}
.ls3c{letter-spacing:-1.728000px;}
.ls2f{letter-spacing:-1.620000px;}
.ls1f{letter-spacing:-1.404000px;}
.ls2a{letter-spacing:-1.350000px;}
.ls17{letter-spacing:-1.296000px;}
.ls4e{letter-spacing:-0.960000px;}
.ls4b{letter-spacing:-0.918000px;}
.ls30{letter-spacing:-0.540000px;}
.ls31{letter-spacing:-0.486000px;}
.ls1c{letter-spacing:-0.432000px;}
.ls28{letter-spacing:-0.378000px;}
.ls19{letter-spacing:-0.324000px;}
.lsf{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.216000px;}
.ls54{letter-spacing:-0.162000px;}
.ls4c{letter-spacing:-0.108000px;}
.lsa{letter-spacing:0.000000px;}
.ls53{letter-spacing:0.003000px;}
.ls34{letter-spacing:0.005400px;}
.ls22{letter-spacing:0.016200px;}
.ls24{letter-spacing:0.023400px;}
.ls40{letter-spacing:0.027000px;}
.ls3f{letter-spacing:0.027600px;}
.ls50{letter-spacing:0.033600px;}
.ls3{letter-spacing:0.054000px;}
.ls7{letter-spacing:0.108000px;}
.ls1b{letter-spacing:0.135000px;}
.ls35{letter-spacing:0.142800px;}
.ls4{letter-spacing:0.162000px;}
.lsd{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.241800px;}
.ls2{letter-spacing:0.243000px;}
.ls51{letter-spacing:0.269400px;}
.ls1{letter-spacing:0.270000px;}
.ls23{letter-spacing:0.293400px;}
.ls5{letter-spacing:0.324000px;}
.ls32{letter-spacing:0.349200px;}
.ls33{letter-spacing:0.351000px;}
.ls20{letter-spacing:0.366600px;}
.ls13{letter-spacing:0.378000px;}
.ls1d{letter-spacing:0.414000px;}
.ls52{letter-spacing:0.426600px;}
.ls0{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.459000px;}
.ls6{letter-spacing:0.486000px;}
.lsc{letter-spacing:0.513000px;}
.lsb{letter-spacing:0.540000px;}
.ls49{letter-spacing:0.591000px;}
.ls3d{letter-spacing:0.594000px;}
.ls8{letter-spacing:0.648000px;}
.ls4f{letter-spacing:0.702000px;}
.ls3e{letter-spacing:0.745800px;}
.ls25{letter-spacing:0.756000px;}
.ls15{letter-spacing:0.783000px;}
.ls38{letter-spacing:0.918000px;}
.ls2d{letter-spacing:0.972000px;}
.ls1a{letter-spacing:1.080000px;}
.ls27{letter-spacing:1.134000px;}
.ls36{letter-spacing:1.512000px;}
.ls46{letter-spacing:1.620000px;}
.ls18{letter-spacing:1.728000px;}
.ls48{letter-spacing:2.160000px;}
.ls4d{letter-spacing:2.862000px;}
.ls2c{letter-spacing:3.024000px;}
.ls44{letter-spacing:3.672000px;}
.ls42{letter-spacing:3.780000px;}
.ls43{letter-spacing:3.829200px;}
.ls45{letter-spacing:3.942000px;}
.ls47{letter-spacing:4.104000px;}
.lse{letter-spacing:4.158000px;}
.ls39{letter-spacing:4.212000px;}
.ls2b{letter-spacing:4.590000px;}
.ls37{letter-spacing:4.752000px;}
.ls29{letter-spacing:4.806000px;}
.ls2e{letter-spacing:4.860000px;}
.ls26{letter-spacing:4.968000px;}
.ls1e{letter-spacing:5.022000px;}
.ls14{letter-spacing:5.072400px;}
.ls4a{letter-spacing:5.454000px;}
.ls41{letter-spacing:6.912000px;}
.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:-14.364000px;}
.ws19{word-spacing:-14.256000px;}
.ws13{word-spacing:-13.878000px;}
.ws31{word-spacing:-12.336000px;}
.ws1{word-spacing:-9.828000px;}
.ws55{word-spacing:-9.504000px;}
.ws2{word-spacing:-8.090874px;}
.ws51{word-spacing:-7.452000px;}
.ws2f{word-spacing:-7.191888px;}
.ws3a{word-spacing:-6.912000px;}
.ws42{word-spacing:-5.454000px;}
.ws1e{word-spacing:-5.022000px;}
.ws21{word-spacing:-4.968000px;}
.ws29{word-spacing:-4.860000px;}
.ws24{word-spacing:-4.806000px;}
.ws33{word-spacing:-4.752000px;}
.ws26{word-spacing:-4.590000px;}
.ws35{word-spacing:-4.212000px;}
.wse{word-spacing:-4.158000px;}
.ws40{word-spacing:-4.104000px;}
.ws3e{word-spacing:-3.942000px;}
.ws3b{word-spacing:-3.780000px;}
.ws3d{word-spacing:-3.672000px;}
.ws27{word-spacing:-3.024000px;}
.ws45{word-spacing:-2.862000px;}
.ws41{word-spacing:-2.160000px;}
.ws1a{word-spacing:-1.728000px;}
.ws3f{word-spacing:-1.620000px;}
.ws32{word-spacing:-1.512000px;}
.ws22{word-spacing:-1.134000px;}
.ws1c{word-spacing:-1.080000px;}
.ws28{word-spacing:-0.972000px;}
.ws34{word-spacing:-0.918000px;}
.ws18{word-spacing:-0.810000px;}
.ws20{word-spacing:-0.756000px;}
.ws54{word-spacing:-0.702000px;}
.wsb{word-spacing:-0.648000px;}
.ws39{word-spacing:-0.594000px;}
.wsc{word-spacing:-0.540000px;}
.ws9{word-spacing:-0.486000px;}
.ws4{word-spacing:-0.432000px;}
.ws15{word-spacing:-0.378000px;}
.ws8{word-spacing:-0.324000px;}
.ws5{word-spacing:-0.270000px;}
.wsd{word-spacing:-0.216000px;}
.ws7{word-spacing:-0.162000px;}
.wsa{word-spacing:-0.108000px;}
.ws0{word-spacing:-0.078000px;}
.ws6{word-spacing:-0.054000px;}
.ws52{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws44{word-spacing:0.108000px;}
.ws56{word-spacing:0.162000px;}
.ws10{word-spacing:0.216000px;}
.wsf{word-spacing:0.270000px;}
.ws1b{word-spacing:0.324000px;}
.ws23{word-spacing:0.378000px;}
.ws1d{word-spacing:0.432000px;}
.ws2c{word-spacing:0.486000px;}
.ws2b{word-spacing:0.540000px;}
.ws43{word-spacing:0.918000px;}
.ws4c{word-spacing:0.960000px;}
.ws17{word-spacing:1.296000px;}
.ws25{word-spacing:1.350000px;}
.ws1f{word-spacing:1.404000px;}
.ws2a{word-spacing:1.620000px;}
.ws38{word-spacing:1.728000px;}
.ws37{word-spacing:1.782000px;}
.ws12{word-spacing:1.998000px;}
.ws16{word-spacing:2.376000px;}
.ws11{word-spacing:2.430000px;}
.ws36{word-spacing:2.862000px;}
.ws4e{word-spacing:32.446200px;}
.ws3c{word-spacing:36.072000px;}
.ws46{word-spacing:40.911000px;}
.ws49{word-spacing:44.334600px;}
.ws4f{word-spacing:115.918800px;}
.ws50{word-spacing:166.942800px;}
.ws4d{word-spacing:189.310200px;}
.ws2d{word-spacing:236.525400px;}
.ws48{word-spacing:245.005800px;}
.ws2e{word-spacing:354.029400px;}
.ws47{word-spacing:380.683800px;}
.ws30{word-spacing:473.084400px;}
.ws4b{word-spacing:1486.340400px;}
.ws4a{word-spacing:1578.596400px;}
.ws53{word-spacing:1682.530800px;}
._2{margin-left:-13.880400px;}
._44{margin-left:-12.211200px;}
._3{margin-left:-4.921800px;}
._a{margin-left:-3.468000px;}
._1{margin-left:-2.440800px;}
._4{margin-left:-1.177800px;}
._0{width:1.680000px;}
._5{width:2.716200px;}
._7{width:3.909600px;}
._6{width:5.032800px;}
._8{width:6.577200px;}
._c{width:8.019000px;}
._b{width:23.101200px;}
._27{width:24.381000px;}
._9{width:28.944000px;}
._26{width:33.760800px;}
._16{width:35.488800px;}
._d{width:40.672800px;}
._2a{width:43.534800px;}
._19{width:45.822600px;}
._3c{width:48.546600px;}
._12{width:55.916400px;}
._1b{width:69.423600px;}
._30{width:70.654800px;}
._3d{width:76.138800px;}
._3a{width:82.639200px;}
._17{width:94.239600px;}
._32{width:105.645600px;}
._18{width:109.470600px;}
._35{width:111.247200px;}
._1a{width:117.870600px;}
._38{width:120.010800px;}
._31{width:131.798400px;}
._41{width:161.080800px;}
._29{width:175.254600px;}
._2f{width:179.230200px;}
._40{width:200.008800px;}
._14{width:204.380400px;}
._2b{width:220.823400px;}
._15{width:227.132400px;}
._37{width:233.992800px;}
._36{width:262.426800px;}
._28{width:268.667400px;}
._2d{width:281.278200px;}
._2c{width:290.972400px;}
._43{width:301.671000px;}
._22{width:329.312400px;}
._10{width:360.970800px;}
._13{width:369.562800px;}
._11{width:383.722800px;}
._39{width:430.168800px;}
._42{width:480.699600px;}
._2e{width:485.371800px;}
._3e{width:490.120800px;}
._e{width:513.946800px;}
._25{width:516.548400px;}
._3b{width:524.108400px;}
._3f{width:598.309200px;}
._23{width:626.372400px;}
._33{width:634.819200px;}
._f{width:655.450800px;}
._34{width:686.632800px;}
._1e{width:823.760400px;}
._24{width:962.276400px;}
._1d{width:1142.756400px;}
._21{width:1160.564400px;}
._20{width:1173.236400px;}
._1f{width:1187.540400px;}
._1c{width:1251.092400px;}
.fc2{color:rgb(26,58,94);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.984000px;}
.fs4{font-size:31.482000px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:45.610500px;}
.y48{bottom:76.110150px;}
.y26{bottom:76.110300px;}
.ydd{bottom:80.166750px;}
.y88{bottom:80.222850px;}
.y11f{bottom:81.285150px;}
.y13a{bottom:81.331350px;}
.y127{bottom:81.730200px;}
.y198{bottom:82.126500px;}
.y149{bottom:84.487050px;}
.y175{bottom:85.006950px;}
.yb2{bottom:85.470600px;}
.ydc{bottom:93.666750px;}
.y87{bottom:93.722850px;}
.y47{bottom:94.110150px;}
.y25{bottom:94.110300px;}
.y11e{bottom:94.785150px;}
.y139{bottom:94.831350px;}
.y148{bottom:97.987050px;}
.y174{bottom:98.506950px;}
.yb1{bottom:98.970600px;}
.y126{bottom:102.865050px;}
.y197{bottom:106.226700px;}
.ydb{bottom:107.166750px;}
.y86{bottom:107.222850px;}
.y11d{bottom:108.285150px;}
.y138{bottom:108.331350px;}
.y147{bottom:111.487050px;}
.y173{bottom:112.006950px;}
.y46{bottom:112.110150px;}
.y24{bottom:112.110300px;}
.yb0{bottom:112.470600px;}
.y196{bottom:119.726700px;}
.yda{bottom:120.666750px;}
.y85{bottom:120.722850px;}
.y11c{bottom:121.785150px;}
.y137{bottom:121.831350px;}
.y125{bottom:123.999750px;}
.y146{bottom:124.987050px;}
.y172{bottom:125.506950px;}
.yaf{bottom:125.970600px;}
.y23{bottom:130.110300px;}
.yd9{bottom:134.166750px;}
.y136{bottom:135.331350px;}
.y145{bottom:138.487050px;}
.y171{bottom:139.006950px;}
.y84{bottom:141.432300px;}
.y11b{bottom:143.759400px;}
.y195{bottom:143.827050px;}
.y124{bottom:145.134450px;}
.yae{bottom:147.105300px;}
.yd8{bottom:147.666750px;}
.y45{bottom:148.110150px;}
.y22{bottom:148.110300px;}
.y144{bottom:151.987050px;}
.y83{bottom:154.932300px;}
.y11a{bottom:157.259400px;}
.y135{bottom:157.305600px;}
.y194{bottom:157.327050px;}
.y170{bottom:160.141650px;}
.y143{bottom:165.487050px;}
.y44{bottom:166.110150px;}
.y21{bottom:166.110300px;}
.y123{bottom:166.337550px;}
.yad{bottom:168.308400px;}
.y82{bottom:168.432300px;}
.y7f{bottom:169.271850px;}
.yd7{bottom:170.289600px;}
.y119{bottom:170.759400px;}
.y134{bottom:170.805600px;}
.y16f{bottom:173.641650px;}
.y193{bottom:181.427250px;}
.y81{bottom:181.932300px;}
.y7e{bottom:182.771850px;}
.yd6{bottom:183.789600px;}
.y20{bottom:184.110300px;}
.y133{bottom:184.305600px;}
.y142{bottom:186.621750px;}
.y16e{bottom:187.141650px;}
.y122{bottom:188.390850px;}
.yac{bottom:190.282650px;}
.y118{bottom:192.733650px;}
.y192{bottom:194.927250px;}
.y80{bottom:195.432300px;}
.y7d{bottom:196.271850px;}
.yd5{bottom:197.289600px;}
.y132{bottom:197.805600px;}
.y141{bottom:200.121750px;}
.y16d{bottom:200.641650px;}
.y1f{bottom:202.110300px;}
.y117{bottom:206.233650px;}
.yab{bottom:206.782650px;}
.yd4{bottom:210.789600px;}
.y121{bottom:210.869550px;}
.y131{bottom:211.305600px;}
.y140{bottom:213.621750px;}
.y16c{bottom:214.141650px;}
.y7c{bottom:216.981450px;}
.y191{bottom:219.027450px;}
.y1b4{bottom:219.377100px;}
.y116{bottom:219.733650px;}
.y43{bottom:220.110150px;}
.y1e{bottom:220.110300px;}
.yd3{bottom:224.289600px;}
.y13f{bottom:227.121750px;}
.y7b{bottom:230.481450px;}
.y1b3{bottom:232.877100px;}
.y130{bottom:233.279850px;}
.y120{bottom:233.348100px;}
.y16b{bottom:236.116050px;}
.yd2{bottom:237.789600px;}
.y42{bottom:238.110150px;}
.y1d{bottom:238.110300px;}
.y115{bottom:241.707900px;}
.y190{bottom:243.127800px;}
.y7a{bottom:243.981450px;}
.y1b2{bottom:246.377100px;}
.y13e{bottom:249.096000px;}
.y16a{bottom:249.616050px;}
.y114{bottom:255.207900px;}
.y12f{bottom:255.254100px;}
.y41{bottom:256.110150px;}
.y1c{bottom:256.110300px;}
.y18f{bottom:256.627800px;}
.y79{bottom:257.481450px;}
.yd1{bottom:261.252150px;}
.y169{bottom:263.116050px;}
.yaa{bottom:266.218500px;}
.y113{bottom:268.707900px;}
.y13d{bottom:270.299100px;}
.y1b1{bottom:270.477300px;}
.y78{bottom:270.981450px;}
.y40{bottom:274.110150px;}
.y1b{bottom:274.110300px;}
.yd0{bottom:274.752150px;}
.y168{bottom:276.616050px;}
.ya9{bottom:279.718500px;}
.y18e{bottom:280.728000px;}
.y13c{bottom:283.799100px;}
.y1b0{bottom:283.977300px;}
.y77{bottom:284.481450px;}
.ycf{bottom:288.252150px;}
.y112{bottom:290.682150px;}
.y3f{bottom:292.110150px;}
.y1a{bottom:292.110300px;}
.ya8{bottom:293.218500px;}
.y18d{bottom:294.228000px;}
.y1af{bottom:297.477300px;}
.y76{bottom:297.981450px;}
.y167{bottom:298.590300px;}
.yce{bottom:301.752150px;}
.y111{bottom:304.182150px;}
.y13b{bottom:305.002050px;}
.yfb{bottom:308.844450px;}
.y3e{bottom:310.110150px;}
.y19{bottom:310.110300px;}
.y75{bottom:311.481450px;}
.y166{bottom:312.090300px;}
.ya7{bottom:314.767650px;}
.ycd{bottom:315.252150px;}
.y110{bottom:317.682150px;}
.y18c{bottom:318.328350px;}
.y1ae{bottom:321.577650px;}
.yfa{bottom:322.344450px;}
.y74{bottom:324.981450px;}
.y165{bottom:325.590300px;}
.y3d{bottom:328.110150px;}
.y18{bottom:328.110300px;}
.ya6{bottom:328.267650px;}
.y18b{bottom:331.828350px;}
.y1ad{bottom:335.077650px;}
.yf9{bottom:335.844450px;}
.y73{bottom:338.481450px;}
.ycc{bottom:338.714550px;}
.y164{bottom:339.090300px;}
.y10f{bottom:339.656550px;}
.ya5{bottom:341.767650px;}
.y3c{bottom:346.110150px;}
.y17{bottom:346.110300px;}
.y1ac{bottom:348.577650px;}
.yf8{bottom:349.344450px;}
.y72{bottom:351.981450px;}
.ycb{bottom:352.214550px;}
.y10e{bottom:353.156550px;}
.ya4{bottom:355.267650px;}
.y18a{bottom:355.928550px;}
.y163{bottom:361.064550px;}
.yf7{bottom:362.844450px;}
.y3b{bottom:364.110150px;}
.y16{bottom:364.110300px;}
.y71{bottom:365.481450px;}
.yca{bottom:365.714550px;}
.y10d{bottom:366.656550px;}
.ya3{bottom:368.767650px;}
.y189{bottom:369.428550px;}
.y1ab{bottom:372.677850px;}
.y162{bottom:374.564550px;}
.y70{bottom:378.981450px;}
.yc9{bottom:379.214550px;}
.y10c{bottom:380.156550px;}
.y3a{bottom:382.110150px;}
.y15{bottom:382.110300px;}
.ya2{bottom:382.267650px;}
.yf6{bottom:384.393600px;}
.y1aa{bottom:386.177850px;}
.y161{bottom:388.064550px;}
.y6f{bottom:392.481450px;}
.yc8{bottom:392.714550px;}
.y188{bottom:393.528750px;}
.yf5{bottom:397.893600px;}
.y1a9{bottom:399.677850px;}
.y39{bottom:400.110150px;}
.y14{bottom:400.110300px;}
.y160{bottom:401.564550px;}
.y10b{bottom:402.130800px;}
.ya1{bottom:403.816650px;}
.y6e{bottom:405.981450px;}
.y187{bottom:407.028750px;}
.yf4{bottom:411.393600px;}
.y10a{bottom:415.630800px;}
.yc7{bottom:416.177100px;}
.ya0{bottom:417.316650px;}
.y38{bottom:418.110150px;}
.y13{bottom:418.110300px;}
.y6d{bottom:419.481450px;}
.y15f{bottom:423.538800px;}
.y1a8{bottom:423.778050px;}
.yf3{bottom:424.893600px;}
.y109{bottom:429.130800px;}
.yc6{bottom:429.677100px;}
.y9f{bottom:430.816650px;}
.y186{bottom:431.129100px;}
.y6c{bottom:432.981450px;}
.y37{bottom:436.110150px;}
.y12{bottom:436.110300px;}
.y15e{bottom:437.038800px;}
.yf2{bottom:438.393600px;}
.yc5{bottom:443.177100px;}
.y9e{bottom:444.316650px;}
.y6b{bottom:446.481450px;}
.y1a7{bottom:447.878400px;}
.y15d{bottom:450.538800px;}
.y108{bottom:451.105050px;}
.yf1{bottom:451.893600px;}
.y36{bottom:454.110150px;}
.y11{bottom:454.110300px;}
.y185{bottom:455.229300px;}
.yc4{bottom:456.677100px;}
.y9d{bottom:457.816650px;}
.y6a{bottom:459.981450px;}
.y15c{bottom:464.038800px;}
.y107{bottom:464.605050px;}
.yc3{bottom:470.177100px;}
.y9c{bottom:471.316650px;}
.y35{bottom:472.110150px;}
.y10{bottom:472.110300px;}
.yf0{bottom:473.442600px;}
.y69{bottom:473.481450px;}
.y15b{bottom:477.538800px;}
.y106{bottom:478.105050px;}
.yc2{bottom:483.677100px;}
.y9b{bottom:484.816650px;}
.yef{bottom:486.942600px;}
.y68{bottom:486.981450px;}
.y34{bottom:490.110150px;}
.yf{bottom:490.110300px;}
.y9a{bottom:498.316650px;}
.y15a{bottom:499.513050px;}
.y105{bottom:500.079300px;}
.yee{bottom:500.442600px;}
.y1a6{bottom:501.361500px;}
.yc1{bottom:507.139500px;}
.y33{bottom:508.110150px;}
.ye{bottom:508.110300px;}
.y67{bottom:508.530450px;}
.y184{bottom:508.712400px;}
.y99{bottom:511.816650px;}
.y159{bottom:513.013050px;}
.y104{bottom:513.579300px;}
.yed{bottom:513.942600px;}
.yc0{bottom:520.639500px;}
.y66{bottom:522.030450px;}
.y98{bottom:525.316650px;}
.y1a5{bottom:525.461700px;}
.y32{bottom:526.110150px;}
.yd{bottom:526.110300px;}
.y158{bottom:526.513050px;}
.y103{bottom:527.079300px;}
.yec{bottom:527.442600px;}
.y183{bottom:532.041450px;}
.ybf{bottom:534.139500px;}
.y97{bottom:538.816650px;}
.y1a4{bottom:538.961700px;}
.y157{bottom:540.013050px;}
.y102{bottom:540.579300px;}
.yeb{bottom:540.942600px;}
.y65{bottom:543.579600px;}
.y31{bottom:544.110150px;}
.y57{bottom:544.110300px;}
.y182{bottom:545.541450px;}
.ybe{bottom:547.639500px;}
.y96{bottom:552.316650px;}
.y156{bottom:553.513050px;}
.y64{bottom:557.079600px;}
.ybd{bottom:561.139500px;}
.yc{bottom:562.110300px;}
.yea{bottom:562.491750px;}
.y101{bottom:562.553550px;}
.y1a3{bottom:563.062050px;}
.y155{bottom:567.013050px;}
.y181{bottom:568.802100px;}
.y63{bottom:570.579600px;}
.y95{bottom:573.865650px;}
.ye9{bottom:575.991750px;}
.y100{bottom:576.053550px;}
.y3{bottom:578.082000px;}
.y28{bottom:578.260650px;}
.y56{bottom:580.110300px;}
.y154{bottom:580.513050px;}
.y180{bottom:582.302100px;}
.y62{bottom:584.079600px;}
.ybc{bottom:584.601900px;}
.y1a2{bottom:587.162250px;}
.y94{bottom:587.365650px;}
.ye8{bottom:589.491750px;}
.yff{bottom:589.553550px;}
.y61{bottom:597.579600px;}
.ybb{bottom:598.101900px;}
.y30{bottom:598.110150px;}
.y55{bottom:598.110300px;}
.y1a1{bottom:600.662250px;}
.y93{bottom:600.865650px;}
.y153{bottom:602.487300px;}
.ye7{bottom:602.991750px;}
.y17f{bottom:605.562900px;}
.yb{bottom:606.268650px;}
.yfe{bottom:611.527800px;}
.yba{bottom:611.601900px;}
.y92{bottom:614.365650px;}
.y152{bottom:615.987300px;}
.y2f{bottom:616.110150px;}
.y54{bottom:616.110300px;}
.ye6{bottom:616.491750px;}
.y17e{bottom:619.062900px;}
.y60{bottom:619.128600px;}
.ya{bottom:624.268650px;}
.y1a0{bottom:624.762600px;}
.yfd{bottom:625.027800px;}
.yb9{bottom:625.101900px;}
.y91{bottom:627.865650px;}
.y151{bottom:629.487300px;}
.ye5{bottom:629.991750px;}
.y5f{bottom:632.628600px;}
.y12e{bottom:632.920500px;}
.y2e{bottom:634.110150px;}
.y53{bottom:634.110300px;}
.y19f{bottom:638.262600px;}
.yb8{bottom:638.601900px;}
.y9{bottom:642.268650px;}
.y17d{bottom:642.323700px;}
.y150{bottom:642.987300px;}
.y5e{bottom:646.128600px;}
.yfc{bottom:647.002050px;}
.y90{bottom:649.414800px;}
.ye4{bottom:651.540750px;}
.yb7{bottom:652.101900px;}
.y52{bottom:652.110300px;}
.y12d{bottom:654.123600px;}
.y17c{bottom:655.823700px;}
.y14f{bottom:656.487300px;}
.y5d{bottom:659.628600px;}
.y8{bottom:660.268650px;}
.y19e{bottom:662.362800px;}
.y8f{bottom:662.914800px;}
.y176{bottom:664.961700px;}
.ye3{bottom:665.040750px;}
.y2d{bottom:670.110150px;}
.y51{bottom:670.110300px;}
.y12c{bottom:675.258300px;}
.yb6{bottom:675.564450px;}
.y19d{bottom:675.862800px;}
.y8e{bottom:676.414800px;}
.y14e{bottom:678.461700px;}
.ye2{bottom:678.540750px;}
.y17b{bottom:679.084350px;}
.y5c{bottom:681.177750px;}
.y50{bottom:688.110300px;}
.yb5{bottom:689.064450px;}
.y8d{bottom:689.914800px;}
.y14d{bottom:691.961700px;}
.ye1{bottom:692.040750px;}
.y17a{bottom:692.584350px;}
.y5b{bottom:694.677750px;}
.y12b{bottom:696.393000px;}
.y19c{bottom:699.963000px;}
.yb4{bottom:702.564450px;}
.y8c{bottom:703.414800px;}
.y2{bottom:704.520150px;}
.y14c{bottom:705.461700px;}
.ye0{bottom:705.540750px;}
.y2c{bottom:706.110150px;}
.y4f{bottom:706.110300px;}
.y19b{bottom:713.463000px;}
.y179{bottom:715.845000px;}
.yb3{bottom:716.064450px;}
.y8b{bottom:716.914800px;}
.y5a{bottom:717.289800px;}
.y12a{bottom:717.527700px;}
.y14b{bottom:718.961700px;}
.ydf{bottom:719.040750px;}
.y2b{bottom:724.110150px;}
.y4e{bottom:724.110300px;}
.y19a{bottom:737.563350px;}
.y178{bottom:739.105800px;}
.y8a{bottom:739.526850px;}
.y7{bottom:739.764600px;}
.y129{bottom:739.793700px;}
.y59{bottom:739.901850px;}
.yde{bottom:740.589900px;}
.y14a{bottom:740.935950px;}
.y2a{bottom:742.110150px;}
.y4d{bottom:742.110300px;}
.y6{bottom:753.264600px;}
.y29{bottom:760.110150px;}
.y4c{bottom:760.110300px;}
.y199{bottom:761.663550px;}
.y89{bottom:762.139050px;}
.y177{bottom:762.434850px;}
.y128{bottom:762.484950px;}
.y58{bottom:762.514050px;}
.y5{bottom:766.764600px;}
.y4b{bottom:785.503950px;}
.y4{bottom:796.464600px;}
.y27{bottom:796.747950px;}
.y4a{bottom:797.503950px;}
.y49{bottom:809.503950px;}
.h5{height:33.978000px;}
.ha{height:36.576000px;}
.h2{height:38.304000px;}
.h9{height:38.832000px;}
.h8{height:41.148000px;}
.hb{height:41.839056px;}
.h6{height:43.092000px;}
.h4{height:43.686000px;}
.h7{height:47.068938px;}
.h3{height:62.244000px;}
.hc{height:90.576000px;}
.h0{height:850.393500px;}
.h1{height:850.500000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.xc{left:36.097500px;}
.x9{left:63.779550px;}
.x11{left:68.031450px;}
.x28{left:70.880250px;}
.x26{left:78.023550px;}
.xa{left:85.039350px;}
.x27{left:93.543300px;}
.x19{left:97.795350px;}
.x7{left:99.446850px;}
.x2{left:101.714100px;}
.xd{left:104.967300px;}
.x8{left:106.299300px;}
.xe{left:156.308400px;}
.x12{left:165.826800px;}
.x1f{left:182.834700px;}
.xf{left:185.725800px;}
.xb{left:189.133950px;}
.x14{left:195.590550px;}
.x1b{left:225.354300px;}
.x24{left:229.606350px;}
.x16{left:250.866150px;}
.x20{left:259.370100px;}
.x5{left:274.351350px;}
.x22{left:284.881950px;}
.x10{left:303.047850px;}
.x1{left:305.429700px;}
.x6{left:323.693250px;}
.x1a{left:331.653600px;}
.x13{left:335.905500px;}
.x15{left:365.669250px;}
.x17{left:378.425250px;}
.x4{left:383.955300px;}
.x21{left:386.929200px;}
.x25{left:391.181100px;}
.x1c{left:416.692950px;}
.x18{left:425.196900px;}
.x1d{left:437.952750px;}
.x1e{left:488.976450px;}
.x23{left:514.488150px;}
.x3{left:592.254900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.066667pt;}
.v1{vertical-align:19.200000pt;}
.v3{vertical-align:24.000000pt;}
.v4{vertical-align:48.000000pt;}
.ls3a{letter-spacing:-2.544000pt;}
.ls11{letter-spacing:-2.160000pt;}
.ls16{letter-spacing:-2.112000pt;}
.ls12{letter-spacing:-1.776000pt;}
.ls3b{letter-spacing:-1.584000pt;}
.ls3c{letter-spacing:-1.536000pt;}
.ls2f{letter-spacing:-1.440000pt;}
.ls1f{letter-spacing:-1.248000pt;}
.ls2a{letter-spacing:-1.200000pt;}
.ls17{letter-spacing:-1.152000pt;}
.ls4e{letter-spacing:-0.853333pt;}
.ls4b{letter-spacing:-0.816000pt;}
.ls30{letter-spacing:-0.480000pt;}
.ls31{letter-spacing:-0.432000pt;}
.ls1c{letter-spacing:-0.384000pt;}
.ls28{letter-spacing:-0.336000pt;}
.ls19{letter-spacing:-0.288000pt;}
.lsf{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls54{letter-spacing:-0.144000pt;}
.ls4c{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls53{letter-spacing:0.002667pt;}
.ls34{letter-spacing:0.004800pt;}
.ls22{letter-spacing:0.014400pt;}
.ls24{letter-spacing:0.020800pt;}
.ls40{letter-spacing:0.024000pt;}
.ls3f{letter-spacing:0.024533pt;}
.ls50{letter-spacing:0.029867pt;}
.ls3{letter-spacing:0.048000pt;}
.ls7{letter-spacing:0.096000pt;}
.ls1b{letter-spacing:0.120000pt;}
.ls35{letter-spacing:0.126933pt;}
.ls4{letter-spacing:0.144000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.214933pt;}
.ls2{letter-spacing:0.216000pt;}
.ls51{letter-spacing:0.239467pt;}
.ls1{letter-spacing:0.240000pt;}
.ls23{letter-spacing:0.260800pt;}
.ls5{letter-spacing:0.288000pt;}
.ls32{letter-spacing:0.310400pt;}
.ls33{letter-spacing:0.312000pt;}
.ls20{letter-spacing:0.325867pt;}
.ls13{letter-spacing:0.336000pt;}
.ls1d{letter-spacing:0.368000pt;}
.ls52{letter-spacing:0.379200pt;}
.ls0{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.408000pt;}
.ls6{letter-spacing:0.432000pt;}
.lsc{letter-spacing:0.456000pt;}
.lsb{letter-spacing:0.480000pt;}
.ls49{letter-spacing:0.525333pt;}
.ls3d{letter-spacing:0.528000pt;}
.ls8{letter-spacing:0.576000pt;}
.ls4f{letter-spacing:0.624000pt;}
.ls3e{letter-spacing:0.662933pt;}
.ls25{letter-spacing:0.672000pt;}
.ls15{letter-spacing:0.696000pt;}
.ls38{letter-spacing:0.816000pt;}
.ls2d{letter-spacing:0.864000pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls27{letter-spacing:1.008000pt;}
.ls36{letter-spacing:1.344000pt;}
.ls46{letter-spacing:1.440000pt;}
.ls18{letter-spacing:1.536000pt;}
.ls48{letter-spacing:1.920000pt;}
.ls4d{letter-spacing:2.544000pt;}
.ls2c{letter-spacing:2.688000pt;}
.ls44{letter-spacing:3.264000pt;}
.ls42{letter-spacing:3.360000pt;}
.ls43{letter-spacing:3.403733pt;}
.ls45{letter-spacing:3.504000pt;}
.ls47{letter-spacing:3.648000pt;}
.lse{letter-spacing:3.696000pt;}
.ls39{letter-spacing:3.744000pt;}
.ls2b{letter-spacing:4.080000pt;}
.ls37{letter-spacing:4.224000pt;}
.ls29{letter-spacing:4.272000pt;}
.ls2e{letter-spacing:4.320000pt;}
.ls26{letter-spacing:4.416000pt;}
.ls1e{letter-spacing:4.464000pt;}
.ls14{letter-spacing:4.508800pt;}
.ls4a{letter-spacing:4.848000pt;}
.ls41{letter-spacing:6.144000pt;}
.ws14{word-spacing:-12.768000pt;}
.ws19{word-spacing:-12.672000pt;}
.ws13{word-spacing:-12.336000pt;}
.ws31{word-spacing:-10.965333pt;}
.ws1{word-spacing:-8.736000pt;}
.ws55{word-spacing:-8.448000pt;}
.ws2{word-spacing:-7.191888pt;}
.ws51{word-spacing:-6.624000pt;}
.ws2f{word-spacing:-6.392789pt;}
.ws3a{word-spacing:-6.144000pt;}
.ws42{word-spacing:-4.848000pt;}
.ws1e{word-spacing:-4.464000pt;}
.ws21{word-spacing:-4.416000pt;}
.ws29{word-spacing:-4.320000pt;}
.ws24{word-spacing:-4.272000pt;}
.ws33{word-spacing:-4.224000pt;}
.ws26{word-spacing:-4.080000pt;}
.ws35{word-spacing:-3.744000pt;}
.wse{word-spacing:-3.696000pt;}
.ws40{word-spacing:-3.648000pt;}
.ws3e{word-spacing:-3.504000pt;}
.ws3b{word-spacing:-3.360000pt;}
.ws3d{word-spacing:-3.264000pt;}
.ws27{word-spacing:-2.688000pt;}
.ws45{word-spacing:-2.544000pt;}
.ws41{word-spacing:-1.920000pt;}
.ws1a{word-spacing:-1.536000pt;}
.ws3f{word-spacing:-1.440000pt;}
.ws32{word-spacing:-1.344000pt;}
.ws22{word-spacing:-1.008000pt;}
.ws1c{word-spacing:-0.960000pt;}
.ws28{word-spacing:-0.864000pt;}
.ws34{word-spacing:-0.816000pt;}
.ws18{word-spacing:-0.720000pt;}
.ws20{word-spacing:-0.672000pt;}
.ws54{word-spacing:-0.624000pt;}
.wsb{word-spacing:-0.576000pt;}
.ws39{word-spacing:-0.528000pt;}
.wsc{word-spacing:-0.480000pt;}
.ws9{word-spacing:-0.432000pt;}
.ws4{word-spacing:-0.384000pt;}
.ws15{word-spacing:-0.336000pt;}
.ws8{word-spacing:-0.288000pt;}
.ws5{word-spacing:-0.240000pt;}
.wsd{word-spacing:-0.192000pt;}
.ws7{word-spacing:-0.144000pt;}
.wsa{word-spacing:-0.096000pt;}
.ws0{word-spacing:-0.069333pt;}
.ws6{word-spacing:-0.048000pt;}
.ws52{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws44{word-spacing:0.096000pt;}
.ws56{word-spacing:0.144000pt;}
.ws10{word-spacing:0.192000pt;}
.wsf{word-spacing:0.240000pt;}
.ws1b{word-spacing:0.288000pt;}
.ws23{word-spacing:0.336000pt;}
.ws1d{word-spacing:0.384000pt;}
.ws2c{word-spacing:0.432000pt;}
.ws2b{word-spacing:0.480000pt;}
.ws43{word-spacing:0.816000pt;}
.ws4c{word-spacing:0.853333pt;}
.ws17{word-spacing:1.152000pt;}
.ws25{word-spacing:1.200000pt;}
.ws1f{word-spacing:1.248000pt;}
.ws2a{word-spacing:1.440000pt;}
.ws38{word-spacing:1.536000pt;}
.ws37{word-spacing:1.584000pt;}
.ws12{word-spacing:1.776000pt;}
.ws16{word-spacing:2.112000pt;}
.ws11{word-spacing:2.160000pt;}
.ws36{word-spacing:2.544000pt;}
.ws4e{word-spacing:28.841067pt;}
.ws3c{word-spacing:32.064000pt;}
.ws46{word-spacing:36.365333pt;}
.ws49{word-spacing:39.408533pt;}
.ws4f{word-spacing:103.038933pt;}
.ws50{word-spacing:148.393600pt;}
.ws4d{word-spacing:168.275733pt;}
.ws2d{word-spacing:210.244800pt;}
.ws48{word-spacing:217.782933pt;}
.ws2e{word-spacing:314.692800pt;}
.ws47{word-spacing:338.385600pt;}
.ws30{word-spacing:420.519467pt;}
.ws4b{word-spacing:1321.191467pt;}
.ws4a{word-spacing:1403.196800pt;}
.ws53{word-spacing:1495.582933pt;}
._2{margin-left:-12.338133pt;}
._44{margin-left:-10.854400pt;}
._3{margin-left:-4.374933pt;}
._a{margin-left:-3.082667pt;}
._1{margin-left:-2.169600pt;}
._4{margin-left:-1.046933pt;}
._0{width:1.493333pt;}
._5{width:2.414400pt;}
._7{width:3.475200pt;}
._6{width:4.473600pt;}
._8{width:5.846400pt;}
._c{width:7.128000pt;}
._b{width:20.534400pt;}
._27{width:21.672000pt;}
._9{width:25.728000pt;}
._26{width:30.009600pt;}
._16{width:31.545600pt;}
._d{width:36.153600pt;}
._2a{width:38.697600pt;}
._19{width:40.731200pt;}
._3c{width:43.152533pt;}
._12{width:49.703467pt;}
._1b{width:61.709867pt;}
._30{width:62.804267pt;}
._3d{width:67.678933pt;}
._3a{width:73.457067pt;}
._17{width:83.768533pt;}
._32{width:93.907200pt;}
._18{width:97.307200pt;}
._35{width:98.886400pt;}
._1a{width:104.773867pt;}
._38{width:106.676267pt;}
._31{width:117.154133pt;}
._41{width:143.182933pt;}
._29{width:155.781867pt;}
._2f{width:159.315733pt;}
._40{width:177.785600pt;}
._14{width:181.671467pt;}
._2b{width:196.287467pt;}
._15{width:201.895467pt;}
._37{width:207.993600pt;}
._36{width:233.268267pt;}
._28{width:238.815467pt;}
._2d{width:250.025067pt;}
._2c{width:258.642133pt;}
._43{width:268.152000pt;}
._22{width:292.722133pt;}
._10{width:320.862933pt;}
._13{width:328.500267pt;}
._11{width:341.086933pt;}
._39{width:382.372267pt;}
._42{width:427.288533pt;}
._2e{width:431.441600pt;}
._3e{width:435.662933pt;}
._e{width:456.841600pt;}
._25{width:459.154133pt;}
._3b{width:465.874133pt;}
._3f{width:531.830400pt;}
._23{width:556.775467pt;}
._33{width:564.283733pt;}
._f{width:582.622933pt;}
._34{width:610.340267pt;}
._1e{width:732.231467pt;}
._24{width:855.356800pt;}
._1d{width:1015.783467pt;}
._21{width:1031.612800pt;}
._20{width:1042.876800pt;}
._1f{width:1055.591467pt;}
._1c{width:1112.082133pt;}
.fs5{font-size:24.874667pt;}
.fs4{font-size:27.984000pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.542667pt;}
.y48{bottom:67.653467pt;}
.y26{bottom:67.653600pt;}
.ydd{bottom:71.259333pt;}
.y88{bottom:71.309200pt;}
.y11f{bottom:72.253467pt;}
.y13a{bottom:72.294533pt;}
.y127{bottom:72.649067pt;}
.y198{bottom:73.001333pt;}
.y149{bottom:75.099600pt;}
.y175{bottom:75.561733pt;}
.yb2{bottom:75.973867pt;}
.ydc{bottom:83.259333pt;}
.y87{bottom:83.309200pt;}
.y47{bottom:83.653467pt;}
.y25{bottom:83.653600pt;}
.y11e{bottom:84.253467pt;}
.y139{bottom:84.294533pt;}
.y148{bottom:87.099600pt;}
.y174{bottom:87.561733pt;}
.yb1{bottom:87.973867pt;}
.y126{bottom:91.435600pt;}
.y197{bottom:94.423733pt;}
.ydb{bottom:95.259333pt;}
.y86{bottom:95.309200pt;}
.y11d{bottom:96.253467pt;}
.y138{bottom:96.294533pt;}
.y147{bottom:99.099600pt;}
.y173{bottom:99.561733pt;}
.y46{bottom:99.653467pt;}
.y24{bottom:99.653600pt;}
.yb0{bottom:99.973867pt;}
.y196{bottom:106.423733pt;}
.yda{bottom:107.259333pt;}
.y85{bottom:107.309200pt;}
.y11c{bottom:108.253467pt;}
.y137{bottom:108.294533pt;}
.y125{bottom:110.222000pt;}
.y146{bottom:111.099600pt;}
.y172{bottom:111.561733pt;}
.yaf{bottom:111.973867pt;}
.y23{bottom:115.653600pt;}
.yd9{bottom:119.259333pt;}
.y136{bottom:120.294533pt;}
.y145{bottom:123.099600pt;}
.y171{bottom:123.561733pt;}
.y84{bottom:125.717600pt;}
.y11b{bottom:127.786133pt;}
.y195{bottom:127.846267pt;}
.y124{bottom:129.008400pt;}
.yae{bottom:130.760267pt;}
.yd8{bottom:131.259333pt;}
.y45{bottom:131.653467pt;}
.y22{bottom:131.653600pt;}
.y144{bottom:135.099600pt;}
.y83{bottom:137.717600pt;}
.y11a{bottom:139.786133pt;}
.y135{bottom:139.827200pt;}
.y194{bottom:139.846267pt;}
.y170{bottom:142.348133pt;}
.y143{bottom:147.099600pt;}
.y44{bottom:147.653467pt;}
.y21{bottom:147.653600pt;}
.y123{bottom:147.855600pt;}
.yad{bottom:149.607467pt;}
.y82{bottom:149.717600pt;}
.y7f{bottom:150.463867pt;}
.yd7{bottom:151.368533pt;}
.y119{bottom:151.786133pt;}
.y134{bottom:151.827200pt;}
.y16f{bottom:154.348133pt;}
.y193{bottom:161.268667pt;}
.y81{bottom:161.717600pt;}
.y7e{bottom:162.463867pt;}
.yd6{bottom:163.368533pt;}
.y20{bottom:163.653600pt;}
.y133{bottom:163.827200pt;}
.y142{bottom:165.886000pt;}
.y16e{bottom:166.348133pt;}
.y122{bottom:167.458533pt;}
.yac{bottom:169.140133pt;}
.y118{bottom:171.318800pt;}
.y192{bottom:173.268667pt;}
.y80{bottom:173.717600pt;}
.y7d{bottom:174.463867pt;}
.yd5{bottom:175.368533pt;}
.y132{bottom:175.827200pt;}
.y141{bottom:177.886000pt;}
.y16d{bottom:178.348133pt;}
.y1f{bottom:179.653600pt;}
.y117{bottom:183.318800pt;}
.yab{bottom:183.806800pt;}
.yd4{bottom:187.368533pt;}
.y121{bottom:187.439600pt;}
.y131{bottom:187.827200pt;}
.y140{bottom:189.886000pt;}
.y16c{bottom:190.348133pt;}
.y7c{bottom:192.872400pt;}
.y191{bottom:194.691067pt;}
.y1b4{bottom:195.001867pt;}
.y116{bottom:195.318800pt;}
.y43{bottom:195.653467pt;}
.y1e{bottom:195.653600pt;}
.yd3{bottom:199.368533pt;}
.y13f{bottom:201.886000pt;}
.y7b{bottom:204.872400pt;}
.y1b3{bottom:207.001867pt;}
.y130{bottom:207.359867pt;}
.y120{bottom:207.420533pt;}
.y16b{bottom:209.880933pt;}
.yd2{bottom:211.368533pt;}
.y42{bottom:211.653467pt;}
.y1d{bottom:211.653600pt;}
.y115{bottom:214.851467pt;}
.y190{bottom:216.113600pt;}
.y7a{bottom:216.872400pt;}
.y1b2{bottom:219.001867pt;}
.y13e{bottom:221.418667pt;}
.y16a{bottom:221.880933pt;}
.y114{bottom:226.851467pt;}
.y12f{bottom:226.892533pt;}
.y41{bottom:227.653467pt;}
.y1c{bottom:227.653600pt;}
.y18f{bottom:228.113600pt;}
.y79{bottom:228.872400pt;}
.yd1{bottom:232.224133pt;}
.y169{bottom:233.880933pt;}
.yaa{bottom:236.638667pt;}
.y113{bottom:238.851467pt;}
.y13d{bottom:240.265867pt;}
.y1b1{bottom:240.424267pt;}
.y78{bottom:240.872400pt;}
.y40{bottom:243.653467pt;}
.y1b{bottom:243.653600pt;}
.yd0{bottom:244.224133pt;}
.y168{bottom:245.880933pt;}
.ya9{bottom:248.638667pt;}
.y18e{bottom:249.536000pt;}
.y13c{bottom:252.265867pt;}
.y1b0{bottom:252.424267pt;}
.y77{bottom:252.872400pt;}
.ycf{bottom:256.224133pt;}
.y112{bottom:258.384133pt;}
.y3f{bottom:259.653467pt;}
.y1a{bottom:259.653600pt;}
.ya8{bottom:260.638667pt;}
.y18d{bottom:261.536000pt;}
.y1af{bottom:264.424267pt;}
.y76{bottom:264.872400pt;}
.y167{bottom:265.413600pt;}
.yce{bottom:268.224133pt;}
.y111{bottom:270.384133pt;}
.y13b{bottom:271.112933pt;}
.yfb{bottom:274.528400pt;}
.y3e{bottom:275.653467pt;}
.y19{bottom:275.653600pt;}
.y75{bottom:276.872400pt;}
.y166{bottom:277.413600pt;}
.ya7{bottom:279.793467pt;}
.ycd{bottom:280.224133pt;}
.y110{bottom:282.384133pt;}
.y18c{bottom:282.958533pt;}
.y1ae{bottom:285.846800pt;}
.yfa{bottom:286.528400pt;}
.y74{bottom:288.872400pt;}
.y165{bottom:289.413600pt;}
.y3d{bottom:291.653467pt;}
.y18{bottom:291.653600pt;}
.ya6{bottom:291.793467pt;}
.y18b{bottom:294.958533pt;}
.y1ad{bottom:297.846800pt;}
.yf9{bottom:298.528400pt;}
.y73{bottom:300.872400pt;}
.ycc{bottom:301.079600pt;}
.y164{bottom:301.413600pt;}
.y10f{bottom:301.916933pt;}
.ya5{bottom:303.793467pt;}
.y3c{bottom:307.653467pt;}
.y17{bottom:307.653600pt;}
.y1ac{bottom:309.846800pt;}
.yf8{bottom:310.528400pt;}
.y72{bottom:312.872400pt;}
.ycb{bottom:313.079600pt;}
.y10e{bottom:313.916933pt;}
.ya4{bottom:315.793467pt;}
.y18a{bottom:316.380933pt;}
.y163{bottom:320.946267pt;}
.yf7{bottom:322.528400pt;}
.y3b{bottom:323.653467pt;}
.y16{bottom:323.653600pt;}
.y71{bottom:324.872400pt;}
.yca{bottom:325.079600pt;}
.y10d{bottom:325.916933pt;}
.ya3{bottom:327.793467pt;}
.y189{bottom:328.380933pt;}
.y1ab{bottom:331.269200pt;}
.y162{bottom:332.946267pt;}
.y70{bottom:336.872400pt;}
.yc9{bottom:337.079600pt;}
.y10c{bottom:337.916933pt;}
.y3a{bottom:339.653467pt;}
.y15{bottom:339.653600pt;}
.ya2{bottom:339.793467pt;}
.yf6{bottom:341.683200pt;}
.y1aa{bottom:343.269200pt;}
.y161{bottom:344.946267pt;}
.y6f{bottom:348.872400pt;}
.yc8{bottom:349.079600pt;}
.y188{bottom:349.803333pt;}
.yf5{bottom:353.683200pt;}
.y1a9{bottom:355.269200pt;}
.y39{bottom:355.653467pt;}
.y14{bottom:355.653600pt;}
.y160{bottom:356.946267pt;}
.y10b{bottom:357.449600pt;}
.ya1{bottom:358.948133pt;}
.y6e{bottom:360.872400pt;}
.y187{bottom:361.803333pt;}
.yf4{bottom:365.683200pt;}
.y10a{bottom:369.449600pt;}
.yc7{bottom:369.935200pt;}
.ya0{bottom:370.948133pt;}
.y38{bottom:371.653467pt;}
.y13{bottom:371.653600pt;}
.y6d{bottom:372.872400pt;}
.y15f{bottom:376.478933pt;}
.y1a8{bottom:376.691600pt;}
.yf3{bottom:377.683200pt;}
.y109{bottom:381.449600pt;}
.yc6{bottom:381.935200pt;}
.y9f{bottom:382.948133pt;}
.y186{bottom:383.225867pt;}
.y6c{bottom:384.872400pt;}
.y37{bottom:387.653467pt;}
.y12{bottom:387.653600pt;}
.y15e{bottom:388.478933pt;}
.yf2{bottom:389.683200pt;}
.yc5{bottom:393.935200pt;}
.y9e{bottom:394.948133pt;}
.y6b{bottom:396.872400pt;}
.y1a7{bottom:398.114133pt;}
.y15d{bottom:400.478933pt;}
.y108{bottom:400.982267pt;}
.yf1{bottom:401.683200pt;}
.y36{bottom:403.653467pt;}
.y11{bottom:403.653600pt;}
.y185{bottom:404.648267pt;}
.yc4{bottom:405.935200pt;}
.y9d{bottom:406.948133pt;}
.y6a{bottom:408.872400pt;}
.y15c{bottom:412.478933pt;}
.y107{bottom:412.982267pt;}
.yc3{bottom:417.935200pt;}
.y9c{bottom:418.948133pt;}
.y35{bottom:419.653467pt;}
.y10{bottom:419.653600pt;}
.yf0{bottom:420.837867pt;}
.y69{bottom:420.872400pt;}
.y15b{bottom:424.478933pt;}
.y106{bottom:424.982267pt;}
.yc2{bottom:429.935200pt;}
.y9b{bottom:430.948133pt;}
.yef{bottom:432.837867pt;}
.y68{bottom:432.872400pt;}
.y34{bottom:435.653467pt;}
.yf{bottom:435.653600pt;}
.y9a{bottom:442.948133pt;}
.y15a{bottom:444.011600pt;}
.y105{bottom:444.514933pt;}
.yee{bottom:444.837867pt;}
.y1a6{bottom:445.654667pt;}
.yc1{bottom:450.790667pt;}
.y33{bottom:451.653467pt;}
.ye{bottom:451.653600pt;}
.y67{bottom:452.027067pt;}
.y184{bottom:452.188800pt;}
.y99{bottom:454.948133pt;}
.y159{bottom:456.011600pt;}
.y104{bottom:456.514933pt;}
.yed{bottom:456.837867pt;}
.yc0{bottom:462.790667pt;}
.y66{bottom:464.027067pt;}
.y98{bottom:466.948133pt;}
.y1a5{bottom:467.077067pt;}
.y32{bottom:467.653467pt;}
.yd{bottom:467.653600pt;}
.y158{bottom:468.011600pt;}
.y103{bottom:468.514933pt;}
.yec{bottom:468.837867pt;}
.y183{bottom:472.925733pt;}
.ybf{bottom:474.790667pt;}
.y97{bottom:478.948133pt;}
.y1a4{bottom:479.077067pt;}
.y157{bottom:480.011600pt;}
.y102{bottom:480.514933pt;}
.yeb{bottom:480.837867pt;}
.y65{bottom:483.181867pt;}
.y31{bottom:483.653467pt;}
.y57{bottom:483.653600pt;}
.y182{bottom:484.925733pt;}
.ybe{bottom:486.790667pt;}
.y96{bottom:490.948133pt;}
.y156{bottom:492.011600pt;}
.y64{bottom:495.181867pt;}
.ybd{bottom:498.790667pt;}
.yc{bottom:499.653600pt;}
.yea{bottom:499.992667pt;}
.y101{bottom:500.047600pt;}
.y1a3{bottom:500.499600pt;}
.y155{bottom:504.011600pt;}
.y181{bottom:505.601867pt;}
.y63{bottom:507.181867pt;}
.y95{bottom:510.102800pt;}
.ye9{bottom:511.992667pt;}
.y100{bottom:512.047600pt;}
.y3{bottom:513.850667pt;}
.y28{bottom:514.009467pt;}
.y56{bottom:515.653600pt;}
.y154{bottom:516.011600pt;}
.y180{bottom:517.601867pt;}
.y62{bottom:519.181867pt;}
.ybc{bottom:519.646133pt;}
.y1a2{bottom:521.922000pt;}
.y94{bottom:522.102800pt;}
.ye8{bottom:523.992667pt;}
.yff{bottom:524.047600pt;}
.y61{bottom:531.181867pt;}
.ybb{bottom:531.646133pt;}
.y30{bottom:531.653467pt;}
.y55{bottom:531.653600pt;}
.y1a1{bottom:533.922000pt;}
.y93{bottom:534.102800pt;}
.y153{bottom:535.544267pt;}
.ye7{bottom:535.992667pt;}
.y17f{bottom:538.278133pt;}
.yb{bottom:538.905467pt;}
.yfe{bottom:543.580267pt;}
.yba{bottom:543.646133pt;}
.y92{bottom:546.102800pt;}
.y152{bottom:547.544267pt;}
.y2f{bottom:547.653467pt;}
.y54{bottom:547.653600pt;}
.ye6{bottom:547.992667pt;}
.y17e{bottom:550.278133pt;}
.y60{bottom:550.336533pt;}
.ya{bottom:554.905467pt;}
.y1a0{bottom:555.344533pt;}
.yfd{bottom:555.580267pt;}
.yb9{bottom:555.646133pt;}
.y91{bottom:558.102800pt;}
.y151{bottom:559.544267pt;}
.ye5{bottom:559.992667pt;}
.y5f{bottom:562.336533pt;}
.y12e{bottom:562.596000pt;}
.y2e{bottom:563.653467pt;}
.y53{bottom:563.653600pt;}
.y19f{bottom:567.344533pt;}
.yb8{bottom:567.646133pt;}
.y9{bottom:570.905467pt;}
.y17d{bottom:570.954400pt;}
.y150{bottom:571.544267pt;}
.y5e{bottom:574.336533pt;}
.yfc{bottom:575.112933pt;}
.y90{bottom:577.257600pt;}
.ye4{bottom:579.147333pt;}
.yb7{bottom:579.646133pt;}
.y52{bottom:579.653600pt;}
.y12d{bottom:581.443200pt;}
.y17c{bottom:582.954400pt;}
.y14f{bottom:583.544267pt;}
.y5d{bottom:586.336533pt;}
.y8{bottom:586.905467pt;}
.y19e{bottom:588.766933pt;}
.y8f{bottom:589.257600pt;}
.y176{bottom:591.077067pt;}
.ye3{bottom:591.147333pt;}
.y2d{bottom:595.653467pt;}
.y51{bottom:595.653600pt;}
.y12c{bottom:600.229600pt;}
.yb6{bottom:600.501733pt;}
.y19d{bottom:600.766933pt;}
.y8e{bottom:601.257600pt;}
.y14e{bottom:603.077067pt;}
.ye2{bottom:603.147333pt;}
.y17b{bottom:603.630533pt;}
.y5c{bottom:605.491333pt;}
.y50{bottom:611.653600pt;}
.yb5{bottom:612.501733pt;}
.y8d{bottom:613.257600pt;}
.y14d{bottom:615.077067pt;}
.ye1{bottom:615.147333pt;}
.y17a{bottom:615.630533pt;}
.y5b{bottom:617.491333pt;}
.y12b{bottom:619.016000pt;}
.y19c{bottom:622.189333pt;}
.yb4{bottom:624.501733pt;}
.y8c{bottom:625.257600pt;}
.y2{bottom:626.240133pt;}
.y14c{bottom:627.077067pt;}
.ye0{bottom:627.147333pt;}
.y2c{bottom:627.653467pt;}
.y4f{bottom:627.653600pt;}
.y19b{bottom:634.189333pt;}
.y179{bottom:636.306667pt;}
.yb3{bottom:636.501733pt;}
.y8b{bottom:637.257600pt;}
.y5a{bottom:637.590933pt;}
.y12a{bottom:637.802400pt;}
.y14b{bottom:639.077067pt;}
.ydf{bottom:639.147333pt;}
.y2b{bottom:643.653467pt;}
.y4e{bottom:643.653600pt;}
.y19a{bottom:655.611867pt;}
.y178{bottom:656.982933pt;}
.y8a{bottom:657.357200pt;}
.y7{bottom:657.568533pt;}
.y129{bottom:657.594400pt;}
.y59{bottom:657.690533pt;}
.yde{bottom:658.302133pt;}
.y14a{bottom:658.609733pt;}
.y2a{bottom:659.653467pt;}
.y4d{bottom:659.653600pt;}
.y6{bottom:669.568533pt;}
.y29{bottom:675.653467pt;}
.y4c{bottom:675.653600pt;}
.y199{bottom:677.034267pt;}
.y89{bottom:677.456933pt;}
.y177{bottom:677.719867pt;}
.y128{bottom:677.764400pt;}
.y58{bottom:677.790267pt;}
.y5{bottom:681.568533pt;}
.y4b{bottom:698.225733pt;}
.y4{bottom:707.968533pt;}
.y27{bottom:708.220400pt;}
.y4a{bottom:708.892400pt;}
.y49{bottom:719.559067pt;}
.h5{height:30.202667pt;}
.ha{height:32.512000pt;}
.h2{height:34.048000pt;}
.h9{height:34.517333pt;}
.h8{height:36.576000pt;}
.hb{height:37.190272pt;}
.h6{height:38.304000pt;}
.h4{height:38.832000pt;}
.h7{height:41.839056pt;}
.h3{height:55.328000pt;}
.hc{height:80.512000pt;}
.h0{height:755.905333pt;}
.h1{height:756.000000pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.xc{left:32.086667pt;}
.x9{left:56.692933pt;}
.x11{left:60.472400pt;}
.x28{left:63.004667pt;}
.x26{left:69.354267pt;}
.xa{left:75.590533pt;}
.x27{left:83.149600pt;}
.x19{left:86.929200pt;}
.x7{left:88.397200pt;}
.x2{left:90.412533pt;}
.xd{left:93.304267pt;}
.x8{left:94.488267pt;}
.xe{left:138.940800pt;}
.x12{left:147.401600pt;}
.x1f{left:162.519733pt;}
.xf{left:165.089600pt;}
.xb{left:168.119067pt;}
.x14{left:173.858267pt;}
.x1b{left:200.314933pt;}
.x24{left:204.094533pt;}
.x16{left:222.992133pt;}
.x20{left:230.551200pt;}
.x5{left:243.867867pt;}
.x22{left:253.228400pt;}
.x10{left:269.375867pt;}
.x1{left:271.493067pt;}
.x6{left:287.727333pt;}
.x1a{left:294.803200pt;}
.x13{left:298.582667pt;}
.x15{left:325.039333pt;}
.x17{left:336.378000pt;}
.x4{left:341.293600pt;}
.x21{left:343.937067pt;}
.x25{left:347.716533pt;}
.x1c{left:370.393733pt;}
.x18{left:377.952800pt;}
.x1d{left:389.291333pt;}
.x1e{left:434.645733pt;}
.x23{left:457.322800pt;}
.x3{left:526.448800pt;}
}




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