
    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_bb78a702cb1bd8853a22debe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_5bf91e761781d60cec50175a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_4b2d981697d2af7de88f6b68.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.887091;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_e1a5fb990061c71b41ef16c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_b4276e01d77d23b19a3c3a00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.706000;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_22e596cedde335d1935a18ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_d4a49d71c0529f06b2e8eb43.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_c1c4a4f098c496eef189c011.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.001000;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_e32a6a36d980a0a4ae678db6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_fd0649d8d2d17692a796d0c7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_2b836cc0b27e63bd449c3a94.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.999000;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_eeaf79161bac51a9798cf17a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_36211c07f82d0f243eb3847a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vb{vertical-align:-21.696000px;}
.v3{vertical-align:-14.766000px;}
.v1{vertical-align:-13.290000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:14.766000px;}
.v2{vertical-align:19.530000px;}
.v4{vertical-align:21.696000px;}
.v5{vertical-align:31.020000px;}
.va{vertical-align:36.462000px;}
.v7{vertical-align:42.858000px;}
.v6{vertical-align:51.390000px;}
.v8{vertical-align:53.436000px;}
.lsb{letter-spacing:0.000000px;}
.ls53{letter-spacing:0.000017px;}
.ls42{letter-spacing:0.000065px;}
.ls38{letter-spacing:0.002357px;}
.lsc{letter-spacing:0.002378px;}
.lsf{letter-spacing:0.002400px;}
.ls44{letter-spacing:0.002640px;}
.ls32{letter-spacing:0.002736px;}
.ls22{letter-spacing:0.003587px;}
.ls8{letter-spacing:0.003634px;}
.ls4f{letter-spacing:0.004200px;}
.ls52{letter-spacing:0.004800px;}
.ls29{letter-spacing:0.896912px;}
.ls3{letter-spacing:2.746925px;}
.ls6{letter-spacing:2.984983px;}
.ls2{letter-spacing:2.986886px;}
.ls28{letter-spacing:2.987420px;}
.ls1d{letter-spacing:2.987447px;}
.ls48{letter-spacing:2.989464px;}
.ls7{letter-spacing:2.990983px;}
.ls18{letter-spacing:2.992555px;}
.ls35{letter-spacing:2.993420px;}
.ls23{letter-spacing:2.993447px;}
.ls3c{letter-spacing:3.047803px;}
.ls51{letter-spacing:3.053803px;}
.ls2a{letter-spacing:3.164239px;}
.ls2d{letter-spacing:3.170239px;}
.ls11{letter-spacing:3.993296px;}
.ls3b{letter-spacing:5.377956px;}
.ls41{letter-spacing:8.364065px;}
.ls12{letter-spacing:11.733638px;}
.ls14{letter-spacing:12.490376px;}
.ls2b{letter-spacing:13.270183px;}
.ls0{letter-spacing:16.300915px;}
.ls17{letter-spacing:16.602583px;}
.ls49{letter-spacing:16.604383px;}
.ls4{letter-spacing:16.617617px;}
.lse{letter-spacing:18.488758px;}
.ls2c{letter-spacing:19.589447px;}
.ls24{letter-spacing:19.592983px;}
.ls2f{letter-spacing:19.595420px;}
.ls16{letter-spacing:19.595447px;}
.ls5{letter-spacing:19.598983px;}
.ls4a{letter-spacing:19.902300px;}
.ls15{letter-spacing:19.904378px;}
.ls36{letter-spacing:19.904383px;}
.ls4b{letter-spacing:19.904640px;}
.lsd{letter-spacing:19.904758px;}
.ls3e{letter-spacing:19.905217px;}
.ls3d{letter-spacing:19.905244px;}
.ls40{letter-spacing:19.905500px;}
.ls1e{letter-spacing:19.906200px;}
.ls47{letter-spacing:19.906708px;}
.ls10{letter-spacing:19.908300px;}
.ls19{letter-spacing:19.910378px;}
.ls1f{letter-spacing:19.910640px;}
.ls45{letter-spacing:19.911292px;}
.ls30{letter-spacing:20.798912px;}
.ls26{letter-spacing:20.804912px;}
.ls39{letter-spacing:20.993803px;}
.ls1{letter-spacing:20.998886px;}
.ls33{letter-spacing:21.909292px;}
.ls4e{letter-spacing:22.606200px;}
.ls31{letter-spacing:22.892400px;}
.ls9{letter-spacing:22.892983px;}
.ls27{letter-spacing:22.895420px;}
.ls43{letter-spacing:22.895447px;}
.ls2e{letter-spacing:22.898400px;}
.ls13{letter-spacing:22.949803px;}
.ls25{letter-spacing:22.955803px;}
.ls3a{letter-spacing:25.285956px;}
.ls46{letter-spacing:26.100300px;}
.ls34{letter-spacing:26.183803px;}
.ls37{letter-spacing:26.380200px;}
.ls3f{letter-spacing:26.540383px;}
.ls4c{letter-spacing:27.554983px;}
.ls4d{letter-spacing:29.392200px;}
.lsa{letter-spacing:29.892583px;}
.ls21{letter-spacing:32.435803px;}
.ls50{letter-spacing:32.441803px;}
.ls1a{letter-spacing:32.687803px;}
.ls20{letter-spacing:41.014200px;}
.ls1c{letter-spacing:44.440376px;}
.ls1b{letter-spacing:139.149167px;}
.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;}
}
.ws22{word-spacing:-33.354785px;}
.ws7{word-spacing:-31.364467px;}
.ws6e{word-spacing:-30.007351px;}
.ws25{word-spacing:-16.737168px;}
.wsa{word-spacing:-15.063552px;}
.ws27{word-spacing:-11.715984px;}
.wsd{word-spacing:-10.042368px;}
.ws29{word-spacing:-6.814418px;}
.ws33{word-spacing:-6.754643px;}
.ws53{word-spacing:-4.244068px;}
.ws45{word-spacing:-3.466985px;}
.ws46{word-spacing:-3.407209px;}
.wsdd{word-spacing:-2.929004px;}
.wsca{word-spacing:-2.762404px;}
.wsc7{word-spacing:-2.760751px;}
.wsc9{word-spacing:-2.749678px;}
.wsc8{word-spacing:-2.723988px;}
.ws21{word-spacing:-2.450800px;}
.wsac{word-spacing:-2.211697px;}
.wscd{word-spacing:-2.151922px;}
.wsde{word-spacing:-1.912819px;}
.wsaa{word-spacing:-1.793268px;}
.ws15{word-spacing:-1.673717px;}
.wsd9{word-spacing:-1.315063px;}
.ws4{word-spacing:-1.237363px;}
.wsd2{word-spacing:-0.896634px;}
.ws3d{word-spacing:-0.418429px;}
.ws20{word-spacing:-0.298878px;}
.wsa2{word-spacing:-0.239102px;}
.ws26{word-spacing:-0.179327px;}
.ws24{word-spacing:-0.119551px;}
.ws30{word-spacing:0.000000px;}
.ws1a{word-spacing:0.239102px;}
.wsa0{word-spacing:0.298878px;}
.ws7c{word-spacing:0.597756px;}
.ws8f{word-spacing:0.717307px;}
.ws14{word-spacing:0.896634px;}
.ws3b{word-spacing:0.956410px;}
.ws19{word-spacing:1.075961px;}
.ws17{word-spacing:1.135736px;}
.ws84{word-spacing:1.195512px;}
.ws83{word-spacing:1.208507px;}
.wsdc{word-spacing:1.255288px;}
.ws92{word-spacing:1.434614px;}
.ws93{word-spacing:1.461149px;}
.wsc4{word-spacing:1.494390px;}
.wsc5{word-spacing:1.508263px;}
.ws40{word-spacing:1.733492px;}
.wsbd{word-spacing:1.793268px;}
.ws3c{word-spacing:1.912819px;}
.ws9a{word-spacing:2.271473px;}
.ws0{word-spacing:2.272433px;}
.wsa1{word-spacing:2.760114px;}
.wsd1{word-spacing:2.869229px;}
.wsb{word-spacing:2.905114px;}
.ws7f{word-spacing:2.929004px;}
.wsc{word-spacing:2.958912px;}
.wsd0{word-spacing:2.988780px;}
.ws66{word-spacing:3.048556px;}
.ws18{word-spacing:3.093170px;}
.ws69{word-spacing:3.107180px;}
.ws28{word-spacing:3.108331px;}
.ws2b{word-spacing:3.109378px;}
.ws88{word-spacing:3.109633px;}
.ws79{word-spacing:3.111407px;}
.ws59{word-spacing:3.111665px;}
.ws6a{word-spacing:3.112267px;}
.ws8b{word-spacing:3.112736px;}
.ws71{word-spacing:3.163290px;}
.ws50{word-spacing:3.163663px;}
.ws6f{word-spacing:3.164507px;}
.ws44{word-spacing:3.164914px;}
.ws2a{word-spacing:3.164953px;}
.wsad{word-spacing:3.165132px;}
.ws76{word-spacing:3.165629px;}
.wsab{word-spacing:3.165698px;}
.ws4c{word-spacing:3.165715px;}
.ws43{word-spacing:3.165982px;}
.ws87{word-spacing:3.166015px;}
.ws55{word-spacing:3.166170px;}
.ws8a{word-spacing:3.166554px;}
.ws5e{word-spacing:3.166565px;}
.ws94{word-spacing:3.166598px;}
.ws75{word-spacing:3.166739px;}
.ws9f{word-spacing:3.166997px;}
.wsbf{word-spacing:3.167446px;}
.ws4b{word-spacing:3.167798px;}
.ws67{word-spacing:3.168007px;}
.ws90{word-spacing:3.168054px;}
.ws23{word-spacing:3.168107px;}
.ws5c{word-spacing:3.168847px;}
.ws86{word-spacing:3.168905px;}
.ws77{word-spacing:3.169201px;}
.wsc3{word-spacing:3.169262px;}
.wsbe{word-spacing:3.169282px;}
.ws51{word-spacing:3.169290px;}
.wsc6{word-spacing:3.169409px;}
.wscc{word-spacing:3.169439px;}
.ws7d{word-spacing:3.169525px;}
.wsc2{word-spacing:3.169554px;}
.ws8c{word-spacing:3.169882px;}
.ws49{word-spacing:3.169898px;}
.ws42{word-spacing:3.170142px;}
.ws3f{word-spacing:3.170154px;}
.ws7a{word-spacing:3.170507px;}
.ws9c{word-spacing:3.170524px;}
.ws5b{word-spacing:3.170777px;}
.ws58{word-spacing:3.170794px;}
.ws4a{word-spacing:3.170822px;}
.wsa6{word-spacing:3.170904px;}
.ws7b{word-spacing:3.171048px;}
.ws96{word-spacing:3.171312px;}
.ws5a{word-spacing:3.171403px;}
.ws95{word-spacing:3.171560px;}
.ws80{word-spacing:3.171629px;}
.ws57{word-spacing:3.171698px;}
.ws5d{word-spacing:3.171715px;}
.ws56{word-spacing:3.171758px;}
.ws9e{word-spacing:3.171767px;}
.ws52{word-spacing:3.171982px;}
.ws78{word-spacing:3.172015px;}
.ws4f{word-spacing:3.172039px;}
.ws97{word-spacing:3.172212px;}
.ws48{word-spacing:3.172565px;}
.wsf{word-spacing:3.174106px;}
.wsa8{word-spacing:3.224855px;}
.wsbc{word-spacing:3.228290px;}
.ws8d{word-spacing:3.229667px;}
.ws81{word-spacing:3.230868px;}
.ws13{word-spacing:3.287658px;}
.ws1{word-spacing:3.299635px;}
.ws10{word-spacing:3.389299px;}
.ws3{word-spacing:3.536743px;}
.wsb3{word-spacing:3.555173px;}
.wsb2{word-spacing:3.586536px;}
.ws8e{word-spacing:3.646312px;}
.ws5{word-spacing:3.712090px;}
.ws6b{word-spacing:3.885414px;}
.wsb8{word-spacing:3.964264px;}
.wsb7{word-spacing:3.966908px;}
.wsb4{word-spacing:3.992478px;}
.wsb6{word-spacing:4.004965px;}
.wscb{word-spacing:4.124516px;}
.ws1e{word-spacing:4.244068px;}
.ws6{word-spacing:4.250074px;}
.wsae{word-spacing:4.423394px;}
.wscf{word-spacing:4.479082px;}
.wsce{word-spacing:4.483170px;}
.ws6d{word-spacing:4.560748px;}
.wsa4{word-spacing:4.602721px;}
.wsa3{word-spacing:4.662497px;}
.ws2{word-spacing:4.949453px;}
.ws72{word-spacing:5.140702px;}
.ws73{word-spacing:5.200477px;}
.wse{word-spacing:5.272243px;}
.wsbb{word-spacing:5.379804px;}
.wsb5{word-spacing:5.559131px;}
.ws9b{word-spacing:5.678682px;}
.ws54{word-spacing:5.798233px;}
.ws1d{word-spacing:5.858009px;}
.wsa5{word-spacing:5.872997px;}
.ws47{word-spacing:5.917784px;}
.ws1b{word-spacing:5.977560px;}
.ws2f{word-spacing:6.097111px;}
.ws3a{word-spacing:6.156887px;}
.ws98{word-spacing:6.159560px;}
.ws74{word-spacing:6.395989px;}
.ws36{word-spacing:6.455765px;}
.ws32{word-spacing:6.515540px;}
.wsd6{word-spacing:6.575316px;}
.ws68{word-spacing:6.742733px;}
.ws61{word-spacing:6.742861px;}
.ws60{word-spacing:6.754643px;}
.ws41{word-spacing:6.814464px;}
.ws3e{word-spacing:6.874194px;}
.ws12{word-spacing:7.053521px;}
.ws35{word-spacing:7.113296px;}
.ws2c{word-spacing:7.173072px;}
.ws99{word-spacing:7.412174px;}
.ws1f{word-spacing:7.471950px;}
.ws7e{word-spacing:7.531726px;}
.wsda{word-spacing:7.591501px;}
.ws16{word-spacing:7.770828px;}
.ws1c{word-spacing:7.830604px;}
.ws9{word-spacing:7.854566px;}
.ws4e{word-spacing:7.878748px;}
.ws6c{word-spacing:7.879301px;}
.ws37{word-spacing:8.129482px;}
.ws63{word-spacing:8.177334px;}
.ws38{word-spacing:8.189323px;}
.ws8{word-spacing:8.284954px;}
.ws62{word-spacing:8.667462px;}
.wsd8{word-spacing:8.787013px;}
.wsb0{word-spacing:9.145667px;}
.ws85{word-spacing:9.215334px;}
.wsc1{word-spacing:9.265218px;}
.ws91{word-spacing:9.324994px;}
.ws65{word-spacing:9.384769px;}
.ws82{word-spacing:9.623872px;}
.ws31{word-spacing:9.982525px;}
.wsd4{word-spacing:10.460730px;}
.wsdf{word-spacing:10.580281px;}
.ws34{word-spacing:10.640057px;}
.ws2e{word-spacing:11.118262px;}
.ws89{word-spacing:11.177334px;}
.wsd3{word-spacing:11.237813px;}
.wsd7{word-spacing:11.297588px;}
.wsaf{word-spacing:12.493100px;}
.wsd5{word-spacing:12.552876px;}
.wsc0{word-spacing:12.672427px;}
.wsa9{word-spacing:12.710855px;}
.ws9d{word-spacing:12.851754px;}
.wsb1{word-spacing:12.911530px;}
.wsa7{word-spacing:13.150632px;}
.ws39{word-spacing:13.155415px;}
.ws64{word-spacing:13.270183px;}
.wsba{word-spacing:14.884124px;}
.ws2d{word-spacing:15.302554px;}
.wsdb{word-spacing:18.112007px;}
.ws11{word-spacing:18.936984px;}
.wsb9{word-spacing:19.606397px;}
.ws5f{word-spacing:34.550297px;}
.ws70{word-spacing:51.048748px;}
.ws4d{word-spacing:112.736782px;}
._1c{margin-left:-46.445641px;}
._27{margin-left:-41.125613px;}
._1e{margin-left:-28.632512px;}
._28{margin-left:-26.361040px;}
._1d{margin-left:-17.932680px;}
._1f{margin-left:-16.111800px;}
._23{margin-left:-13.175300px;}
._29{margin-left:-8.005180px;}
._16{margin-left:-5.738458px;}
._2{margin-left:-4.415786px;}
._0{margin-left:-2.685602px;}
._3{margin-left:-1.434618px;}
._4{width:1.391209px;}
._5{width:2.685602px;}
._a{width:3.938118px;}
._24{width:6.151278px;}
._11{width:10.322988px;}
._1b{width:11.597492px;}
._2a{width:12.738638px;}
._25{width:13.758145px;}
._18{width:14.764573px;}
._1a{width:15.973277px;}
._17{width:18.093653px;}
._6{width:19.833671px;}
._d{width:21.072509px;}
._13{width:22.077006px;}
._10{width:23.248777px;}
._9{width:24.585962px;}
._8{width:25.760813px;}
._7{width:26.935060px;}
._f{width:28.764102px;}
._b{width:30.234701px;}
._26{width:31.392679px;}
._14{width:33.084527px;}
._c{width:34.183048px;}
._e{width:35.593520px;}
._15{width:36.824240px;}
._21{width:38.077901px;}
._12{width:39.307375px;}
._1{width:41.523545px;}
._22{width:43.038600px;}
._20{width:59.037630px;}
._19{width:128.926212px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.887800px;}
.fs4{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y27{bottom:63.168000px;}
.yaf{bottom:108.000000px;}
.y26{bottom:112.788000px;}
.y6d{bottom:120.180000px;}
.yae{bottom:125.932500px;}
.y25{bottom:130.720500px;}
.y128{bottom:134.899500px;}
.y4f{bottom:134.920500px;}
.y1b5{bottom:137.704500px;}
.yad{bottom:143.865000px;}
.y107{bottom:146.260500px;}
.y147{bottom:152.832000px;}
.y6c{bottom:153.057000px;}
.y1b4{bottom:155.638500px;}
.y24{bottom:157.620000px;}
.y127{bottom:161.797500px;}
.y4e{bottom:161.820000px;}
.y17d{bottom:161.830500px;}
.y8d{bottom:164.125500px;}
.y106{bottom:164.193000px;}
.yac{bottom:170.764500px;}
.y1b3{bottom:173.571000px;}
.y23{bottom:175.552500px;}
.y126{bottom:179.731500px;}
.y4d{bottom:179.752500px;}
.y17c{bottom:179.764500px;}
.y8c{bottom:182.058000px;}
.y105{bottom:191.787000px;}
.yce{bottom:193.398000px;}
.y22{bottom:193.485000px;}
.y6b{bottom:195.822000px;}
.y146{bottom:197.664000px;}
.y4c{bottom:197.685000px;}
.y1b2{bottom:200.470500px;}
.yed{bottom:206.035500px;}
.y17b{bottom:206.662500px;}
.y125{bottom:207.325500px;}
.y165{bottom:208.444500px;}
.ycd{bottom:211.330500px;}
.yab{bottom:214.668000px;}
.y1b1{bottom:218.403000px;}
.y6a{bottom:222.721500px;}
.y8b{bottom:223.900500px;}
.y145{bottom:224.563500px;}
.y21{bottom:226.362000px;}
.y164{bottom:226.378500px;}
.y104{bottom:230.652000px;}
.y197{bottom:233.529000px;}
.y4b{bottom:233.551500px;}
.y1b0{bottom:236.335500px;}
.ycc{bottom:238.228500px;}
.y17a{bottom:242.529000px;}
.y163{bottom:244.311000px;}
.y124{bottom:248.721000px;}
.yaa{bottom:250.534500px;}
.y144{bottom:250.758000px;}
.yec{bottom:250.867500px;}
.y69{bottom:255.598500px;}
.y8a{bottom:256.777500px;}
.y103{bottom:257.551500px;}
.y20{bottom:259.239000px;}
.y1af{bottom:263.235000px;}
.ycb{bottom:265.128000px;}
.y123{bottom:266.653500px;}
.ya9{bottom:268.467000px;}
.y196{bottom:269.395500px;}
.y4a{bottom:269.416500px;}
.y179{bottom:269.427000px;}
.y162{bottom:271.210500px;}
.y143{bottom:277.950000px;}
.y1ae{bottom:281.167500px;}
.yeb{bottom:286.732500px;}
.y49{bottom:287.349000px;}
.y1f{bottom:292.116000px;}
.yca{bottom:292.722000px;}
.y68{bottom:293.292000px;}
.y102{bottom:293.418000px;}
.y122{bottom:293.553000px;}
.y142{bottom:295.884000px;}
.y195{bottom:296.293500px;}
.y178{bottom:296.326500px;}
.y161{bottom:298.108500px;}
.y89{bottom:298.620000px;}
.y1ad{bottom:299.100000px;}
.ya8{bottom:308.763000px;}
.y194{bottom:314.226000px;}
.y177{bottom:314.259000px;}
.yea{bottom:314.326500px;}
.y48{bottom:314.943000px;}
.y121{bottom:318.858000px;}
.y67{bottom:320.191500px;}
.y101{bottom:320.316000px;}
.y141{bottom:322.782000px;}
.y1e{bottom:324.991500px;}
.y160{bottom:325.008000px;}
.y1ac{bottom:325.999500px;}
.y88{bottom:331.497000px;}
.y193{bottom:332.160000px;}
.yc9{bottom:334.576500px;}
.y120{bottom:336.790500px;}
.y66{bottom:338.124000px;}
.y100{bottom:338.248500px;}
.ya7{bottom:340.093500px;}
.y140{bottom:340.716000px;}
.y176{bottom:341.158500px;}
.y1d{bottom:342.925500px;}
.y15f{bottom:342.940500px;}
.y87{bottom:349.429500px;}
.yc8{bottom:352.509000px;}
.ye9{bottom:353.193000px;}
.y1ab{bottom:353.593500px;}
.y11f{bottom:354.723000px;}
.y47{bottom:356.797500px;}
.y175{bottom:359.091000px;}
.y192{bottom:359.754000px;}
.y1c{bottom:360.858000px;}
.y15e{bottom:360.873000px;}
.yff{bottom:365.148000px;}
.y13f{bottom:367.614000px;}
.y65{bottom:371.001000px;}
.y11e{bottom:372.655500px;}
.y46{bottom:374.730000px;}
.y86{bottom:377.023500px;}
.y1b{bottom:378.790500px;}
.y15d{bottom:378.807000px;}
.yc7{bottom:379.408500px;}
.ye8{bottom:380.787000px;}
.ya6{bottom:383.997000px;}
.y13e{bottom:385.546500px;}
.y174{bottom:386.685000px;}
.y11d{bottom:390.588000px;}
.y45{bottom:392.662500px;}
.y1aa{bottom:395.448000px;}
.y1a{bottom:396.723000px;}
.yc6{bottom:397.341000px;}
.y191{bottom:400.435500px;}
.yfe{bottom:401.014500px;}
.y64{bottom:403.878000px;}
.y85{bottom:404.617500px;}
.y15c{bottom:406.401000px;}
.y11c{bottom:408.520500px;}
.y44{bottom:410.596500px;}
.y13d{bottom:412.446000px;}
.y1a9{bottom:413.380500px;}
.y19{bottom:414.655500px;}
.y190{bottom:418.368000px;}
.yfd{bottom:418.947000px;}
.ya5{bottom:419.863500px;}
.ye7{bottom:422.640000px;}
.y43{bottom:428.529000px;}
.y173{bottom:428.539500px;}
.y1a8{bottom:431.313000px;}
.y63{bottom:431.472000px;}
.y18{bottom:432.588000px;}
.yc5{bottom:433.207500px;}
.y11b{bottom:436.114500px;}
.ya4{bottom:437.796000px;}
.y13c{bottom:439.345500px;}
.ye6{bottom:440.574000px;}
.y18f{bottom:445.267500px;}
.yfc{bottom:445.845000px;}
.y84{bottom:446.472000px;}
.y15b{bottom:448.254000px;}
.y17{bottom:450.522000px;}
.yc4{bottom:451.140000px;}
.y1a7{bottom:458.212500px;}
.ye5{bottom:458.506500px;}
.y42{bottom:461.275500px;}
.y18e{bottom:463.200000px;}
.y83{bottom:464.406000px;}
.ya3{bottom:464.695500px;}
.y16{bottom:468.454500px;}
.y62{bottom:473.325000px;}
.y172{bottom:473.371500px;}
.yfb{bottom:473.439000px;}
.y13b{bottom:474.507000px;}
.y11a{bottom:474.522000px;}
.y1a6{bottom:476.145000px;}
.ye4{bottom:476.439000px;}
.y15a{bottom:481.131000px;}
.y18d{bottom:481.132500px;}
.y15{bottom:486.387000px;}
.yc3{bottom:487.005000px;}
.y1ca{bottom:489.717000px;}
.y61{bottom:491.259000px;}
.y82{bottom:491.304000px;}
.ya2{bottom:491.593500px;}
.y119{bottom:492.454500px;}
.y1a5{bottom:494.077500px;}
.y13a{bottom:497.256000px;}
.y18c{bottom:499.065000px;}
.ye3{bottom:504.033000px;}
.y14{bottom:504.319500px;}
.y1c9{bottom:507.649500px;}
.y81{bottom:509.236500px;}
.y118{bottom:510.388500px;}
.y41{bottom:510.717000px;}
.yfa{bottom:512.305500px;}
.yc2{bottom:513.904500px;}
.y159{bottom:514.008000px;}
.y139{bottom:515.190000px;}
.y13{bottom:522.252000px;}
.y18b{bottom:525.964500px;}
.y1a4{bottom:526.954500px;}
.y80{bottom:527.170500px;}
.ya1{bottom:527.460000px;}
.y117{bottom:528.321000px;}
.y40{bottom:528.649500px;}
.y60{bottom:532.578000px;}
.yf9{bottom:539.205000px;}
.y12{bottom:540.184500px;}
.y158{bottom:540.907500px;}
.yc1{bottom:541.498500px;}
.ye2{bottom:542.898000px;}
.y1c8{bottom:543.514500px;}
.y171{bottom:545.103000px;}
.y3f{bottom:546.583500px;}
.y138{bottom:546.892500px;}
.y18a{bottom:552.042000px;}
.y7f{bottom:554.068500px;}
.ya0{bottom:554.359500px;}
.y116{bottom:555.220500px;}
.y11{bottom:558.118500px;}
.y157{bottom:558.840000px;}
.ye1{bottom:560.830500px;}
.y1c7{bottom:561.447000px;}
.y5f{bottom:563.913000px;}
.y3e{bottom:564.516000px;}
.y1a3{bottom:569.719500px;}
.y7e{bottom:572.002500px;}
.yf8{bottom:575.070000px;}
.y10{bottom:576.051000px;}
.y189{bottom:578.119500px;}
.y137{bottom:578.595000px;}
.y9f{bottom:581.953500px;}
.y3d{bottom:582.448500px;}
.yc0{bottom:583.353000px;}
.y115{bottom:585.439500px;}
.y156{bottom:585.739500px;}
.ye0{bottom:587.730000px;}
.y5e{bottom:588.520500px;}
.y7d{bottom:589.935000px;}
.y1a2{bottom:596.617500px;}
.y1c6{bottom:597.313500px;}
.y170{bottom:598.900500px;}
.ybf{bottom:601.285500px;}
.yf7{bottom:602.664000px;}
.y188{bottom:605.019000px;}
.y136{bottom:606.189000px;}
.yf{bottom:608.797500px;}
.y3c{bottom:610.042500px;}
.y1a1{bottom:614.551500px;}
.y1c5{bottom:615.246000px;}
.y114{bottom:615.657000px;}
.y16f{bottom:616.833000px;}
.y9e{bottom:620.551500px;}
.y7c{bottom:622.681500px;}
.y187{bottom:622.951500px;}
.ydf{bottom:623.596500px;}
.y5d{bottom:627.291000px;}
.y155{bottom:627.582000px;}
.ybe{bottom:628.185000px;}
.y1a0{bottom:632.484000px;}
.y16e{bottom:634.767000px;}
.y186{bottom:640.885500px;}
.yde{bottom:641.529000px;}
.y113{bottom:642.556500px;}
.ybd{bottom:646.117500px;}
.y9d{bottom:646.522500px;}
.y135{bottom:647.839500px;}
.y3b{bottom:648.907500px;}
.y19f{bottom:650.416500px;}
.y1c4{bottom:651.111000px;}
.y16d{bottom:652.699500px;}
.y5c{bottom:654.190500px;}
.ye{bottom:658.239000px;}
.yf6{bottom:659.461500px;}
.y154{bottom:660.459000px;}
.y112{bottom:660.489000px;}
.ybc{bottom:664.050000px;}
.y9c{bottom:664.455000px;}
.y3a{bottom:666.840000px;}
.ydd{bottom:668.427000px;}
.y185{bottom:668.479500px;}
.y1c3{bottom:669.043500px;}
.y7b{bottom:672.123000px;}
.yd{bottom:674.677500px;}
.y134{bottom:674.739000px;}
.y19e{bottom:677.316000px;}
.y153{bottom:678.391500px;}
.y111{bottom:678.423000px;}
.y16c{bottom:680.293500px;}
.y39{bottom:684.774000px;}
.yf5{bottom:686.361000px;}
.y5b{bottom:690.055500px;}
.y9b{bottom:690.427500px;}
.ybb{bottom:690.949500px;}
.yc{bottom:691.116000px;}
.y133{bottom:692.671500px;}
.y19d{bottom:695.248500px;}
.ydc{bottom:696.021000px;}
.y1c2{bottom:704.910000px;}
.y152{bottom:705.985500px;}
.y110{bottom:706.017000px;}
.yb{bottom:707.554500px;}
.y7a{bottom:707.989500px;}
.y9a{bottom:708.360000px;}
.yba{bottom:708.882000px;}
.y184{bottom:709.161000px;}
.y132{bottom:710.604000px;}
.y38{bottom:711.672000px;}
.y19c{bottom:713.181000px;}
.y5a{bottom:716.955000px;}
.y16b{bottom:722.148000px;}
.yf4{bottom:722.226000px;}
.y1c1{bottom:722.842500px;}
.ya{bottom:723.993000px;}
.y79{bottom:725.922000px;}
.y183{bottom:727.093500px;}
.y131{bottom:728.538000px;}
.y37{bottom:729.604500px;}
.ydb{bottom:734.887500px;}
.y99{bottom:735.259500px;}
.yb9{bottom:736.476000px;}
.y16a{bottom:740.080500px;}
.y9{bottom:740.431500px;}
.y78{bottom:743.854500px;}
.y59{bottom:744.549000px;}
.y182{bottom:745.026000px;}
.y10f{bottom:745.201500px;}
.y19b{bottom:745.927500px;}
.y36{bottom:747.538500px;}
.y151{bottom:747.840000px;}
.yf3{bottom:749.125500px;}
.yda{bottom:752.820000px;}
.y98{bottom:753.192000px;}
.y8{bottom:756.870000px;}
.y169{bottom:758.013000px;}
.y1c0{bottom:758.707500px;}
.y150{bottom:765.772500px;}
.y130{bottom:769.206000px;}
.y77{bottom:771.448500px;}
.y181{bottom:771.925500px;}
.y35{bottom:774.436500px;}
.yb8{bottom:775.341000px;}
.y168{bottom:775.945500px;}
.yf2{bottom:776.025000px;}
.y1bf{bottom:776.640000px;}
.y10e{bottom:777.390000px;}
.yd9{bottom:779.719500px;}
.y97{bottom:780.786000px;}
.y7{bottom:781.527000px;}
.y58{bottom:786.403500px;}
.y180{bottom:789.858000px;}
.y34{bottom:792.370500px;}
.y14f{bottom:792.672000px;}
.yb7{bottom:793.273500px;}
.y19a{bottom:795.370500px;}
.y12f{bottom:800.908500px;}
.yf1{bottom:803.619000px;}
.y57{bottom:804.336000px;}
.y10d{bottom:804.984000px;}
.yd8{bottom:806.617500px;}
.y17f{bottom:807.790500px;}
.y167{bottom:808.692000px;}
.y1be{bottom:809.388000px;}
.y33{bottom:810.303000px;}
.y14e{bottom:810.604500px;}
.y76{bottom:813.303000px;}
.y12e{bottom:818.841000px;}
.yb6{bottom:820.173000px;}
.y6{bottom:820.381500px;}
.y199{bottom:822.268500px;}
.y96{bottom:822.373500px;}
.y14d{bottom:828.537000px;}
.y56{bottom:831.235500px;}
.y17e{bottom:835.384500px;}
.y32{bottom:837.202500px;}
.y75{bottom:840.201000px;}
.y198{bottom:840.202500px;}
.y95{bottom:840.306000px;}
.yd7{bottom:842.484000px;}
.y10c{bottom:843.391500px;}
.yf0{bottom:845.473500px;}
.y12d{bottom:845.740500px;}
.yb5{bottom:847.767000px;}
.y31{bottom:855.135000px;}
.y14c{bottom:855.436500px;}
.y74{bottom:858.135000px;}
.y94{bottom:858.238500px;}
.y1bd{bottom:858.829500px;}
.y5{bottom:864.508500px;}
.y55{bottom:867.100500px;}
.y10b{bottom:868.695000px;}
.yd6{bottom:870.078000px;}
.y30{bottom:873.067500px;}
.yb4{bottom:875.361000px;}
.y166{bottom:876.067500px;}
.y1bc{bottom:876.762000px;}
.y12c{bottom:877.443000px;}
.y14b{bottom:882.336000px;}
.y73{bottom:885.033000px;}
.y93{bottom:885.138000px;}
.y4{bottom:890.809500px;}
.y1bb{bottom:894.694500px;}
.y2f{bottom:899.967000px;}
.y54{bottom:902.967000px;}
.y10a{bottom:904.561500px;}
.yd5{bottom:908.943000px;}
.y12b{bottom:909.145500px;}
.yef{bottom:911.932500px;}
.y92{bottom:912.037500px;}
.y1ba{bottom:912.627000px;}
.y14a{bottom:915.213000px;}
.y3{bottom:917.110500px;}
.yb3{bottom:917.215500px;}
.y12a{bottom:927.078000px;}
.y2e{bottom:927.561000px;}
.y72{bottom:929.865000px;}
.y91{bottom:929.970000px;}
.y109{bottom:931.459500px;}
.yd4{bottom:936.537000px;}
.y53{bottom:938.832000px;}
.y1b9{bottom:939.526500px;}
.yb2{bottom:944.115000px;}
.y71{bottom:947.799000px;}
.y129{bottom:954.672000px;}
.yee{bottom:956.764500px;}
.y90{bottom:956.869500px;}
.y1b8{bottom:957.459000px;}
.y149{bottom:957.925500px;}
.y52{bottom:965.731500px;}
.y2d{bottom:966.426000px;}
.y2{bottom:969.414000px;}
.y70{bottom:974.697000px;}
.y8f{bottom:974.802000px;}
.y1b7{bottom:975.393000px;}
.yb1{bottom:976.992000px;}
.yd3{bottom:978.391500px;}
.y2c{bottom:984.358500px;}
.y6f{bottom:992.629500px;}
.y1b6{bottom:993.325500px;}
.yd2{bottom:996.324000px;}
.y148{bottom:999.768000px;}
.y51{bottom:1001.596500px;}
.y1{bottom:1002.291000px;}
.y8e{bottom:1006.132500px;}
.yb0{bottom:1009.867500px;}
.y6e{bottom:1010.563500px;}
.y2b{bottom:1011.258000px;}
.yd1{bottom:1014.256500px;}
.y108{bottom:1019.529000px;}
.y2a{bottom:1029.190500px;}
.yd0{bottom:1032.190500px;}
.y50{bottom:1037.461500px;}
.y29{bottom:1047.123000px;}
.ycf{bottom:1064.937000px;}
.y28{bottom:1065.055500px;}
.h4{height:35.865450px;}
.h5{height:37.658880px;}
.h6{height:40.348800px;}
.h9{height:44.831700px;}
.h7{height:46.429200px;}
.h3{height:49.716243px;}
.h2{height:49.781453px;}
.ha{height:53.078100px;}
.hc{height:53.084100px;}
.hd{height:53.798400px;}
.hb{height:62.402100px;}
.h13{height:62.408100px;}
.h8{height:64.557900px;}
.h1{height:73.027727px;}
.h10{height:73.820100px;}
.hf{height:74.240100px;}
.he{height:82.772100px;}
.h12{height:84.158100px;}
.h15{height:84.482100px;}
.h14{height:84.812100px;}
.h11{height:84.818100px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x23{left:103.516500px;}
.xb{left:106.251000px;}
.xa{left:108.000000px;}
.xe{left:126.261000px;}
.x30{left:129.280500px;}
.x31{left:130.416000px;}
.x9{left:145.360500px;}
.x8{left:165.534000px;}
.x1{left:168.507000px;}
.x1c{left:274.509000px;}
.xd{left:331.357500px;}
.x5{left:336.753000px;}
.x1d{left:350.146500px;}
.x1f{left:353.935500px;}
.xc{left:359.566500px;}
.x27{left:361.644000px;}
.x24{left:365.391000px;}
.x4{left:367.911000px;}
.x18{left:373.524000px;}
.x2b{left:375.267000px;}
.x2c{left:376.846500px;}
.x25{left:378.921000px;}
.x26{left:382.048500px;}
.x3{left:385.816500px;}
.x19{left:390.810000px;}
.x15{left:392.028000px;}
.x2d{left:394.132500px;}
.x22{left:396.142500px;}
.x2{left:398.793000px;}
.x6{left:400.807500px;}
.x20{left:405.219000px;}
.x1e{left:407.934000px;}
.x16{left:409.410000px;}
.x21{left:413.938500px;}
.x28{left:415.276500px;}
.x13{left:418.044000px;}
.x11{left:420.126000px;}
.x14{left:421.455000px;}
.x10{left:423.424500px;}
.x7{left:428.563500px;}
.x12{left:437.412000px;}
.x17{left:440.911500px;}
.x2a{left:441.966000px;}
.x1a{left:443.397000px;}
.x2e{left:446.719500px;}
.x29{left:451.528500px;}
.xf{left:455.263500px;}
.x1b{left:502.681500px;}
.x2f{left:506.004000px;}
@media print{
.vb{vertical-align:-19.285333pt;}
.v3{vertical-align:-13.125333pt;}
.v1{vertical-align:-11.813333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:13.125333pt;}
.v2{vertical-align:17.360000pt;}
.v4{vertical-align:19.285333pt;}
.v5{vertical-align:27.573333pt;}
.va{vertical-align:32.410667pt;}
.v7{vertical-align:38.096000pt;}
.v6{vertical-align:45.680000pt;}
.v8{vertical-align:47.498667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls53{letter-spacing:0.000015pt;}
.ls42{letter-spacing:0.000058pt;}
.ls38{letter-spacing:0.002095pt;}
.lsc{letter-spacing:0.002114pt;}
.lsf{letter-spacing:0.002133pt;}
.ls44{letter-spacing:0.002347pt;}
.ls32{letter-spacing:0.002432pt;}
.ls22{letter-spacing:0.003188pt;}
.ls8{letter-spacing:0.003230pt;}
.ls4f{letter-spacing:0.003733pt;}
.ls52{letter-spacing:0.004267pt;}
.ls29{letter-spacing:0.797255pt;}
.ls3{letter-spacing:2.441711pt;}
.ls6{letter-spacing:2.653318pt;}
.ls2{letter-spacing:2.655010pt;}
.ls28{letter-spacing:2.655485pt;}
.ls1d{letter-spacing:2.655508pt;}
.ls48{letter-spacing:2.657301pt;}
.ls7{letter-spacing:2.658652pt;}
.ls18{letter-spacing:2.660049pt;}
.ls35{letter-spacing:2.660818pt;}
.ls23{letter-spacing:2.660842pt;}
.ls3c{letter-spacing:2.709158pt;}
.ls51{letter-spacing:2.714492pt;}
.ls2a{letter-spacing:2.812657pt;}
.ls2d{letter-spacing:2.817990pt;}
.ls11{letter-spacing:3.549597pt;}
.ls3b{letter-spacing:4.780405pt;}
.ls41{letter-spacing:7.434724pt;}
.ls12{letter-spacing:10.429901pt;}
.ls14{letter-spacing:11.102557pt;}
.ls2b{letter-spacing:11.795718pt;}
.ls0{letter-spacing:14.489702pt;}
.ls17{letter-spacing:14.757852pt;}
.ls49{letter-spacing:14.759452pt;}
.ls4{letter-spacing:14.771215pt;}
.lse{letter-spacing:16.434451pt;}
.ls2c{letter-spacing:17.412842pt;}
.ls24{letter-spacing:17.415985pt;}
.ls2f{letter-spacing:17.418151pt;}
.ls16{letter-spacing:17.418175pt;}
.ls5{letter-spacing:17.421318pt;}
.ls4a{letter-spacing:17.690933pt;}
.ls15{letter-spacing:17.692781pt;}
.ls36{letter-spacing:17.692785pt;}
.ls4b{letter-spacing:17.693013pt;}
.lsd{letter-spacing:17.693118pt;}
.ls3e{letter-spacing:17.693526pt;}
.ls3d{letter-spacing:17.693550pt;}
.ls40{letter-spacing:17.693778pt;}
.ls1e{letter-spacing:17.694400pt;}
.ls47{letter-spacing:17.694851pt;}
.ls10{letter-spacing:17.696267pt;}
.ls19{letter-spacing:17.698114pt;}
.ls1f{letter-spacing:17.698347pt;}
.ls45{letter-spacing:17.698926pt;}
.ls30{letter-spacing:18.487922pt;}
.ls26{letter-spacing:18.493255pt;}
.ls39{letter-spacing:18.661158pt;}
.ls1{letter-spacing:18.665677pt;}
.ls33{letter-spacing:19.474926pt;}
.ls4e{letter-spacing:20.094400pt;}
.ls31{letter-spacing:20.348800pt;}
.ls9{letter-spacing:20.349318pt;}
.ls27{letter-spacing:20.351485pt;}
.ls43{letter-spacing:20.351508pt;}
.ls2e{letter-spacing:20.354133pt;}
.ls13{letter-spacing:20.399825pt;}
.ls25{letter-spacing:20.405158pt;}
.ls3a{letter-spacing:22.476405pt;}
.ls46{letter-spacing:23.200267pt;}
.ls34{letter-spacing:23.274492pt;}
.ls37{letter-spacing:23.449067pt;}
.ls3f{letter-spacing:23.591452pt;}
.ls4c{letter-spacing:24.493318pt;}
.ls4d{letter-spacing:26.126400pt;}
.lsa{letter-spacing:26.571185pt;}
.ls21{letter-spacing:28.831825pt;}
.ls50{letter-spacing:28.837158pt;}
.ls1a{letter-spacing:29.055825pt;}
.ls20{letter-spacing:36.457067pt;}
.ls1c{letter-spacing:39.502557pt;}
.ls1b{letter-spacing:123.688148pt;}
.ws22{word-spacing:-29.648698pt;}
.ws7{word-spacing:-27.879526pt;}
.ws6e{word-spacing:-26.673201pt;}
.ws25{word-spacing:-14.877483pt;}
.wsa{word-spacing:-13.389824pt;}
.ws27{word-spacing:-10.414208pt;}
.wsd{word-spacing:-8.926549pt;}
.ws29{word-spacing:-6.057261pt;}
.ws33{word-spacing:-6.004127pt;}
.ws53{word-spacing:-3.772505pt;}
.ws45{word-spacing:-3.081764pt;}
.ws46{word-spacing:-3.028630pt;}
.wsdd{word-spacing:-2.603559pt;}
.wsca{word-spacing:-2.455470pt;}
.wsc7{word-spacing:-2.454001pt;}
.wsc9{word-spacing:-2.444158pt;}
.wsc8{word-spacing:-2.421323pt;}
.ws21{word-spacing:-2.178489pt;}
.wsac{word-spacing:-1.965953pt;}
.wscd{word-spacing:-1.912819pt;}
.wsde{word-spacing:-1.700284pt;}
.wsaa{word-spacing:-1.594016pt;}
.ws15{word-spacing:-1.487748pt;}
.wsd9{word-spacing:-1.168945pt;}
.ws4{word-spacing:-1.099878pt;}
.wsd2{word-spacing:-0.797008pt;}
.ws3d{word-spacing:-0.371937pt;}
.ws20{word-spacing:-0.265669pt;}
.wsa2{word-spacing:-0.212535pt;}
.ws26{word-spacing:-0.159402pt;}
.ws24{word-spacing:-0.106268pt;}
.ws30{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.212535pt;}
.wsa0{word-spacing:0.265669pt;}
.ws7c{word-spacing:0.531339pt;}
.ws8f{word-spacing:0.637606pt;}
.ws14{word-spacing:0.797008pt;}
.ws3b{word-spacing:0.850142pt;}
.ws19{word-spacing:0.956410pt;}
.ws17{word-spacing:1.009543pt;}
.ws84{word-spacing:1.062677pt;}
.ws83{word-spacing:1.074228pt;}
.wsdc{word-spacing:1.115811pt;}
.ws92{word-spacing:1.275213pt;}
.ws93{word-spacing:1.298799pt;}
.wsc4{word-spacing:1.328347pt;}
.wsc5{word-spacing:1.340678pt;}
.ws40{word-spacing:1.540882pt;}
.wsbd{word-spacing:1.594016pt;}
.ws3c{word-spacing:1.700284pt;}
.ws9a{word-spacing:2.019087pt;}
.ws0{word-spacing:2.019940pt;}
.wsa1{word-spacing:2.453435pt;}
.wsd1{word-spacing:2.550426pt;}
.wsb{word-spacing:2.582323pt;}
.ws7f{word-spacing:2.603559pt;}
.wsc{word-spacing:2.630144pt;}
.wsd0{word-spacing:2.656693pt;}
.ws66{word-spacing:2.709827pt;}
.ws18{word-spacing:2.749485pt;}
.ws69{word-spacing:2.761938pt;}
.ws28{word-spacing:2.762961pt;}
.ws2b{word-spacing:2.763891pt;}
.ws88{word-spacing:2.764118pt;}
.ws79{word-spacing:2.765695pt;}
.ws59{word-spacing:2.765924pt;}
.ws6a{word-spacing:2.766460pt;}
.ws8b{word-spacing:2.766877pt;}
.ws71{word-spacing:2.811813pt;}
.ws50{word-spacing:2.812145pt;}
.ws6f{word-spacing:2.812895pt;}
.ws44{word-spacing:2.813257pt;}
.ws2a{word-spacing:2.813292pt;}
.wsad{word-spacing:2.813451pt;}
.ws76{word-spacing:2.813892pt;}
.wsab{word-spacing:2.813954pt;}
.ws4c{word-spacing:2.813969pt;}
.ws43{word-spacing:2.814206pt;}
.ws87{word-spacing:2.814236pt;}
.ws55{word-spacing:2.814373pt;}
.ws8a{word-spacing:2.814715pt;}
.ws5e{word-spacing:2.814724pt;}
.ws94{word-spacing:2.814754pt;}
.ws75{word-spacing:2.814879pt;}
.ws9f{word-spacing:2.815108pt;}
.wsbf{word-spacing:2.815507pt;}
.ws4b{word-spacing:2.815821pt;}
.ws67{word-spacing:2.816006pt;}
.ws90{word-spacing:2.816048pt;}
.ws23{word-spacing:2.816095pt;}
.ws5c{word-spacing:2.816753pt;}
.ws86{word-spacing:2.816804pt;}
.ws77{word-spacing:2.817068pt;}
.wsc3{word-spacing:2.817122pt;}
.wsbe{word-spacing:2.817139pt;}
.ws51{word-spacing:2.817147pt;}
.wsc6{word-spacing:2.817252pt;}
.wscc{word-spacing:2.817279pt;}
.ws7d{word-spacing:2.817356pt;}
.wsc2{word-spacing:2.817381pt;}
.ws8c{word-spacing:2.817673pt;}
.ws49{word-spacing:2.817687pt;}
.ws42{word-spacing:2.817904pt;}
.ws3f{word-spacing:2.817915pt;}
.ws7a{word-spacing:2.818228pt;}
.ws9c{word-spacing:2.818243pt;}
.ws5b{word-spacing:2.818468pt;}
.ws58{word-spacing:2.818483pt;}
.ws4a{word-spacing:2.818509pt;}
.wsa6{word-spacing:2.818581pt;}
.ws7b{word-spacing:2.818709pt;}
.ws96{word-spacing:2.818944pt;}
.ws5a{word-spacing:2.819025pt;}
.ws95{word-spacing:2.819165pt;}
.ws80{word-spacing:2.819226pt;}
.ws57{word-spacing:2.819287pt;}
.ws5d{word-spacing:2.819302pt;}
.ws56{word-spacing:2.819341pt;}
.ws9e{word-spacing:2.819348pt;}
.ws52{word-spacing:2.819539pt;}
.ws78{word-spacing:2.819569pt;}
.ws4f{word-spacing:2.819590pt;}
.ws97{word-spacing:2.819744pt;}
.ws48{word-spacing:2.820058pt;}
.wsf{word-spacing:2.821427pt;}
.wsa8{word-spacing:2.866538pt;}
.wsbc{word-spacing:2.869591pt;}
.ws8d{word-spacing:2.870815pt;}
.ws81{word-spacing:2.871883pt;}
.ws13{word-spacing:2.922363pt;}
.ws1{word-spacing:2.933009pt;}
.ws10{word-spacing:3.012710pt;}
.ws3{word-spacing:3.143772pt;}
.wsb3{word-spacing:3.160154pt;}
.wsb2{word-spacing:3.188032pt;}
.ws8e{word-spacing:3.241166pt;}
.ws5{word-spacing:3.299635pt;}
.ws6b{word-spacing:3.453701pt;}
.wsb8{word-spacing:3.523790pt;}
.wsb7{word-spacing:3.526141pt;}
.wsb4{word-spacing:3.548869pt;}
.wsb6{word-spacing:3.559969pt;}
.wscb{word-spacing:3.666237pt;}
.ws1e{word-spacing:3.772505pt;}
.ws6{word-spacing:3.777843pt;}
.wsae{word-spacing:3.931906pt;}
.wscf{word-spacing:3.981406pt;}
.wsce{word-spacing:3.985040pt;}
.ws6d{word-spacing:4.053998pt;}
.wsa4{word-spacing:4.091308pt;}
.wsa3{word-spacing:4.144442pt;}
.ws2{word-spacing:4.399514pt;}
.ws72{word-spacing:4.569513pt;}
.ws73{word-spacing:4.622646pt;}
.wse{word-spacing:4.686438pt;}
.wsbb{word-spacing:4.782048pt;}
.wsb5{word-spacing:4.941450pt;}
.ws9b{word-spacing:5.047717pt;}
.ws54{word-spacing:5.153985pt;}
.ws1d{word-spacing:5.207119pt;}
.wsa5{word-spacing:5.220442pt;}
.ws47{word-spacing:5.260253pt;}
.ws1b{word-spacing:5.313387pt;}
.ws2f{word-spacing:5.419654pt;}
.ws3a{word-spacing:5.472788pt;}
.ws98{word-spacing:5.475165pt;}
.ws74{word-spacing:5.685324pt;}
.ws36{word-spacing:5.738458pt;}
.ws32{word-spacing:5.791591pt;}
.wsd6{word-spacing:5.844725pt;}
.ws68{word-spacing:5.993540pt;}
.ws61{word-spacing:5.993654pt;}
.ws60{word-spacing:6.004127pt;}
.ws41{word-spacing:6.057301pt;}
.ws3e{word-spacing:6.110395pt;}
.ws12{word-spacing:6.269796pt;}
.ws35{word-spacing:6.322930pt;}
.ws2c{word-spacing:6.376064pt;}
.ws99{word-spacing:6.588599pt;}
.ws1f{word-spacing:6.641733pt;}
.ws7e{word-spacing:6.694867pt;}
.wsda{word-spacing:6.748001pt;}
.ws16{word-spacing:6.907403pt;}
.ws1c{word-spacing:6.960537pt;}
.ws9{word-spacing:6.981837pt;}
.ws4e{word-spacing:7.003331pt;}
.ws6c{word-spacing:7.003823pt;}
.ws37{word-spacing:7.226206pt;}
.ws63{word-spacing:7.268741pt;}
.ws38{word-spacing:7.279398pt;}
.ws8{word-spacing:7.364403pt;}
.ws62{word-spacing:7.704411pt;}
.wsd8{word-spacing:7.810678pt;}
.wsb0{word-spacing:8.129482pt;}
.ws85{word-spacing:8.191408pt;}
.wsc1{word-spacing:8.235749pt;}
.ws91{word-spacing:8.288883pt;}
.ws65{word-spacing:8.342017pt;}
.ws82{word-spacing:8.554553pt;}
.ws31{word-spacing:8.873356pt;}
.wsd4{word-spacing:9.298427pt;}
.wsdf{word-spacing:9.404694pt;}
.ws34{word-spacing:9.457828pt;}
.ws2e{word-spacing:9.882899pt;}
.ws89{word-spacing:9.935408pt;}
.wsd3{word-spacing:9.989167pt;}
.wsd7{word-spacing:10.042301pt;}
.wsaf{word-spacing:11.104978pt;}
.wsd5{word-spacing:11.158112pt;}
.wsc0{word-spacing:11.264380pt;}
.wsa9{word-spacing:11.298538pt;}
.ws9d{word-spacing:11.423781pt;}
.wsb1{word-spacing:11.476915pt;}
.wsa7{word-spacing:11.689451pt;}
.ws39{word-spacing:11.693702pt;}
.ws64{word-spacing:11.795718pt;}
.wsba{word-spacing:13.230333pt;}
.ws2d{word-spacing:13.602270pt;}
.wsdb{word-spacing:16.099562pt;}
.ws11{word-spacing:16.832875pt;}
.wsb9{word-spacing:17.427908pt;}
.ws5f{word-spacing:30.711375pt;}
.ws70{word-spacing:45.376665pt;}
.ws4d{word-spacing:100.210473pt;}
._1c{margin-left:-41.285014pt;}
._27{margin-left:-36.556100pt;}
._1e{margin-left:-25.451122pt;}
._28{margin-left:-23.432035pt;}
._1d{margin-left:-15.940160pt;}
._1f{margin-left:-14.321600pt;}
._23{margin-left:-11.711378pt;}
._29{margin-left:-7.115715pt;}
._16{margin-left:-5.100851pt;}
._2{margin-left:-3.925143pt;}
._0{margin-left:-2.387202pt;}
._3{margin-left:-1.275216pt;}
._4{width:1.236630pt;}
._5{width:2.387202pt;}
._a{width:3.500549pt;}
._24{width:5.467803pt;}
._11{width:9.175989pt;}
._1b{width:10.308882pt;}
._2a{width:11.323234pt;}
._25{width:12.229462pt;}
._18{width:13.124065pt;}
._1a{width:14.198468pt;}
._17{width:16.083247pt;}
._6{width:17.629930pt;}
._d{width:18.731119pt;}
._13{width:19.624005pt;}
._10{width:20.665580pt;}
._9{width:21.854189pt;}
._8{width:22.898500pt;}
._7{width:23.942275pt;}
._f{width:25.568091pt;}
._b{width:26.875290pt;}
._26{width:27.904604pt;}
._14{width:29.408468pt;}
._c{width:30.384931pt;}
._e{width:31.638685pt;}
._15{width:32.732658pt;}
._21{width:33.847023pt;}
._12{width:34.939889pt;}
._1{width:36.909818pt;}
._22{width:38.256533pt;}
._20{width:52.477893pt;}
._19{width:114.601077pt;}
.fs8{font-size:26.566933pt;}
.fs4{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:56.149333pt;}
.yaf{bottom:96.000000pt;}
.y26{bottom:100.256000pt;}
.y6d{bottom:106.826667pt;}
.yae{bottom:111.940000pt;}
.y25{bottom:116.196000pt;}
.y128{bottom:119.910667pt;}
.y4f{bottom:119.929333pt;}
.y1b5{bottom:122.404000pt;}
.yad{bottom:127.880000pt;}
.y107{bottom:130.009333pt;}
.y147{bottom:135.850667pt;}
.y6c{bottom:136.050667pt;}
.y1b4{bottom:138.345333pt;}
.y24{bottom:140.106667pt;}
.y127{bottom:143.820000pt;}
.y4e{bottom:143.840000pt;}
.y17d{bottom:143.849333pt;}
.y8d{bottom:145.889333pt;}
.y106{bottom:145.949333pt;}
.yac{bottom:151.790667pt;}
.y1b3{bottom:154.285333pt;}
.y23{bottom:156.046667pt;}
.y126{bottom:159.761333pt;}
.y4d{bottom:159.780000pt;}
.y17c{bottom:159.790667pt;}
.y8c{bottom:161.829333pt;}
.y105{bottom:170.477333pt;}
.yce{bottom:171.909333pt;}
.y22{bottom:171.986667pt;}
.y6b{bottom:174.064000pt;}
.y146{bottom:175.701333pt;}
.y4c{bottom:175.720000pt;}
.y1b2{bottom:178.196000pt;}
.yed{bottom:183.142667pt;}
.y17b{bottom:183.700000pt;}
.y125{bottom:184.289333pt;}
.y165{bottom:185.284000pt;}
.ycd{bottom:187.849333pt;}
.yab{bottom:190.816000pt;}
.y1b1{bottom:194.136000pt;}
.y6a{bottom:197.974667pt;}
.y8b{bottom:199.022667pt;}
.y145{bottom:199.612000pt;}
.y21{bottom:201.210667pt;}
.y164{bottom:201.225333pt;}
.y104{bottom:205.024000pt;}
.y197{bottom:207.581333pt;}
.y4b{bottom:207.601333pt;}
.y1b0{bottom:210.076000pt;}
.ycc{bottom:211.758667pt;}
.y17a{bottom:215.581333pt;}
.y163{bottom:217.165333pt;}
.y124{bottom:221.085333pt;}
.yaa{bottom:222.697333pt;}
.y144{bottom:222.896000pt;}
.yec{bottom:222.993333pt;}
.y69{bottom:227.198667pt;}
.y8a{bottom:228.246667pt;}
.y103{bottom:228.934667pt;}
.y20{bottom:230.434667pt;}
.y1af{bottom:233.986667pt;}
.ycb{bottom:235.669333pt;}
.y123{bottom:237.025333pt;}
.ya9{bottom:238.637333pt;}
.y196{bottom:239.462667pt;}
.y4a{bottom:239.481333pt;}
.y179{bottom:239.490667pt;}
.y162{bottom:241.076000pt;}
.y143{bottom:247.066667pt;}
.y1ae{bottom:249.926667pt;}
.yeb{bottom:254.873333pt;}
.y49{bottom:255.421333pt;}
.y1f{bottom:259.658667pt;}
.yca{bottom:260.197333pt;}
.y68{bottom:260.704000pt;}
.y102{bottom:260.816000pt;}
.y122{bottom:260.936000pt;}
.y142{bottom:263.008000pt;}
.y195{bottom:263.372000pt;}
.y178{bottom:263.401333pt;}
.y161{bottom:264.985333pt;}
.y89{bottom:265.440000pt;}
.y1ad{bottom:265.866667pt;}
.ya8{bottom:274.456000pt;}
.y194{bottom:279.312000pt;}
.y177{bottom:279.341333pt;}
.yea{bottom:279.401333pt;}
.y48{bottom:279.949333pt;}
.y121{bottom:283.429333pt;}
.y67{bottom:284.614667pt;}
.y101{bottom:284.725333pt;}
.y141{bottom:286.917333pt;}
.y1e{bottom:288.881333pt;}
.y160{bottom:288.896000pt;}
.y1ac{bottom:289.777333pt;}
.y88{bottom:294.664000pt;}
.y193{bottom:295.253333pt;}
.yc9{bottom:297.401333pt;}
.y120{bottom:299.369333pt;}
.y66{bottom:300.554667pt;}
.y100{bottom:300.665333pt;}
.ya7{bottom:302.305333pt;}
.y140{bottom:302.858667pt;}
.y176{bottom:303.252000pt;}
.y1d{bottom:304.822667pt;}
.y15f{bottom:304.836000pt;}
.y87{bottom:310.604000pt;}
.yc8{bottom:313.341333pt;}
.ye9{bottom:313.949333pt;}
.y1ab{bottom:314.305333pt;}
.y11f{bottom:315.309333pt;}
.y47{bottom:317.153333pt;}
.y175{bottom:319.192000pt;}
.y192{bottom:319.781333pt;}
.y1c{bottom:320.762667pt;}
.y15e{bottom:320.776000pt;}
.yff{bottom:324.576000pt;}
.y13f{bottom:326.768000pt;}
.y65{bottom:329.778667pt;}
.y11e{bottom:331.249333pt;}
.y46{bottom:333.093333pt;}
.y86{bottom:335.132000pt;}
.y1b{bottom:336.702667pt;}
.y15d{bottom:336.717333pt;}
.yc7{bottom:337.252000pt;}
.ye8{bottom:338.477333pt;}
.ya6{bottom:341.330667pt;}
.y13e{bottom:342.708000pt;}
.y174{bottom:343.720000pt;}
.y11d{bottom:347.189333pt;}
.y45{bottom:349.033333pt;}
.y1aa{bottom:351.509333pt;}
.y1a{bottom:352.642667pt;}
.yc6{bottom:353.192000pt;}
.y191{bottom:355.942667pt;}
.yfe{bottom:356.457333pt;}
.y64{bottom:359.002667pt;}
.y85{bottom:359.660000pt;}
.y15c{bottom:361.245333pt;}
.y11c{bottom:363.129333pt;}
.y44{bottom:364.974667pt;}
.y13d{bottom:366.618667pt;}
.y1a9{bottom:367.449333pt;}
.y19{bottom:368.582667pt;}
.y190{bottom:371.882667pt;}
.yfd{bottom:372.397333pt;}
.ya5{bottom:373.212000pt;}
.ye7{bottom:375.680000pt;}
.y43{bottom:380.914667pt;}
.y173{bottom:380.924000pt;}
.y1a8{bottom:383.389333pt;}
.y63{bottom:383.530667pt;}
.y18{bottom:384.522667pt;}
.yc5{bottom:385.073333pt;}
.y11b{bottom:387.657333pt;}
.ya4{bottom:389.152000pt;}
.y13c{bottom:390.529333pt;}
.ye6{bottom:391.621333pt;}
.y18f{bottom:395.793333pt;}
.yfc{bottom:396.306667pt;}
.y84{bottom:396.864000pt;}
.y15b{bottom:398.448000pt;}
.y17{bottom:400.464000pt;}
.yc4{bottom:401.013333pt;}
.y1a7{bottom:407.300000pt;}
.ye5{bottom:407.561333pt;}
.y42{bottom:410.022667pt;}
.y18e{bottom:411.733333pt;}
.y83{bottom:412.805333pt;}
.ya3{bottom:413.062667pt;}
.y16{bottom:416.404000pt;}
.y62{bottom:420.733333pt;}
.y172{bottom:420.774667pt;}
.yfb{bottom:420.834667pt;}
.y13b{bottom:421.784000pt;}
.y11a{bottom:421.797333pt;}
.y1a6{bottom:423.240000pt;}
.ye4{bottom:423.501333pt;}
.y15a{bottom:427.672000pt;}
.y18d{bottom:427.673333pt;}
.y15{bottom:432.344000pt;}
.yc3{bottom:432.893333pt;}
.y1ca{bottom:435.304000pt;}
.y61{bottom:436.674667pt;}
.y82{bottom:436.714667pt;}
.ya2{bottom:436.972000pt;}
.y119{bottom:437.737333pt;}
.y1a5{bottom:439.180000pt;}
.y13a{bottom:442.005333pt;}
.y18c{bottom:443.613333pt;}
.ye3{bottom:448.029333pt;}
.y14{bottom:448.284000pt;}
.y1c9{bottom:451.244000pt;}
.y81{bottom:452.654667pt;}
.y118{bottom:453.678667pt;}
.y41{bottom:453.970667pt;}
.yfa{bottom:455.382667pt;}
.yc2{bottom:456.804000pt;}
.y159{bottom:456.896000pt;}
.y139{bottom:457.946667pt;}
.y13{bottom:464.224000pt;}
.y18b{bottom:467.524000pt;}
.y1a4{bottom:468.404000pt;}
.y80{bottom:468.596000pt;}
.ya1{bottom:468.853333pt;}
.y117{bottom:469.618667pt;}
.y40{bottom:469.910667pt;}
.y60{bottom:473.402667pt;}
.yf9{bottom:479.293333pt;}
.y12{bottom:480.164000pt;}
.y158{bottom:480.806667pt;}
.yc1{bottom:481.332000pt;}
.ye2{bottom:482.576000pt;}
.y1c8{bottom:483.124000pt;}
.y171{bottom:484.536000pt;}
.y3f{bottom:485.852000pt;}
.y138{bottom:486.126667pt;}
.y18a{bottom:490.704000pt;}
.y7f{bottom:492.505333pt;}
.ya0{bottom:492.764000pt;}
.y116{bottom:493.529333pt;}
.y11{bottom:496.105333pt;}
.y157{bottom:496.746667pt;}
.ye1{bottom:498.516000pt;}
.y1c7{bottom:499.064000pt;}
.y5f{bottom:501.256000pt;}
.y3e{bottom:501.792000pt;}
.y1a3{bottom:506.417333pt;}
.y7e{bottom:508.446667pt;}
.yf8{bottom:511.173333pt;}
.y10{bottom:512.045333pt;}
.y189{bottom:513.884000pt;}
.y137{bottom:514.306667pt;}
.y9f{bottom:517.292000pt;}
.y3d{bottom:517.732000pt;}
.yc0{bottom:518.536000pt;}
.y115{bottom:520.390667pt;}
.y156{bottom:520.657333pt;}
.ye0{bottom:522.426667pt;}
.y5e{bottom:523.129333pt;}
.y7d{bottom:524.386667pt;}
.y1a2{bottom:530.326667pt;}
.y1c6{bottom:530.945333pt;}
.y170{bottom:532.356000pt;}
.ybf{bottom:534.476000pt;}
.yf7{bottom:535.701333pt;}
.y188{bottom:537.794667pt;}
.y136{bottom:538.834667pt;}
.yf{bottom:541.153333pt;}
.y3c{bottom:542.260000pt;}
.y1a1{bottom:546.268000pt;}
.y1c5{bottom:546.885333pt;}
.y114{bottom:547.250667pt;}
.y16f{bottom:548.296000pt;}
.y9e{bottom:551.601333pt;}
.y7c{bottom:553.494667pt;}
.y187{bottom:553.734667pt;}
.ydf{bottom:554.308000pt;}
.y5d{bottom:557.592000pt;}
.y155{bottom:557.850667pt;}
.ybe{bottom:558.386667pt;}
.y1a0{bottom:562.208000pt;}
.y16e{bottom:564.237333pt;}
.y186{bottom:569.676000pt;}
.yde{bottom:570.248000pt;}
.y113{bottom:571.161333pt;}
.ybd{bottom:574.326667pt;}
.y9d{bottom:574.686667pt;}
.y135{bottom:575.857333pt;}
.y3b{bottom:576.806667pt;}
.y19f{bottom:578.148000pt;}
.y1c4{bottom:578.765333pt;}
.y16d{bottom:580.177333pt;}
.y5c{bottom:581.502667pt;}
.ye{bottom:585.101333pt;}
.yf6{bottom:586.188000pt;}
.y154{bottom:587.074667pt;}
.y112{bottom:587.101333pt;}
.ybc{bottom:590.266667pt;}
.y9c{bottom:590.626667pt;}
.y3a{bottom:592.746667pt;}
.ydd{bottom:594.157333pt;}
.y185{bottom:594.204000pt;}
.y1c3{bottom:594.705333pt;}
.y7b{bottom:597.442667pt;}
.yd{bottom:599.713333pt;}
.y134{bottom:599.768000pt;}
.y19e{bottom:602.058667pt;}
.y153{bottom:603.014667pt;}
.y111{bottom:603.042667pt;}
.y16c{bottom:604.705333pt;}
.y39{bottom:608.688000pt;}
.yf5{bottom:610.098667pt;}
.y5b{bottom:613.382667pt;}
.y9b{bottom:613.713333pt;}
.ybb{bottom:614.177333pt;}
.yc{bottom:614.325333pt;}
.y133{bottom:615.708000pt;}
.y19d{bottom:617.998667pt;}
.ydc{bottom:618.685333pt;}
.y1c2{bottom:626.586667pt;}
.y152{bottom:627.542667pt;}
.y110{bottom:627.570667pt;}
.yb{bottom:628.937333pt;}
.y7a{bottom:629.324000pt;}
.y9a{bottom:629.653333pt;}
.yba{bottom:630.117333pt;}
.y184{bottom:630.365333pt;}
.y132{bottom:631.648000pt;}
.y38{bottom:632.597333pt;}
.y19c{bottom:633.938667pt;}
.y5a{bottom:637.293333pt;}
.y16b{bottom:641.909333pt;}
.yf4{bottom:641.978667pt;}
.y1c1{bottom:642.526667pt;}
.ya{bottom:643.549333pt;}
.y79{bottom:645.264000pt;}
.y183{bottom:646.305333pt;}
.y131{bottom:647.589333pt;}
.y37{bottom:648.537333pt;}
.ydb{bottom:653.233333pt;}
.y99{bottom:653.564000pt;}
.yb9{bottom:654.645333pt;}
.y16a{bottom:657.849333pt;}
.y9{bottom:658.161333pt;}
.y78{bottom:661.204000pt;}
.y59{bottom:661.821333pt;}
.y182{bottom:662.245333pt;}
.y10f{bottom:662.401333pt;}
.y19b{bottom:663.046667pt;}
.y36{bottom:664.478667pt;}
.y151{bottom:664.746667pt;}
.yf3{bottom:665.889333pt;}
.yda{bottom:669.173333pt;}
.y98{bottom:669.504000pt;}
.y8{bottom:672.773333pt;}
.y169{bottom:673.789333pt;}
.y1c0{bottom:674.406667pt;}
.y150{bottom:680.686667pt;}
.y130{bottom:683.738667pt;}
.y77{bottom:685.732000pt;}
.y181{bottom:686.156000pt;}
.y35{bottom:688.388000pt;}
.yb8{bottom:689.192000pt;}
.y168{bottom:689.729333pt;}
.yf2{bottom:689.800000pt;}
.y1bf{bottom:690.346667pt;}
.y10e{bottom:691.013333pt;}
.yd9{bottom:693.084000pt;}
.y97{bottom:694.032000pt;}
.y7{bottom:694.690667pt;}
.y58{bottom:699.025333pt;}
.y180{bottom:702.096000pt;}
.y34{bottom:704.329333pt;}
.y14f{bottom:704.597333pt;}
.yb7{bottom:705.132000pt;}
.y19a{bottom:706.996000pt;}
.y12f{bottom:711.918667pt;}
.yf1{bottom:714.328000pt;}
.y57{bottom:714.965333pt;}
.y10d{bottom:715.541333pt;}
.yd8{bottom:716.993333pt;}
.y17f{bottom:718.036000pt;}
.y167{bottom:718.837333pt;}
.y1be{bottom:719.456000pt;}
.y33{bottom:720.269333pt;}
.y14e{bottom:720.537333pt;}
.y76{bottom:722.936000pt;}
.y12e{bottom:727.858667pt;}
.yb6{bottom:729.042667pt;}
.y6{bottom:729.228000pt;}
.y199{bottom:730.905333pt;}
.y96{bottom:730.998667pt;}
.y14d{bottom:736.477333pt;}
.y56{bottom:738.876000pt;}
.y17e{bottom:742.564000pt;}
.y32{bottom:744.180000pt;}
.y75{bottom:746.845333pt;}
.y198{bottom:746.846667pt;}
.y95{bottom:746.938667pt;}
.yd7{bottom:748.874667pt;}
.y10c{bottom:749.681333pt;}
.yf0{bottom:751.532000pt;}
.y12d{bottom:751.769333pt;}
.yb5{bottom:753.570667pt;}
.y31{bottom:760.120000pt;}
.y14c{bottom:760.388000pt;}
.y74{bottom:762.786667pt;}
.y94{bottom:762.878667pt;}
.y1bd{bottom:763.404000pt;}
.y5{bottom:768.452000pt;}
.y55{bottom:770.756000pt;}
.y10b{bottom:772.173333pt;}
.yd6{bottom:773.402667pt;}
.y30{bottom:776.060000pt;}
.yb4{bottom:778.098667pt;}
.y166{bottom:778.726667pt;}
.y1bc{bottom:779.344000pt;}
.y12c{bottom:779.949333pt;}
.y14b{bottom:784.298667pt;}
.y73{bottom:786.696000pt;}
.y93{bottom:786.789333pt;}
.y4{bottom:791.830667pt;}
.y1bb{bottom:795.284000pt;}
.y2f{bottom:799.970667pt;}
.y54{bottom:802.637333pt;}
.y10a{bottom:804.054667pt;}
.yd5{bottom:807.949333pt;}
.y12b{bottom:808.129333pt;}
.yef{bottom:810.606667pt;}
.y92{bottom:810.700000pt;}
.y1ba{bottom:811.224000pt;}
.y14a{bottom:813.522667pt;}
.y3{bottom:815.209333pt;}
.yb3{bottom:815.302667pt;}
.y12a{bottom:824.069333pt;}
.y2e{bottom:824.498667pt;}
.y72{bottom:826.546667pt;}
.y91{bottom:826.640000pt;}
.y109{bottom:827.964000pt;}
.yd4{bottom:832.477333pt;}
.y53{bottom:834.517333pt;}
.y1b9{bottom:835.134667pt;}
.yb2{bottom:839.213333pt;}
.y71{bottom:842.488000pt;}
.y129{bottom:848.597333pt;}
.yee{bottom:850.457333pt;}
.y90{bottom:850.550667pt;}
.y1b8{bottom:851.074667pt;}
.y149{bottom:851.489333pt;}
.y52{bottom:858.428000pt;}
.y2d{bottom:859.045333pt;}
.y2{bottom:861.701333pt;}
.y70{bottom:866.397333pt;}
.y8f{bottom:866.490667pt;}
.y1b7{bottom:867.016000pt;}
.yb1{bottom:868.437333pt;}
.yd3{bottom:869.681333pt;}
.y2c{bottom:874.985333pt;}
.y6f{bottom:882.337333pt;}
.y1b6{bottom:882.956000pt;}
.yd2{bottom:885.621333pt;}
.y148{bottom:888.682667pt;}
.y51{bottom:890.308000pt;}
.y1{bottom:890.925333pt;}
.y8e{bottom:894.340000pt;}
.yb0{bottom:897.660000pt;}
.y6e{bottom:898.278667pt;}
.y2b{bottom:898.896000pt;}
.yd1{bottom:901.561333pt;}
.y108{bottom:906.248000pt;}
.y2a{bottom:914.836000pt;}
.yd0{bottom:917.502667pt;}
.y50{bottom:922.188000pt;}
.y29{bottom:930.776000pt;}
.ycf{bottom:946.610667pt;}
.y28{bottom:946.716000pt;}
.h4{height:31.880400pt;}
.h5{height:33.474560pt;}
.h6{height:35.865600pt;}
.h9{height:39.850400pt;}
.h7{height:41.270400pt;}
.h3{height:44.192216pt;}
.h2{height:44.250180pt;}
.ha{height:47.180533pt;}
.hc{height:47.185867pt;}
.hd{height:47.820800pt;}
.hb{height:55.468533pt;}
.h13{height:55.473867pt;}
.h8{height:57.384800pt;}
.h1{height:64.913535pt;}
.h10{height:65.617867pt;}
.hf{height:65.991200pt;}
.he{height:73.575200pt;}
.h12{height:74.807200pt;}
.h15{height:75.095200pt;}
.h14{height:75.388533pt;}
.h11{height:75.393867pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x23{left:92.014667pt;}
.xb{left:94.445333pt;}
.xa{left:96.000000pt;}
.xe{left:112.232000pt;}
.x30{left:114.916000pt;}
.x31{left:115.925333pt;}
.x9{left:129.209333pt;}
.x8{left:147.141333pt;}
.x1{left:149.784000pt;}
.x1c{left:244.008000pt;}
.xd{left:294.540000pt;}
.x5{left:299.336000pt;}
.x1d{left:311.241333pt;}
.x1f{left:314.609333pt;}
.xc{left:319.614667pt;}
.x27{left:321.461333pt;}
.x24{left:324.792000pt;}
.x4{left:327.032000pt;}
.x18{left:332.021333pt;}
.x2b{left:333.570667pt;}
.x2c{left:334.974667pt;}
.x25{left:336.818667pt;}
.x26{left:339.598667pt;}
.x3{left:342.948000pt;}
.x19{left:347.386667pt;}
.x15{left:348.469333pt;}
.x2d{left:350.340000pt;}
.x22{left:352.126667pt;}
.x2{left:354.482667pt;}
.x6{left:356.273333pt;}
.x20{left:360.194667pt;}
.x1e{left:362.608000pt;}
.x16{left:363.920000pt;}
.x21{left:367.945333pt;}
.x28{left:369.134667pt;}
.x13{left:371.594667pt;}
.x11{left:373.445333pt;}
.x14{left:374.626667pt;}
.x10{left:376.377333pt;}
.x7{left:380.945333pt;}
.x12{left:388.810667pt;}
.x17{left:391.921333pt;}
.x2a{left:392.858667pt;}
.x1a{left:394.130667pt;}
.x2e{left:397.084000pt;}
.x29{left:401.358667pt;}
.xf{left:404.678667pt;}
.x1b{left:446.828000pt;}
.x2f{left:449.781333pt;}
}




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