
    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_befa7807741c3458aa887f14.woff')format("woff");}.ff1{font-family:ff1;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_708292c9dcb99864d437bb53.woff')format("woff");}.ff2{font-family:ff2;line-height:1.047852;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_bd2c18f979336c922ca28534.woff')format("woff");}.ff3{font-family:ff3;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f89b277d2972269ced7a056b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.047852;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_0efe560dda05f015d871f74a.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_f75ba0eb7f145014df5658a5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_852cff9076eb312e5b65a1b1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-24.000000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.960000px;}
.v1{vertical-align:24.000000px;}
.ls38{letter-spacing:-1.350000px;}
.ls24{letter-spacing:-0.822000px;}
.ls12{letter-spacing:-0.798000px;}
.ls22{letter-spacing:-0.744000px;}
.ls16{letter-spacing:-0.666000px;}
.ls11{letter-spacing:-0.624000px;}
.ls18{letter-spacing:-0.600000px;}
.ls2d{letter-spacing:-0.588000px;}
.ls3c{letter-spacing:-0.576000px;}
.ls10{letter-spacing:-0.472800px;}
.ls13{letter-spacing:-0.439200px;}
.lse{letter-spacing:-0.400800px;}
.ls29{letter-spacing:-0.396000px;}
.ls2f{letter-spacing:-0.385200px;}
.ls33{letter-spacing:-0.358800px;}
.ls4c{letter-spacing:-0.348000px;}
.ls1b{letter-spacing:-0.324000px;}
.ls2e{letter-spacing:-0.288000px;}
.ls3e{letter-spacing:-0.276000px;}
.ls2c{letter-spacing:-0.258000px;}
.ls2a{letter-spacing:-0.252000px;}
.lsb{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.210000px;}
.ls1c{letter-spacing:-0.174000px;}
.ls4a{letter-spacing:-0.150000px;}
.ls5{letter-spacing:-0.120000px;}
.ls31{letter-spacing:-0.051300px;}
.ls23{letter-spacing:-0.048000px;}
.ls15{letter-spacing:-0.019200px;}
.ls4{letter-spacing:0.000000px;}
.ls4d{letter-spacing:0.018000px;}
.ls40{letter-spacing:0.024000px;}
.ls25{letter-spacing:0.048000px;}
.ls3a{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.084000px;}
.ls6{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.138000px;}
.ls32{letter-spacing:0.145800px;}
.ls35{letter-spacing:0.148200px;}
.ls14{letter-spacing:0.154800px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.192000px;}
.ls17{letter-spacing:0.213600px;}
.ls1f{letter-spacing:0.222000px;}
.ls19{letter-spacing:0.262200px;}
.ls3f{letter-spacing:0.270000px;}
.ls3d{letter-spacing:0.342000px;}
.ls2b{letter-spacing:0.348000px;}
.lsd{letter-spacing:0.400800px;}
.ls8{letter-spacing:0.456000px;}
.ls27{letter-spacing:0.516000px;}
.ls36{letter-spacing:0.516600px;}
.ls37{letter-spacing:0.525000px;}
.ls30{letter-spacing:0.533400px;}
.ls28{letter-spacing:0.534000px;}
.lsf{letter-spacing:0.536400px;}
.ls20{letter-spacing:0.546000px;}
.lsc{letter-spacing:0.578400px;}
.ls1d{letter-spacing:0.588000px;}
.ls26{letter-spacing:0.600000px;}
.ls1e{letter-spacing:0.612000px;}
.ls34{letter-spacing:0.618000px;}
.ls4b{letter-spacing:0.960000px;}
.ls46{letter-spacing:12.912000px;}
.ls49{letter-spacing:14.052000px;}
.ls4e{letter-spacing:16.452000px;}
.ls48{letter-spacing:18.912000px;}
.ls47{letter-spacing:20.052000px;}
.ls39{letter-spacing:29.160000px;}
.ls41{letter-spacing:39.252000px;}
.ls42{letter-spacing:40.452000px;}
.ls45{letter-spacing:41.652000px;}
.ls43{letter-spacing:42.852000px;}
.ls3b{letter-spacing:46.452000px;}
.ls44{letter-spacing:48.852000px;}
.lsa{letter-spacing:94.273200px;}
.ls21{letter-spacing:111.241050px;}
.ls0{letter-spacing:189.312000px;}
.ls1a{letter-spacing:228.018000px;}
.sc_{text-shadow:none;}
.sc7{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.sc8{text-shadow:-0.015em 0 rgb(0,176,240),0 0.015em rgb(0,176,240),0.015em 0 rgb(0,176,240),0 -0.015em  rgb(0,176,240);}
.sc3{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc5{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc2{text-shadow:-0.015em 0 rgb(45,116,181),0 0.015em rgb(45,116,181),0.015em 0 rgb(45,116,181),0 -0.015em  rgb(45,116,181);}
.sc6{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc4{text-shadow:-0.015em 0 rgb(217,217,217),0 0.015em rgb(217,217,217),0.015em 0 rgb(217,217,217),0 -0.015em  rgb(217,217,217);}
.sc1{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.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;}
.sc7{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc8{-webkit-text-stroke:0.015em rgb(0,176,240);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(45,116,181);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(217,217,217);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-66.000000px;}
.ws1{word-spacing:-21.060000px;}
.ws37{word-spacing:-13.482000px;}
.ws20{word-spacing:-13.470000px;}
.ws22{word-spacing:-13.404000px;}
.ws21{word-spacing:-13.386000px;}
.ws8{word-spacing:-13.326000px;}
.ws25{word-spacing:-13.218000px;}
.ws32{word-spacing:-13.212000px;}
.ws34{word-spacing:-13.140000px;}
.ws1f{word-spacing:-13.008000px;}
.ws9{word-spacing:-12.954000px;}
.ws1e{word-spacing:-12.918000px;}
.ws35{word-spacing:-12.894000px;}
.ws3a{word-spacing:-12.888000px;}
.ws0{word-spacing:-12.870000px;}
.ws1c{word-spacing:-12.822000px;}
.ws38{word-spacing:-12.720000px;}
.ws24{word-spacing:-12.618000px;}
.ws26{word-spacing:-12.612000px;}
.ws33{word-spacing:-12.594000px;}
.ws36{word-spacing:-12.546000px;}
.ws39{word-spacing:-12.522000px;}
.ws23{word-spacing:-12.474000px;}
.ws13{word-spacing:-12.402000px;}
.ws31{word-spacing:-12.294000px;}
.ws1b{word-spacing:-12.126000px;}
.ws1d{word-spacing:-12.048000px;}
.ws5{word-spacing:-11.820000px;}
.ws3{word-spacing:-11.700000px;}
.ws4{word-spacing:-11.580000px;}
.ws30{word-spacing:-10.559250px;}
.ws14{word-spacing:-10.530000px;}
.ws2{word-spacing:-8.190000px;}
.ws7{word-spacing:0.000000px;}
.ws12{word-spacing:51.451200px;}
.wsd{word-spacing:62.961600px;}
.wse{word-spacing:63.729600px;}
.ws11{word-spacing:64.792800px;}
.wsc{word-spacing:66.369600px;}
.ws10{word-spacing:66.864000px;}
.wsb{word-spacing:66.966000px;}
.wsa{word-spacing:67.101600px;}
.wsf{word-spacing:68.865600px;}
.ws2f{word-spacing:71.551800px;}
.ws2e{word-spacing:83.808300px;}
.ws28{word-spacing:84.555300px;}
.ws2a{word-spacing:84.670350px;}
.ws2c{word-spacing:86.338650px;}
.ws2b{word-spacing:86.399400px;}
.ws29{word-spacing:86.684400px;}
.ws27{word-spacing:87.832500px;}
.ws2d{word-spacing:88.085100px;}
.ws19{word-spacing:182.046000px;}
.ws18{word-spacing:192.132000px;}
.ws1a{word-spacing:199.182000px;}
.ws15{word-spacing:202.044000px;}
.ws17{word-spacing:203.556000px;}
.ws16{word-spacing:203.724000px;}
._2b{margin-left:-7.644000px;}
._a{margin-left:-3.504000px;}
._4{margin-left:-2.460000px;}
._3{margin-left:-1.320000px;}
._0{width:1.500000px;}
._2{width:2.730000px;}
._1{width:4.200000px;}
._f{width:5.412000px;}
._e{width:6.660000px;}
._d{width:7.788000px;}
._c{width:9.324000px;}
._b{width:11.088000px;}
._8{width:14.520000px;}
._9{width:15.576000px;}
._1c{width:17.640000px;}
._1b{width:18.810000px;}
._10{width:20.592000px;}
._11{width:21.912000px;}
._29{width:23.628000px;}
._7{width:24.726000px;}
._20{width:26.286000px;}
._21{width:27.564000px;}
._1e{width:28.800000px;}
._1f{width:29.898000px;}
._24{width:31.020000px;}
._1d{width:32.184000px;}
._6{width:33.540000px;}
._1a{width:34.656000px;}
._36{width:36.828000px;}
._19{width:38.214000px;}
._18{width:39.996000px;}
._12{width:41.928000px;}
._13{width:44.046000px;}
._14{width:45.342000px;}
._25{width:46.530000px;}
._15{width:47.670000px;}
._16{width:49.170000px;}
._3b{width:51.612000px;}
._22{width:55.968000px;}
._23{width:57.618000px;}
._3a{width:59.496000px;}
._31{width:60.588000px;}
._32{width:62.010000px;}
._3c{width:63.096000px;}
._47{width:64.482000px;}
._46{width:65.916000px;}
._35{width:67.956000px;}
._33{width:69.102000px;}
._34{width:70.368000px;}
._17{width:73.014000px;}
._28{width:76.002000px;}
._3d{width:79.794000px;}
._5{width:86.970000px;}
._39{width:93.720000px;}
._38{width:94.776000px;}
._26{width:98.076000px;}
._27{width:99.102000px;}
._44{width:101.232000px;}
._43{width:102.564000px;}
._2f{width:118.506000px;}
._2e{width:119.880000px;}
._30{width:122.364000px;}
._2d{width:124.026000px;}
._2c{width:125.460000px;}
._2a{width:129.816000px;}
._37{width:131.526000px;}
._42{width:134.958000px;}
._41{width:136.566000px;}
._4c{width:233.040000px;}
._4a{width:269.562000px;}
._49{width:271.134000px;}
._48{width:285.588000px;}
._40{width:405.234000px;}
._3f{width:412.830000px;}
._3e{width:413.952000px;}
._4b{width:750.750000px;}
._45{width:921.690000px;}
.fc8{color:rgb(17,85,204);}
.fc6{color:rgb(0,32,96);}
.fc7{color:rgb(0,176,240);}
.fc3{color:rgb(192,0,0);}
.fc5{color:rgb(0,0,255);}
.fc2{color:rgb(45,116,181);}
.fc4{color:rgb(217,217,217);}
.fc1{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:39.600000px;}
.fs6{font-size:42.000000px;}
.fs2{font-size:54.000000px;}
.fsc{font-size:54.150000px;}
.fs8{font-size:60.000000px;}
.fsb{font-size:60.150000px;}
.fs9{font-size:63.600000px;}
.fsa{font-size:63.750000px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ydd{bottom:4.485000px;}
.yda{bottom:4.500000px;}
.yee{bottom:4.530000px;}
.ydc{bottom:16.800000px;}
.ydf{bottom:17.085000px;}
.yce{bottom:17.325000px;}
.y10b{bottom:17.595000px;}
.ya1{bottom:18.150000px;}
.yf1{bottom:30.015000px;}
.ye9{bottom:40.830000px;}
.yf0{bottom:50.115000px;}
.ye2{bottom:50.745000px;}
.ycd{bottom:56.580000px;}
.y109{bottom:56.805000px;}
.y5{bottom:57.600000px;}
.ya0{bottom:59.700000px;}
.ye8{bottom:60.930000px;}
.y4{bottom:74.100000px;}
.yc5{bottom:79.050000px;}
.y105{bottom:79.305000px;}
.y95{bottom:83.445000px;}
.y3{bottom:91.200000px;}
.yb5{bottom:107.280000px;}
.yf7{bottom:111.630000px;}
.y179{bottom:112.237500px;}
.yc6{bottom:112.770000px;}
.y7c{bottom:113.137500px;}
.y83{bottom:115.875000px;}
.yba{bottom:116.745000px;}
.y96{bottom:116.850000px;}
.y198{bottom:117.637500px;}
.y1a6{bottom:119.137500px;}
.y89{bottom:119.625000px;}
.ybf{bottom:121.455000px;}
.y19e{bottom:121.537500px;}
.y33{bottom:121.837500px;}
.yf9{bottom:122.625000px;}
.y8f{bottom:123.405000px;}
.y9c{bottom:124.125000px;}
.y5f{bottom:126.637500px;}
.y150{bottom:127.837500px;}
.ycc{bottom:130.800000px;}
.y7b{bottom:132.037500px;}
.yb3{bottom:132.637500px;}
.y7d{bottom:133.200000px;}
.yfc{bottom:133.650000px;}
.y7e{bottom:134.025000px;}
.y129{bottom:134.137500px;}
.y106{bottom:134.400000px;}
.y178{bottom:135.337500px;}
.y197{bottom:141.037500px;}
.y10a{bottom:141.120000px;}
.y84{bottom:141.570000px;}
.y97{bottom:142.500000px;}
.y1a5{bottom:143.437500px;}
.yff{bottom:144.630000px;}
.y19d{bottom:144.637500px;}
.y32{bottom:144.937500px;}
.yc7{bottom:145.020000px;}
.y8a{bottom:145.305000px;}
.yf5{bottom:147.937500px;}
.y90{bottom:149.055000px;}
.y5e{bottom:150.045000px;}
.y14f{bottom:150.930000px;}
.yc0{bottom:153.705000px;}
.y102{bottom:155.670000px;}
.y128{bottom:157.245000px;}
.y177{bottom:158.430000px;}
.yef{bottom:164.430000px;}
.y196{bottom:165.330000px;}
.y1a4{bottom:166.545000px;}
.y85{bottom:167.205000px;}
.y31{bottom:168.045000px;}
.y98{bottom:168.195000px;}
.yb2{bottom:169.545000px;}
.y8b{bottom:170.955000px;}
.y5d{bottom:173.145000px;}
.y14e{bottom:174.330000px;}
.y91{bottom:174.750000px;}
.yb6{bottom:176.505000px;}
.yc8{bottom:177.270000px;}
.y127{bottom:180.345000px;}
.ybb{bottom:181.245000px;}
.y176{bottom:181.545000px;}
.yc1{bottom:185.955000px;}
.yf8{bottom:186.720000px;}
.yf4{bottom:186.930000px;}
.y1a3{bottom:189.645000px;}
.y195{bottom:189.930000px;}
.y30{bottom:191.130000px;}
.yb1{bottom:192.630000px;}
.y5c{bottom:196.230000px;}
.y14d{bottom:197.445000px;}
.yfa{bottom:197.700000px;}
.y126{bottom:203.745000px;}
.y175{bottom:204.945000px;}
.yfd{bottom:208.725000px;}
.yf3{bottom:209.445000px;}
.y107{bottom:209.475000px;}
.y7f{bottom:211.005000px;}
.y9d{bottom:211.350000px;}
.y9f{bottom:211.875000px;}
.y1a2{bottom:213.030000px;}
.y2f{bottom:214.245000px;}
.y81{bottom:214.800000px;}
.yb0{bottom:216.030000px;}
.y86{bottom:218.550000px;}
.y5b{bottom:219.330000px;}
.y99{bottom:219.525000px;}
.y100{bottom:219.750000px;}
.y14c{bottom:220.545000px;}
.y8c{bottom:222.300000px;}
.y92{bottom:226.095000px;}
.y125{bottom:226.830000px;}
.y174{bottom:228.045000px;}
.y103{bottom:230.745000px;}
.yf2{bottom:231.945000px;}
.y1a1{bottom:236.130000px;}
.y80{bottom:236.700000px;}
.y19c{bottom:237.345000px;}
.y2e{bottom:237.645000px;}
.yaf{bottom:239.130000px;}
.y82{bottom:240.450000px;}
.y9e{bottom:240.675000px;}
.yb7{bottom:241.020000px;}
.yc9{bottom:241.770000px;}
.y5a{bottom:242.745000px;}
.y14b{bottom:243.645000px;}
.y87{bottom:244.200000px;}
.y9a{bottom:245.175000px;}
.ybc{bottom:245.745000px;}
.y8d{bottom:247.995000px;}
.y124{bottom:249.945000px;}
.yc2{bottom:250.470000px;}
.y93{bottom:251.745000px;}
.y173{bottom:252.630000px;}
.ye7{bottom:256.245000px;}
.y1a0{bottom:259.245000px;}
.y2d{bottom:260.775000px;}
.yae{bottom:262.275000px;}
.y59{bottom:265.875000px;}
.y14a{bottom:266.775000px;}
.y88{bottom:269.880000px;}
.y9b{bottom:270.870000px;}
.yfb{bottom:272.805000px;}
.y123{bottom:273.075000px;}
.yb8{bottom:273.255000px;}
.y8e{bottom:273.630000px;}
.yca{bottom:274.005000px;}
.y172{bottom:276.975000px;}
.y94{bottom:277.425000px;}
.ybd{bottom:277.995000px;}
.yed{bottom:278.775000px;}
.y19f{bottom:282.675000px;}
.yc3{bottom:282.720000px;}
.yfe{bottom:283.800000px;}
.y2c{bottom:283.875000px;}
.y108{bottom:284.550000px;}
.y58{bottom:288.975000px;}
.y149{bottom:290.175000px;}
.y101{bottom:294.825000px;}
.y122{bottom:296.175000px;}
.y171{bottom:300.075000px;}
.yad{bottom:300.375000px;}
.yec{bottom:301.275000px;}
.yb9{bottom:305.505000px;}
.y104{bottom:305.805000px;}
.ycb{bottom:306.255000px;}
.y2b{bottom:306.975000px;}
.ybe{bottom:310.245000px;}
.y57{bottom:312.075000px;}
.y148{bottom:313.275000px;}
.yc4{bottom:314.970000px;}
.y121{bottom:319.575000px;}
.yac{bottom:323.475000px;}
.yeb{bottom:323.775000px;}
.y2a{bottom:330.075000px;}
.y56{bottom:335.175000px;}
.y147{bottom:336.375000px;}
.y120{bottom:342.675000px;}
.yea{bottom:346.275000px;}
.y170{bottom:346.575000px;}
.yab{bottom:346.875000px;}
.y19b{bottom:353.175000px;}
.y29{bottom:353.475000px;}
.y55{bottom:358.575000px;}
.y146{bottom:359.475000px;}
.y11f{bottom:365.775000px;}
.ye1{bottom:369.675000px;}
.yaa{bottom:369.975000px;}
.y194{bottom:376.575000px;}
.y54{bottom:381.675000px;}
.y145{bottom:382.875000px;}
.ye6{bottom:392.175000px;}
.y16f{bottom:392.775000px;}
.ya9{bottom:393.075000px;}
.y19a{bottom:399.675000px;}
.y193{bottom:401.175000px;}
.y28{bottom:401.775000px;}
.y53{bottom:404.775000px;}
.y144{bottom:405.975000px;}
.y11e{bottom:409.875000px;}
.ye5{bottom:414.705000px;}
.ya8{bottom:416.220000px;}
.y1b7{bottom:417.405000px;}
.y199{bottom:422.820000px;}
.y27{bottom:424.920000px;}
.y192{bottom:425.505000px;}
.y52{bottom:427.920000px;}
.y143{bottom:430.620000px;}
.y11d{bottom:433.005000px;}
.ye4{bottom:437.205000px;}
.y16e{bottom:439.320000px;}
.ya7{bottom:439.620000px;}
.y1b6{bottom:440.505000px;}
.y7a{bottom:445.905000px;}
.y26{bottom:448.005000px;}
.y191{bottom:448.620000px;}
.y51{bottom:451.005000px;}
.y142{bottom:454.920000px;}
.y11c{bottom:456.420000px;}
.ye3{bottom:459.705000px;}
.y16d{bottom:462.420000px;}
.ya6{bottom:462.705000px;}
.y1b5{bottom:463.620000px;}
.y79{bottom:469.005000px;}
.y25{bottom:471.120000px;}
.y190{bottom:472.005000px;}
.y50{bottom:474.420000px;}
.y141{bottom:478.005000px;}
.y11b{bottom:479.505000px;}
.yde{bottom:482.820000px;}
.y16c{bottom:485.505000px;}
.y1b4{bottom:487.005000px;}
.y78{bottom:492.420000px;}
.y24{bottom:494.505000px;}
.y18f{bottom:495.120000px;}
.y4f{bottom:497.505000px;}
.ya5{bottom:499.905000px;}
.y140{bottom:501.420000px;}
.y11a{bottom:502.605000px;}
.ye0{bottom:505.320000px;}
.y16b{bottom:508.620000px;}
.y1b3{bottom:510.120000px;}
.y77{bottom:515.505000px;}
.y23{bottom:517.605000px;}
.y18e{bottom:518.220000px;}
.ya4{bottom:518.820000px;}
.yb4{bottom:520.200000px;}
.y4e{bottom:520.620000px;}
.y13f{bottom:524.505000px;}
.y119{bottom:525.720000px;}
.ydb{bottom:528.720000px;}
.y16a{bottom:532.020000px;}
.y1b2{bottom:533.205000px;}
.y76{bottom:538.620000px;}
.y22{bottom:540.720000px;}
.y18d{bottom:541.320000px;}
.y4d{bottom:543.720000px;}
.y13e{bottom:547.620000px;}
.y118{bottom:548.820000px;}
.yd9{bottom:551.220000px;}
.y169{bottom:555.120000px;}
.y1b1{bottom:556.320000px;}
.y75{bottom:561.705000px;}
.y21{bottom:563.820000px;}
.y18c{bottom:564.405000px;}
.y4c{bottom:566.820000px;}
.y13d{bottom:570.750000px;}
.y117{bottom:572.250000px;}
.y168{bottom:578.250000px;}
.y1b0{bottom:579.450000px;}
.yd8{bottom:580.950000px;}
.y74{bottom:584.850000px;}
.y20{bottom:586.950000px;}
.y18b{bottom:587.850000px;}
.y4b{bottom:590.250000px;}
.y13c{bottom:593.850000px;}
.y116{bottom:595.350000px;}
.y167{bottom:601.650000px;}
.y1af{bottom:602.850000px;}
.y73{bottom:608.250000px;}
.y1f{bottom:610.350000px;}
.y18a{bottom:610.950000px;}
.y4a{bottom:613.350000px;}
.y13b{bottom:617.250000px;}
.yd7{bottom:618.150000px;}
.y166{bottom:625.950000px;}
.y72{bottom:631.350000px;}
.y1e{bottom:633.450000px;}
.y189{bottom:634.050000px;}
.y49{bottom:636.450000px;}
.y115{bottom:639.450000px;}
.y13a{bottom:640.350000px;}
.yd6{bottom:641.250000px;}
.y1ae{bottom:649.050000px;}
.y165{bottom:650.550000px;}
.y71{bottom:654.450000px;}
.y1d{bottom:656.550000px;}
.y188{bottom:657.150000px;}
.y48{bottom:659.550000px;}
.y114{bottom:662.550000px;}
.y139{bottom:663.450000px;}
.yd5{bottom:664.350000px;}
.y1ad{bottom:672.150000px;}
.y164{bottom:673.650000px;}
.y70{bottom:677.550000px;}
.y1c{bottom:679.650000px;}
.y187{bottom:680.550000px;}
.y47{bottom:682.950000px;}
.y113{bottom:685.950000px;}
.y138{bottom:686.550000px;}
.yd4{bottom:687.450000px;}
.y1ac{bottom:695.550000px;}
.y163{bottom:696.750000px;}
.y6f{bottom:700.950000px;}
.y1b{bottom:703.050000px;}
.y186{bottom:703.650000px;}
.y46{bottom:706.050000px;}
.y112{bottom:709.050000px;}
.y137{bottom:709.650000px;}
.yd3{bottom:710.550000px;}
.y162{bottom:719.850000px;}
.y1ab{bottom:720.150000px;}
.y6e{bottom:724.050000px;}
.y1a{bottom:726.195000px;}
.y185{bottom:726.780000px;}
.y45{bottom:729.195000px;}
.y111{bottom:732.195000px;}
.y136{bottom:733.095000px;}
.yd2{bottom:733.995000px;}
.y161{bottom:742.995000px;}
.y1aa{bottom:744.495000px;}
.y6d{bottom:747.195000px;}
.y19{bottom:749.295000px;}
.y184{bottom:749.880000px;}
.y44{bottom:752.280000px;}
.y110{bottom:755.280000px;}
.y160{bottom:766.395000px;}
.y1a9{bottom:767.580000px;}
.y6c{bottom:770.295000px;}
.yd1{bottom:771.195000px;}
.y18{bottom:772.380000px;}
.y43{bottom:775.380000px;}
.y10f{bottom:778.395000px;}
.y183{bottom:788.295000px;}
.y15f{bottom:789.480000px;}
.yd0{bottom:789.795000px;}
.y1a8{bottom:790.695000px;}
.yf6{bottom:791.700000px;}
.y6b{bottom:793.395000px;}
.y17{bottom:795.495000px;}
.y135{bottom:795.795000px;}
.y42{bottom:798.795000px;}
.y10e{bottom:801.795000px;}
.y15e{bottom:812.880000px;}
.y1a7{bottom:814.080000px;}
.y6a{bottom:816.795000px;}
.y16{bottom:818.895000px;}
.y41{bottom:821.895000px;}
.y10d{bottom:824.880000px;}
.y15d{bottom:837.195000px;}
.y69{bottom:839.880000px;}
.y12{bottom:841.080000px;}
.y134{bottom:841.995000px;}
.y40{bottom:844.995000px;}
.y10c{bottom:847.995000px;}
.y182{bottom:860.295000px;}
.y15c{bottom:861.495000px;}
.y11{bottom:862.080000px;}
.y68{bottom:862.980000px;}
.y133{bottom:865.080000px;}
.y3f{bottom:868.080000px;}
.ya3{bottom:871.080000px;}
.y15{bottom:883.125000px;}
.y181{bottom:883.425000px;}
.y15b{bottom:884.925000px;}
.y67{bottom:886.125000px;}
.y132{bottom:888.225000px;}
.y10{bottom:888.525000px;}
.y3e{bottom:891.225000px;}
.ya2{bottom:894.225000px;}
.yf{bottom:904.125000px;}
.y180{bottom:906.525000px;}
.y15a{bottom:908.025000px;}
.y66{bottom:909.225000px;}
.y131{bottom:911.625000px;}
.y3d{bottom:914.625000px;}
.ye{bottom:925.425000px;}
.y17f{bottom:929.925000px;}
.y159{bottom:931.125000px;}
.y65{bottom:932.625000px;}
.y130{bottom:934.725000px;}
.y3c{bottom:937.725000px;}
.y14{bottom:946.425000px;}
.yd{bottom:951.825000px;}
.y17e{bottom:953.025000px;}
.y158{bottom:954.225000px;}
.y64{bottom:955.725000px;}
.y12f{bottom:957.825000px;}
.y3b{bottom:960.825000px;}
.yc{bottom:967.425000px;}
.y17d{bottom:976.125000px;}
.y157{bottom:977.625000px;}
.y63{bottom:978.825000px;}
.y12e{bottom:980.925000px;}
.y3a{bottom:983.925000px;}
.y13{bottom:988.425000px;}
.yb{bottom:993.825000px;}
.y17c{bottom:999.225000px;}
.y156{bottom:1000.725000px;}
.y62{bottom:1001.925000px;}
.y12d{bottom:1004.025000px;}
.y39{bottom:1007.025000px;}
.ya{bottom:1010.325000px;}
.y17b{bottom:1022.625000px;}
.y155{bottom:1023.825000px;}
.y61{bottom:1025.025000px;}
.y12c{bottom:1027.425000px;}
.y38{bottom:1030.425000px;}
.y9{bottom:1035.870000px;}
.y154{bottom:1046.955000px;}
.y17a{bottom:1047.255000px;}
.y60{bottom:1048.455000px;}
.y12b{bottom:1050.570000px;}
.y8{bottom:1067.670000px;}
.y153{bottom:1070.070000px;}
.y37{bottom:1071.570000px;}
.y12a{bottom:1073.670000px;}
.y152{bottom:1093.455000px;}
.y36{bottom:1094.670000px;}
.y7{bottom:1105.455000px;}
.y151{bottom:1116.570000px;}
.y35{bottom:1117.755000px;}
.y6{bottom:1139.670000px;}
.y34{bottom:1141.170000px;}
.ycf{bottom:1142.370000px;}
.y2{bottom:1173.255000px;}
.y1{bottom:1193.400000px;}
.h16{height:22.500000px;}
.h14{height:22.537500px;}
.h1a{height:23.700000px;}
.ha{height:32.039648px;}
.h4{height:43.690430px;}
.h1c{height:43.811792px;}
.h17{height:45.000000px;}
.h15{height:45.037500px;}
.hc{height:48.076172px;}
.hb{height:48.544922px;}
.h10{height:48.666284px;}
.he{height:51.457617px;}
.hf{height:51.578979px;}
.h11{height:52.883789px;}
.h3{height:53.399414px;}
.h9{height:57.981445px;}
.h6{height:58.253906px;}
.h13{height:62.650430px;}
.h5{height:67.837600px;}
.h8{height:67.962891px;}
.h2{height:68.707031px;}
.h7{height:87.380859px;}
.h19{height:91.200000px;}
.h1{height:98.672872px;}
.h18{height:112.537500px;}
.hd{height:305.100000px;}
.h1b{height:342.600000px;}
.h12{height:343.200000px;}
.h0{height:1263.000000px;}
.wb{width:40.200000px;}
.w9{width:40.800000px;}
.wc{width:50.737500px;}
.w6{width:60.037500px;}
.wa{width:67.237500px;}
.w8{width:90.937500px;}
.w4{width:97.237500px;}
.w7{width:108.037500px;}
.w5{width:127.837500px;}
.wd{width:637.200000px;}
.w3{width:700.200000px;}
.w2{width:730.200000px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x4a{left:5.100000px;}
.x56{left:12.285000px;}
.x5b{left:13.500000px;}
.x50{left:14.700000px;}
.x59{left:16.500000px;}
.x54{left:18.600000px;}
.x58{left:19.815000px;}
.x44{left:21.637500px;}
.x2b{left:23.212500px;}
.x57{left:25.200000px;}
.x52{left:27.000000px;}
.x55{left:29.400000px;}
.x5a{left:30.915000px;}
.x4f{left:33.900000px;}
.x40{left:38.887500px;}
.x2c{left:41.512500px;}
.x4e{left:47.700000px;}
.x2a{left:59.850000px;}
.x3f{left:62.250000px;}
.x1{left:63.937487px;}
.xd{left:65.137487px;}
.x2f{left:66.337487px;}
.x4{left:67.537487px;}
.x2e{left:69.795000px;}
.x6b{left:74.437487px;}
.x29{left:78.780000px;}
.x66{left:79.800000px;}
.x12{left:81.600000px;}
.x46{left:90.900000px;}
.x70{left:92.737487px;}
.x33{left:96.300000px;}
.x6c{left:106.837487px;}
.x6f{left:120.637487px;}
.x25{left:123.180000px;}
.x43{left:127.395000px;}
.x41{left:131.370000px;}
.x27{left:134.595000px;}
.x48{left:143.137487px;}
.x42{left:148.725000px;}
.x67{left:150.525000px;}
.x7{left:160.874987px;}
.x28{left:173.430000px;}
.x26{left:176.325000px;}
.x6{left:186.674987px;}
.x6e{left:197.174987px;}
.x49{left:204.375000px;}
.x65{left:232.950000px;}
.x2{left:238.874987px;}
.x6d{left:244.274987px;}
.x5c{left:249.075000px;}
.x60{left:264.225000px;}
.x3e{left:266.220000px;}
.x5e{left:267.855000px;}
.x3{left:268.919987px;}
.x5d{left:271.695000px;}
.xf{left:278.519987px;}
.x34{left:281.955000px;}
.x35{left:288.825000px;}
.x4b{left:301.620000px;}
.x5f{left:309.225000px;}
.x37{left:315.705000px;}
.x30{left:319.619987px;}
.x38{left:325.950000px;}
.x36{left:332.625000px;}
.x61{left:339.195000px;}
.x62{left:342.825000px;}
.x24{left:349.575000px;}
.x13{left:365.880000px;}
.x5{left:368.849987px;}
.x11{left:370.349987px;}
.x15{left:373.005000px;}
.x14{left:376.575000px;}
.x18{left:380.100000px;}
.x68{left:391.320000px;}
.x1a{left:393.975000px;}
.x17{left:397.470000px;}
.x16{left:404.220000px;}
.x19{left:407.805000px;}
.x63{left:410.295000px;}
.x1d{left:411.375000px;}
.x1b{left:414.900000px;}
.x4c{left:429.450000px;}
.x1c{left:432.420000px;}
.x45{left:439.425000px;}
.x32{left:447.449987px;}
.xe{left:473.594987px;}
.x69{left:478.694987px;}
.x4d{left:489.495000px;}
.x2d{left:493.545000px;}
.x6a{left:505.694987px;}
.x51{left:530.280000px;}
.x3b{left:551.730000px;}
.x3d{left:558.600000px;}
.xa{left:560.594987px;}
.x39{left:565.395000px;}
.x3c{left:568.650000px;}
.x64{left:579.105000px;}
.xc{left:585.524987px;}
.xb{left:587.924987px;}
.x22{left:596.430000px;}
.x9{left:598.424987px;}
.x21{left:599.850000px;}
.x3a{left:615.945000px;}
.x53{left:637.725000px;}
.x23{left:645.375000px;}
.x8{left:651.224987px;}
.x1e{left:652.500000px;}
.x20{left:662.700000px;}
.x1f{left:666.375000px;}
.x47{left:767.069987px;}
.x31{left:798.599987px;}
.x10{left:813.299987px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.853333pt;}
.v1{vertical-align:21.333333pt;}
.ls38{letter-spacing:-1.200000pt;}
.ls24{letter-spacing:-0.730667pt;}
.ls12{letter-spacing:-0.709333pt;}
.ls22{letter-spacing:-0.661333pt;}
.ls16{letter-spacing:-0.592000pt;}
.ls11{letter-spacing:-0.554667pt;}
.ls18{letter-spacing:-0.533333pt;}
.ls2d{letter-spacing:-0.522667pt;}
.ls3c{letter-spacing:-0.512000pt;}
.ls10{letter-spacing:-0.420267pt;}
.ls13{letter-spacing:-0.390400pt;}
.lse{letter-spacing:-0.356267pt;}
.ls29{letter-spacing:-0.352000pt;}
.ls2f{letter-spacing:-0.342400pt;}
.ls33{letter-spacing:-0.318933pt;}
.ls4c{letter-spacing:-0.309333pt;}
.ls1b{letter-spacing:-0.288000pt;}
.ls2e{letter-spacing:-0.256000pt;}
.ls3e{letter-spacing:-0.245333pt;}
.ls2c{letter-spacing:-0.229333pt;}
.ls2a{letter-spacing:-0.224000pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.186667pt;}
.ls1c{letter-spacing:-0.154667pt;}
.ls4a{letter-spacing:-0.133333pt;}
.ls5{letter-spacing:-0.106667pt;}
.ls31{letter-spacing:-0.045600pt;}
.ls23{letter-spacing:-0.042667pt;}
.ls15{letter-spacing:-0.017067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls4d{letter-spacing:0.016000pt;}
.ls40{letter-spacing:0.021333pt;}
.ls25{letter-spacing:0.042667pt;}
.ls3a{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.074667pt;}
.ls6{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.122667pt;}
.ls32{letter-spacing:0.129600pt;}
.ls35{letter-spacing:0.131733pt;}
.ls14{letter-spacing:0.137600pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.170667pt;}
.ls17{letter-spacing:0.189867pt;}
.ls1f{letter-spacing:0.197333pt;}
.ls19{letter-spacing:0.233067pt;}
.ls3f{letter-spacing:0.240000pt;}
.ls3d{letter-spacing:0.304000pt;}
.ls2b{letter-spacing:0.309333pt;}
.lsd{letter-spacing:0.356267pt;}
.ls8{letter-spacing:0.405333pt;}
.ls27{letter-spacing:0.458667pt;}
.ls36{letter-spacing:0.459200pt;}
.ls37{letter-spacing:0.466667pt;}
.ls30{letter-spacing:0.474133pt;}
.ls28{letter-spacing:0.474667pt;}
.lsf{letter-spacing:0.476800pt;}
.ls20{letter-spacing:0.485333pt;}
.lsc{letter-spacing:0.514133pt;}
.ls1d{letter-spacing:0.522667pt;}
.ls26{letter-spacing:0.533333pt;}
.ls1e{letter-spacing:0.544000pt;}
.ls34{letter-spacing:0.549333pt;}
.ls4b{letter-spacing:0.853333pt;}
.ls46{letter-spacing:11.477333pt;}
.ls49{letter-spacing:12.490667pt;}
.ls4e{letter-spacing:14.624000pt;}
.ls48{letter-spacing:16.810667pt;}
.ls47{letter-spacing:17.824000pt;}
.ls39{letter-spacing:25.920000pt;}
.ls41{letter-spacing:34.890667pt;}
.ls42{letter-spacing:35.957333pt;}
.ls45{letter-spacing:37.024000pt;}
.ls43{letter-spacing:38.090667pt;}
.ls3b{letter-spacing:41.290667pt;}
.ls44{letter-spacing:43.424000pt;}
.lsa{letter-spacing:83.798400pt;}
.ls21{letter-spacing:98.880933pt;}
.ls0{letter-spacing:168.277333pt;}
.ls1a{letter-spacing:202.682667pt;}
.ws6{word-spacing:-58.666667pt;}
.ws1{word-spacing:-18.720000pt;}
.ws37{word-spacing:-11.984000pt;}
.ws20{word-spacing:-11.973333pt;}
.ws22{word-spacing:-11.914667pt;}
.ws21{word-spacing:-11.898667pt;}
.ws8{word-spacing:-11.845333pt;}
.ws25{word-spacing:-11.749333pt;}
.ws32{word-spacing:-11.744000pt;}
.ws34{word-spacing:-11.680000pt;}
.ws1f{word-spacing:-11.562667pt;}
.ws9{word-spacing:-11.514667pt;}
.ws1e{word-spacing:-11.482667pt;}
.ws35{word-spacing:-11.461333pt;}
.ws3a{word-spacing:-11.456000pt;}
.ws0{word-spacing:-11.440000pt;}
.ws1c{word-spacing:-11.397333pt;}
.ws38{word-spacing:-11.306667pt;}
.ws24{word-spacing:-11.216000pt;}
.ws26{word-spacing:-11.210667pt;}
.ws33{word-spacing:-11.194667pt;}
.ws36{word-spacing:-11.152000pt;}
.ws39{word-spacing:-11.130667pt;}
.ws23{word-spacing:-11.088000pt;}
.ws13{word-spacing:-11.024000pt;}
.ws31{word-spacing:-10.928000pt;}
.ws1b{word-spacing:-10.778667pt;}
.ws1d{word-spacing:-10.709333pt;}
.ws5{word-spacing:-10.506667pt;}
.ws3{word-spacing:-10.400000pt;}
.ws4{word-spacing:-10.293333pt;}
.ws30{word-spacing:-9.386000pt;}
.ws14{word-spacing:-9.360000pt;}
.ws2{word-spacing:-7.280000pt;}
.ws7{word-spacing:0.000000pt;}
.ws12{word-spacing:45.734400pt;}
.wsd{word-spacing:55.965867pt;}
.wse{word-spacing:56.648533pt;}
.ws11{word-spacing:57.593600pt;}
.wsc{word-spacing:58.995200pt;}
.ws10{word-spacing:59.434667pt;}
.wsb{word-spacing:59.525333pt;}
.wsa{word-spacing:59.645867pt;}
.wsf{word-spacing:61.213867pt;}
.ws2f{word-spacing:63.601600pt;}
.ws2e{word-spacing:74.496267pt;}
.ws28{word-spacing:75.160267pt;}
.ws2a{word-spacing:75.262533pt;}
.ws2c{word-spacing:76.745467pt;}
.ws2b{word-spacing:76.799467pt;}
.ws29{word-spacing:77.052800pt;}
.ws27{word-spacing:78.073333pt;}
.ws2d{word-spacing:78.297867pt;}
.ws19{word-spacing:161.818667pt;}
.ws18{word-spacing:170.784000pt;}
.ws1a{word-spacing:177.050667pt;}
.ws15{word-spacing:179.594667pt;}
.ws17{word-spacing:180.938667pt;}
.ws16{word-spacing:181.088000pt;}
._2b{margin-left:-6.794667pt;}
._a{margin-left:-3.114667pt;}
._4{margin-left:-2.186667pt;}
._3{margin-left:-1.173333pt;}
._0{width:1.333333pt;}
._2{width:2.426667pt;}
._1{width:3.733333pt;}
._f{width:4.810667pt;}
._e{width:5.920000pt;}
._d{width:6.922667pt;}
._c{width:8.288000pt;}
._b{width:9.856000pt;}
._8{width:12.906667pt;}
._9{width:13.845333pt;}
._1c{width:15.680000pt;}
._1b{width:16.720000pt;}
._10{width:18.304000pt;}
._11{width:19.477333pt;}
._29{width:21.002667pt;}
._7{width:21.978667pt;}
._20{width:23.365333pt;}
._21{width:24.501333pt;}
._1e{width:25.600000pt;}
._1f{width:26.576000pt;}
._24{width:27.573333pt;}
._1d{width:28.608000pt;}
._6{width:29.813333pt;}
._1a{width:30.805333pt;}
._36{width:32.736000pt;}
._19{width:33.968000pt;}
._18{width:35.552000pt;}
._12{width:37.269333pt;}
._13{width:39.152000pt;}
._14{width:40.304000pt;}
._25{width:41.360000pt;}
._15{width:42.373333pt;}
._16{width:43.706667pt;}
._3b{width:45.877333pt;}
._22{width:49.749333pt;}
._23{width:51.216000pt;}
._3a{width:52.885333pt;}
._31{width:53.856000pt;}
._32{width:55.120000pt;}
._3c{width:56.085333pt;}
._47{width:57.317333pt;}
._46{width:58.592000pt;}
._35{width:60.405333pt;}
._33{width:61.424000pt;}
._34{width:62.549333pt;}
._17{width:64.901333pt;}
._28{width:67.557333pt;}
._3d{width:70.928000pt;}
._5{width:77.306667pt;}
._39{width:83.306667pt;}
._38{width:84.245333pt;}
._26{width:87.178667pt;}
._27{width:88.090667pt;}
._44{width:89.984000pt;}
._43{width:91.168000pt;}
._2f{width:105.338667pt;}
._2e{width:106.560000pt;}
._30{width:108.768000pt;}
._2d{width:110.245333pt;}
._2c{width:111.520000pt;}
._2a{width:115.392000pt;}
._37{width:116.912000pt;}
._42{width:119.962667pt;}
._41{width:121.392000pt;}
._4c{width:207.146667pt;}
._4a{width:239.610667pt;}
._49{width:241.008000pt;}
._48{width:253.856000pt;}
._40{width:360.208000pt;}
._3f{width:366.960000pt;}
._3e{width:367.957333pt;}
._4b{width:667.333333pt;}
._45{width:819.280000pt;}
.fs7{font-size:35.200000pt;}
.fs6{font-size:37.333333pt;}
.fs2{font-size:48.000000pt;}
.fsc{font-size:48.133333pt;}
.fs8{font-size:53.333333pt;}
.fsb{font-size:53.466667pt;}
.fs9{font-size:56.533333pt;}
.fsa{font-size:56.666667pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ydd{bottom:3.986667pt;}
.yda{bottom:4.000000pt;}
.yee{bottom:4.026667pt;}
.ydc{bottom:14.933333pt;}
.ydf{bottom:15.186667pt;}
.yce{bottom:15.400000pt;}
.y10b{bottom:15.640000pt;}
.ya1{bottom:16.133333pt;}
.yf1{bottom:26.680000pt;}
.ye9{bottom:36.293333pt;}
.yf0{bottom:44.546667pt;}
.ye2{bottom:45.106667pt;}
.ycd{bottom:50.293333pt;}
.y109{bottom:50.493333pt;}
.y5{bottom:51.200000pt;}
.ya0{bottom:53.066667pt;}
.ye8{bottom:54.160000pt;}
.y4{bottom:65.866667pt;}
.yc5{bottom:70.266667pt;}
.y105{bottom:70.493333pt;}
.y95{bottom:74.173333pt;}
.y3{bottom:81.066667pt;}
.yb5{bottom:95.360000pt;}
.yf7{bottom:99.226667pt;}
.y179{bottom:99.766667pt;}
.yc6{bottom:100.240000pt;}
.y7c{bottom:100.566667pt;}
.y83{bottom:103.000000pt;}
.yba{bottom:103.773333pt;}
.y96{bottom:103.866667pt;}
.y198{bottom:104.566667pt;}
.y1a6{bottom:105.900000pt;}
.y89{bottom:106.333333pt;}
.ybf{bottom:107.960000pt;}
.y19e{bottom:108.033333pt;}
.y33{bottom:108.300000pt;}
.yf9{bottom:109.000000pt;}
.y8f{bottom:109.693333pt;}
.y9c{bottom:110.333333pt;}
.y5f{bottom:112.566667pt;}
.y150{bottom:113.633333pt;}
.ycc{bottom:116.266667pt;}
.y7b{bottom:117.366667pt;}
.yb3{bottom:117.900000pt;}
.y7d{bottom:118.400000pt;}
.yfc{bottom:118.800000pt;}
.y7e{bottom:119.133333pt;}
.y129{bottom:119.233333pt;}
.y106{bottom:119.466667pt;}
.y178{bottom:120.300000pt;}
.y197{bottom:125.366667pt;}
.y10a{bottom:125.440000pt;}
.y84{bottom:125.840000pt;}
.y97{bottom:126.666667pt;}
.y1a5{bottom:127.500000pt;}
.yff{bottom:128.560000pt;}
.y19d{bottom:128.566667pt;}
.y32{bottom:128.833333pt;}
.yc7{bottom:128.906667pt;}
.y8a{bottom:129.160000pt;}
.yf5{bottom:131.500000pt;}
.y90{bottom:132.493333pt;}
.y5e{bottom:133.373333pt;}
.y14f{bottom:134.160000pt;}
.yc0{bottom:136.626667pt;}
.y102{bottom:138.373333pt;}
.y128{bottom:139.773333pt;}
.y177{bottom:140.826667pt;}
.yef{bottom:146.160000pt;}
.y196{bottom:146.960000pt;}
.y1a4{bottom:148.040000pt;}
.y85{bottom:148.626667pt;}
.y31{bottom:149.373333pt;}
.y98{bottom:149.506667pt;}
.yb2{bottom:150.706667pt;}
.y8b{bottom:151.960000pt;}
.y5d{bottom:153.906667pt;}
.y14e{bottom:154.960000pt;}
.y91{bottom:155.333333pt;}
.yb6{bottom:156.893333pt;}
.yc8{bottom:157.573333pt;}
.y127{bottom:160.306667pt;}
.ybb{bottom:161.106667pt;}
.y176{bottom:161.373333pt;}
.yc1{bottom:165.293333pt;}
.yf8{bottom:165.973333pt;}
.yf4{bottom:166.160000pt;}
.y1a3{bottom:168.573333pt;}
.y195{bottom:168.826667pt;}
.y30{bottom:169.893333pt;}
.yb1{bottom:171.226667pt;}
.y5c{bottom:174.426667pt;}
.y14d{bottom:175.506667pt;}
.yfa{bottom:175.733333pt;}
.y126{bottom:181.106667pt;}
.y175{bottom:182.173333pt;}
.yfd{bottom:185.533333pt;}
.yf3{bottom:186.173333pt;}
.y107{bottom:186.200000pt;}
.y7f{bottom:187.560000pt;}
.y9d{bottom:187.866667pt;}
.y9f{bottom:188.333333pt;}
.y1a2{bottom:189.360000pt;}
.y2f{bottom:190.440000pt;}
.y81{bottom:190.933333pt;}
.yb0{bottom:192.026667pt;}
.y86{bottom:194.266667pt;}
.y5b{bottom:194.960000pt;}
.y99{bottom:195.133333pt;}
.y100{bottom:195.333333pt;}
.y14c{bottom:196.040000pt;}
.y8c{bottom:197.600000pt;}
.y92{bottom:200.973333pt;}
.y125{bottom:201.626667pt;}
.y174{bottom:202.706667pt;}
.y103{bottom:205.106667pt;}
.yf2{bottom:206.173333pt;}
.y1a1{bottom:209.893333pt;}
.y80{bottom:210.400000pt;}
.y19c{bottom:210.973333pt;}
.y2e{bottom:211.240000pt;}
.yaf{bottom:212.560000pt;}
.y82{bottom:213.733333pt;}
.y9e{bottom:213.933333pt;}
.yb7{bottom:214.240000pt;}
.yc9{bottom:214.906667pt;}
.y5a{bottom:215.773333pt;}
.y14b{bottom:216.573333pt;}
.y87{bottom:217.066667pt;}
.y9a{bottom:217.933333pt;}
.ybc{bottom:218.440000pt;}
.y8d{bottom:220.440000pt;}
.y124{bottom:222.173333pt;}
.yc2{bottom:222.640000pt;}
.y93{bottom:223.773333pt;}
.y173{bottom:224.560000pt;}
.ye7{bottom:227.773333pt;}
.y1a0{bottom:230.440000pt;}
.y2d{bottom:231.800000pt;}
.yae{bottom:233.133333pt;}
.y59{bottom:236.333333pt;}
.y14a{bottom:237.133333pt;}
.y88{bottom:239.893333pt;}
.y9b{bottom:240.773333pt;}
.yfb{bottom:242.493333pt;}
.y123{bottom:242.733333pt;}
.yb8{bottom:242.893333pt;}
.y8e{bottom:243.226667pt;}
.yca{bottom:243.560000pt;}
.y172{bottom:246.200000pt;}
.y94{bottom:246.600000pt;}
.ybd{bottom:247.106667pt;}
.yed{bottom:247.800000pt;}
.y19f{bottom:251.266667pt;}
.yc3{bottom:251.306667pt;}
.yfe{bottom:252.266667pt;}
.y2c{bottom:252.333333pt;}
.y108{bottom:252.933333pt;}
.y58{bottom:256.866667pt;}
.y149{bottom:257.933333pt;}
.y101{bottom:262.066667pt;}
.y122{bottom:263.266667pt;}
.y171{bottom:266.733333pt;}
.yad{bottom:267.000000pt;}
.yec{bottom:267.800000pt;}
.yb9{bottom:271.560000pt;}
.y104{bottom:271.826667pt;}
.ycb{bottom:272.226667pt;}
.y2b{bottom:272.866667pt;}
.ybe{bottom:275.773333pt;}
.y57{bottom:277.400000pt;}
.y148{bottom:278.466667pt;}
.yc4{bottom:279.973333pt;}
.y121{bottom:284.066667pt;}
.yac{bottom:287.533333pt;}
.yeb{bottom:287.800000pt;}
.y2a{bottom:293.400000pt;}
.y56{bottom:297.933333pt;}
.y147{bottom:299.000000pt;}
.y120{bottom:304.600000pt;}
.yea{bottom:307.800000pt;}
.y170{bottom:308.066667pt;}
.yab{bottom:308.333333pt;}
.y19b{bottom:313.933333pt;}
.y29{bottom:314.200000pt;}
.y55{bottom:318.733333pt;}
.y146{bottom:319.533333pt;}
.y11f{bottom:325.133333pt;}
.ye1{bottom:328.600000pt;}
.yaa{bottom:328.866667pt;}
.y194{bottom:334.733333pt;}
.y54{bottom:339.266667pt;}
.y145{bottom:340.333333pt;}
.ye6{bottom:348.600000pt;}
.y16f{bottom:349.133333pt;}
.ya9{bottom:349.400000pt;}
.y19a{bottom:355.266667pt;}
.y193{bottom:356.600000pt;}
.y28{bottom:357.133333pt;}
.y53{bottom:359.800000pt;}
.y144{bottom:360.866667pt;}
.y11e{bottom:364.333333pt;}
.ye5{bottom:368.626667pt;}
.ya8{bottom:369.973333pt;}
.y1b7{bottom:371.026667pt;}
.y199{bottom:375.840000pt;}
.y27{bottom:377.706667pt;}
.y192{bottom:378.226667pt;}
.y52{bottom:380.373333pt;}
.y143{bottom:382.773333pt;}
.y11d{bottom:384.893333pt;}
.ye4{bottom:388.626667pt;}
.y16e{bottom:390.506667pt;}
.ya7{bottom:390.773333pt;}
.y1b6{bottom:391.560000pt;}
.y7a{bottom:396.360000pt;}
.y26{bottom:398.226667pt;}
.y191{bottom:398.773333pt;}
.y51{bottom:400.893333pt;}
.y142{bottom:404.373333pt;}
.y11c{bottom:405.706667pt;}
.ye3{bottom:408.626667pt;}
.y16d{bottom:411.040000pt;}
.ya6{bottom:411.293333pt;}
.y1b5{bottom:412.106667pt;}
.y79{bottom:416.893333pt;}
.y25{bottom:418.773333pt;}
.y190{bottom:419.560000pt;}
.y50{bottom:421.706667pt;}
.y141{bottom:424.893333pt;}
.y11b{bottom:426.226667pt;}
.yde{bottom:429.173333pt;}
.y16c{bottom:431.560000pt;}
.y1b4{bottom:432.893333pt;}
.y78{bottom:437.706667pt;}
.y24{bottom:439.560000pt;}
.y18f{bottom:440.106667pt;}
.y4f{bottom:442.226667pt;}
.ya5{bottom:444.360000pt;}
.y140{bottom:445.706667pt;}
.y11a{bottom:446.760000pt;}
.ye0{bottom:449.173333pt;}
.y16b{bottom:452.106667pt;}
.y1b3{bottom:453.440000pt;}
.y77{bottom:458.226667pt;}
.y23{bottom:460.093333pt;}
.y18e{bottom:460.640000pt;}
.ya4{bottom:461.173333pt;}
.yb4{bottom:462.400000pt;}
.y4e{bottom:462.773333pt;}
.y13f{bottom:466.226667pt;}
.y119{bottom:467.306667pt;}
.ydb{bottom:469.973333pt;}
.y16a{bottom:472.906667pt;}
.y1b2{bottom:473.960000pt;}
.y76{bottom:478.773333pt;}
.y22{bottom:480.640000pt;}
.y18d{bottom:481.173333pt;}
.y4d{bottom:483.306667pt;}
.y13e{bottom:486.773333pt;}
.y118{bottom:487.840000pt;}
.yd9{bottom:489.973333pt;}
.y169{bottom:493.440000pt;}
.y1b1{bottom:494.506667pt;}
.y75{bottom:499.293333pt;}
.y21{bottom:501.173333pt;}
.y18c{bottom:501.693333pt;}
.y4c{bottom:503.840000pt;}
.y13d{bottom:507.333333pt;}
.y117{bottom:508.666667pt;}
.y168{bottom:514.000000pt;}
.y1b0{bottom:515.066667pt;}
.yd8{bottom:516.400000pt;}
.y74{bottom:519.866667pt;}
.y20{bottom:521.733333pt;}
.y18b{bottom:522.533333pt;}
.y4b{bottom:524.666667pt;}
.y13c{bottom:527.866667pt;}
.y116{bottom:529.200000pt;}
.y167{bottom:534.800000pt;}
.y1af{bottom:535.866667pt;}
.y73{bottom:540.666667pt;}
.y1f{bottom:542.533333pt;}
.y18a{bottom:543.066667pt;}
.y4a{bottom:545.200000pt;}
.y13b{bottom:548.666667pt;}
.yd7{bottom:549.466667pt;}
.y166{bottom:556.400000pt;}
.y72{bottom:561.200000pt;}
.y1e{bottom:563.066667pt;}
.y189{bottom:563.600000pt;}
.y49{bottom:565.733333pt;}
.y115{bottom:568.400000pt;}
.y13a{bottom:569.200000pt;}
.yd6{bottom:570.000000pt;}
.y1ae{bottom:576.933333pt;}
.y165{bottom:578.266667pt;}
.y71{bottom:581.733333pt;}
.y1d{bottom:583.600000pt;}
.y188{bottom:584.133333pt;}
.y48{bottom:586.266667pt;}
.y114{bottom:588.933333pt;}
.y139{bottom:589.733333pt;}
.yd5{bottom:590.533333pt;}
.y1ad{bottom:597.466667pt;}
.y164{bottom:598.800000pt;}
.y70{bottom:602.266667pt;}
.y1c{bottom:604.133333pt;}
.y187{bottom:604.933333pt;}
.y47{bottom:607.066667pt;}
.y113{bottom:609.733333pt;}
.y138{bottom:610.266667pt;}
.yd4{bottom:611.066667pt;}
.y1ac{bottom:618.266667pt;}
.y163{bottom:619.333333pt;}
.y6f{bottom:623.066667pt;}
.y1b{bottom:624.933333pt;}
.y186{bottom:625.466667pt;}
.y46{bottom:627.600000pt;}
.y112{bottom:630.266667pt;}
.y137{bottom:630.800000pt;}
.yd3{bottom:631.600000pt;}
.y162{bottom:639.866667pt;}
.y1ab{bottom:640.133333pt;}
.y6e{bottom:643.600000pt;}
.y1a{bottom:645.506667pt;}
.y185{bottom:646.026667pt;}
.y45{bottom:648.173333pt;}
.y111{bottom:650.840000pt;}
.y136{bottom:651.640000pt;}
.yd2{bottom:652.440000pt;}
.y161{bottom:660.440000pt;}
.y1aa{bottom:661.773333pt;}
.y6d{bottom:664.173333pt;}
.y19{bottom:666.040000pt;}
.y184{bottom:666.560000pt;}
.y44{bottom:668.693333pt;}
.y110{bottom:671.360000pt;}
.y160{bottom:681.240000pt;}
.y1a9{bottom:682.293333pt;}
.y6c{bottom:684.706667pt;}
.yd1{bottom:685.506667pt;}
.y18{bottom:686.560000pt;}
.y43{bottom:689.226667pt;}
.y10f{bottom:691.906667pt;}
.y183{bottom:700.706667pt;}
.y15f{bottom:701.760000pt;}
.yd0{bottom:702.040000pt;}
.y1a8{bottom:702.840000pt;}
.yf6{bottom:703.733333pt;}
.y6b{bottom:705.240000pt;}
.y17{bottom:707.106667pt;}
.y135{bottom:707.373333pt;}
.y42{bottom:710.040000pt;}
.y10e{bottom:712.706667pt;}
.y15e{bottom:722.560000pt;}
.y1a7{bottom:723.626667pt;}
.y6a{bottom:726.040000pt;}
.y16{bottom:727.906667pt;}
.y41{bottom:730.573333pt;}
.y10d{bottom:733.226667pt;}
.y15d{bottom:744.173333pt;}
.y69{bottom:746.560000pt;}
.y12{bottom:747.626667pt;}
.y134{bottom:748.440000pt;}
.y40{bottom:751.106667pt;}
.y10c{bottom:753.773333pt;}
.y182{bottom:764.706667pt;}
.y15c{bottom:765.773333pt;}
.y11{bottom:766.293333pt;}
.y68{bottom:767.093333pt;}
.y133{bottom:768.960000pt;}
.y3f{bottom:771.626667pt;}
.ya3{bottom:774.293333pt;}
.y15{bottom:785.000000pt;}
.y181{bottom:785.266667pt;}
.y15b{bottom:786.600000pt;}
.y67{bottom:787.666667pt;}
.y132{bottom:789.533333pt;}
.y10{bottom:789.800000pt;}
.y3e{bottom:792.200000pt;}
.ya2{bottom:794.866667pt;}
.yf{bottom:803.666667pt;}
.y180{bottom:805.800000pt;}
.y15a{bottom:807.133333pt;}
.y66{bottom:808.200000pt;}
.y131{bottom:810.333333pt;}
.y3d{bottom:813.000000pt;}
.ye{bottom:822.600000pt;}
.y17f{bottom:826.600000pt;}
.y159{bottom:827.666667pt;}
.y65{bottom:829.000000pt;}
.y130{bottom:830.866667pt;}
.y3c{bottom:833.533333pt;}
.y14{bottom:841.266667pt;}
.yd{bottom:846.066667pt;}
.y17e{bottom:847.133333pt;}
.y158{bottom:848.200000pt;}
.y64{bottom:849.533333pt;}
.y12f{bottom:851.400000pt;}
.y3b{bottom:854.066667pt;}
.yc{bottom:859.933333pt;}
.y17d{bottom:867.666667pt;}
.y157{bottom:869.000000pt;}
.y63{bottom:870.066667pt;}
.y12e{bottom:871.933333pt;}
.y3a{bottom:874.600000pt;}
.y13{bottom:878.600000pt;}
.yb{bottom:883.400000pt;}
.y17c{bottom:888.200000pt;}
.y156{bottom:889.533333pt;}
.y62{bottom:890.600000pt;}
.y12d{bottom:892.466667pt;}
.y39{bottom:895.133333pt;}
.ya{bottom:898.066667pt;}
.y17b{bottom:909.000000pt;}
.y155{bottom:910.066667pt;}
.y61{bottom:911.133333pt;}
.y12c{bottom:913.266667pt;}
.y38{bottom:915.933333pt;}
.y9{bottom:920.773333pt;}
.y154{bottom:930.626667pt;}
.y17a{bottom:930.893333pt;}
.y60{bottom:931.960000pt;}
.y12b{bottom:933.840000pt;}
.y8{bottom:949.040000pt;}
.y153{bottom:951.173333pt;}
.y37{bottom:952.506667pt;}
.y12a{bottom:954.373333pt;}
.y152{bottom:971.960000pt;}
.y36{bottom:973.040000pt;}
.y7{bottom:982.626667pt;}
.y151{bottom:992.506667pt;}
.y35{bottom:993.560000pt;}
.y6{bottom:1013.040000pt;}
.y34{bottom:1014.373333pt;}
.ycf{bottom:1015.440000pt;}
.y2{bottom:1042.893333pt;}
.y1{bottom:1060.800000pt;}
.h16{height:20.000000pt;}
.h14{height:20.033333pt;}
.h1a{height:21.066667pt;}
.ha{height:28.479687pt;}
.h4{height:38.835938pt;}
.h1c{height:38.943815pt;}
.h17{height:40.000000pt;}
.h15{height:40.033333pt;}
.hc{height:42.734375pt;}
.hb{height:43.151042pt;}
.h10{height:43.258919pt;}
.he{height:45.740104pt;}
.hf{height:45.847982pt;}
.h11{height:47.007812pt;}
.h3{height:47.466146pt;}
.h9{height:51.539062pt;}
.h6{height:51.781250pt;}
.h13{height:55.689271pt;}
.h5{height:60.300089pt;}
.h8{height:60.411458pt;}
.h2{height:61.072917pt;}
.h7{height:77.671875pt;}
.h19{height:81.066667pt;}
.h1{height:87.709220pt;}
.h18{height:100.033333pt;}
.hd{height:271.200000pt;}
.h1b{height:304.533333pt;}
.h12{height:305.066667pt;}
.h0{height:1122.666667pt;}
.wb{width:35.733333pt;}
.w9{width:36.266667pt;}
.wc{width:45.100000pt;}
.w6{width:53.366667pt;}
.wa{width:59.766667pt;}
.w8{width:80.833333pt;}
.w4{width:86.433333pt;}
.w7{width:96.033333pt;}
.w5{width:113.633333pt;}
.wd{width:566.400000pt;}
.w3{width:622.400000pt;}
.w2{width:649.066667pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4a{left:4.533333pt;}
.x56{left:10.920000pt;}
.x5b{left:12.000000pt;}
.x50{left:13.066667pt;}
.x59{left:14.666667pt;}
.x54{left:16.533333pt;}
.x58{left:17.613333pt;}
.x44{left:19.233333pt;}
.x2b{left:20.633333pt;}
.x57{left:22.400000pt;}
.x52{left:24.000000pt;}
.x55{left:26.133333pt;}
.x5a{left:27.480000pt;}
.x4f{left:30.133333pt;}
.x40{left:34.566667pt;}
.x2c{left:36.900000pt;}
.x4e{left:42.400000pt;}
.x2a{left:53.200000pt;}
.x3f{left:55.333333pt;}
.x1{left:56.833322pt;}
.xd{left:57.899988pt;}
.x2f{left:58.966655pt;}
.x4{left:60.033322pt;}
.x2e{left:62.040000pt;}
.x6b{left:66.166655pt;}
.x29{left:70.026667pt;}
.x66{left:70.933333pt;}
.x12{left:72.533333pt;}
.x46{left:80.800000pt;}
.x70{left:82.433322pt;}
.x33{left:85.600000pt;}
.x6c{left:94.966655pt;}
.x6f{left:107.233322pt;}
.x25{left:109.493333pt;}
.x43{left:113.240000pt;}
.x41{left:116.773333pt;}
.x27{left:119.640000pt;}
.x48{left:127.233322pt;}
.x42{left:132.200000pt;}
.x67{left:133.800000pt;}
.x7{left:142.999988pt;}
.x28{left:154.160000pt;}
.x26{left:156.733333pt;}
.x6{left:165.933322pt;}
.x6e{left:175.266655pt;}
.x49{left:181.666667pt;}
.x65{left:207.066667pt;}
.x2{left:212.333322pt;}
.x6d{left:217.133322pt;}
.x5c{left:221.400000pt;}
.x60{left:234.866667pt;}
.x3e{left:236.640000pt;}
.x5e{left:238.093333pt;}
.x3{left:239.039988pt;}
.x5d{left:241.506667pt;}
.xf{left:247.573322pt;}
.x34{left:250.626667pt;}
.x35{left:256.733333pt;}
.x4b{left:268.106667pt;}
.x5f{left:274.866667pt;}
.x37{left:280.626667pt;}
.x30{left:284.106655pt;}
.x38{left:289.733333pt;}
.x36{left:295.666667pt;}
.x61{left:301.506667pt;}
.x62{left:304.733333pt;}
.x24{left:310.733333pt;}
.x13{left:325.226667pt;}
.x5{left:327.866655pt;}
.x11{left:329.199988pt;}
.x15{left:331.560000pt;}
.x14{left:334.733333pt;}
.x18{left:337.866667pt;}
.x68{left:347.840000pt;}
.x1a{left:350.200000pt;}
.x17{left:353.306667pt;}
.x16{left:359.306667pt;}
.x19{left:362.493333pt;}
.x63{left:364.706667pt;}
.x1d{left:365.666667pt;}
.x1b{left:368.800000pt;}
.x4c{left:381.733333pt;}
.x1c{left:384.373333pt;}
.x45{left:390.600000pt;}
.x32{left:397.733322pt;}
.xe{left:420.973322pt;}
.x69{left:425.506655pt;}
.x4d{left:435.106667pt;}
.x2d{left:438.706667pt;}
.x6a{left:449.506655pt;}
.x51{left:471.360000pt;}
.x3b{left:490.426667pt;}
.x3d{left:496.533333pt;}
.xa{left:498.306655pt;}
.x39{left:502.573333pt;}
.x3c{left:505.466667pt;}
.x64{left:514.760000pt;}
.xc{left:520.466655pt;}
.xb{left:522.599988pt;}
.x22{left:530.160000pt;}
.x9{left:531.933322pt;}
.x21{left:533.200000pt;}
.x3a{left:547.506667pt;}
.x53{left:566.866667pt;}
.x23{left:573.666667pt;}
.x8{left:578.866655pt;}
.x1e{left:580.000000pt;}
.x20{left:589.066667pt;}
.x1f{left:592.333333pt;}
.x47{left:681.839988pt;}
.x31{left:709.866655pt;}
.x10{left:722.933322pt;}
}




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