
    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_02ee147aafd23317cc5d746e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_631fb71332ec684660e0f525.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.995000;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_217c536f7c5ce76c2e166ec5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940000;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_a2850f1a362b878b12c83b7a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.943000;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_bb28604e650e8e2bf55ff495.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.995000;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_7e3683bf3bbe8868d83713bc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:32.727000px;}
.ls3{letter-spacing:36.660222px;}
.ls2{letter-spacing:71.733018px;}
.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;}
}
.ws1{word-spacing:-427.174440px;}
.ws5{word-spacing:-46.098480px;}
.wse{word-spacing:-32.727000px;}
.ws6{word-spacing:-32.135040px;}
.ws2{word-spacing:-28.333824px;}
.ws11{word-spacing:-24.836574px;}
.ws10{word-spacing:-23.498076px;}
.wsc1{word-spacing:-21.730728px;}
.ws3f{word-spacing:-21.599820px;}
.ws3e{word-spacing:-20.552556px;}
.ws9{word-spacing:-19.439838px;}
.ws3a{word-spacing:-19.047114px;}
.ws13{word-spacing:-18.981660px;}
.ws44{word-spacing:-18.004230px;}
.ws42{word-spacing:-17.932500px;}
.wsc{word-spacing:-17.083494px;}
.wsb{word-spacing:-17.018040px;}
.ws12{word-spacing:-16.494408px;}
.wsa{word-spacing:-16.428954px;}
.wsd{word-spacing:-16.363500px;}
.ws8{word-spacing:-14.923512px;}
.ws3{word-spacing:-14.077248px;}
.ws40{word-spacing:-13.513932px;}
.wsf{word-spacing:-12.436260px;}
.wsd2{word-spacing:-11.343690px;}
.wsc8{word-spacing:-11.342220px;}
.ws88{word-spacing:-11.339190px;}
.wsb2{word-spacing:-11.337750px;}
.wsc9{word-spacing:-11.333670px;}
.ws45{word-spacing:-11.331750px;}
.ws76{word-spacing:-11.331150px;}
.wsad{word-spacing:-11.327130px;}
.wsd0{word-spacing:-11.326650px;}
.wscf{word-spacing:-11.325120px;}
.wsd4{word-spacing:-11.320380px;}
.wsbe{word-spacing:-11.318970px;}
.wscd{word-spacing:-11.314950px;}
.ws9b{word-spacing:-11.311680px;}
.ws9a{word-spacing:-11.304090px;}
.wsaf{word-spacing:-11.301990px;}
.wsb3{word-spacing:-11.297940px;}
.wsbb{word-spacing:-11.293830px;}
.ws89{word-spacing:-11.293710px;}
.wsd3{word-spacing:-11.291730px;}
.ws8a{word-spacing:-11.290770px;}
.wsa7{word-spacing:-11.275620px;}
.ws41{word-spacing:-11.274750px;}
.ws5c{word-spacing:-11.274390px;}
.wsae{word-spacing:-11.274210px;}
.wsb5{word-spacing:-11.267910px;}
.wsd1{word-spacing:-11.262570px;}
.wsc2{word-spacing:-11.259870px;}
.ws43{word-spacing:-11.258130px;}
.wsce{word-spacing:-11.257590px;}
.wsa6{word-spacing:-11.254800px;}
.wsb4{word-spacing:-11.254260px;}
.ws8b{word-spacing:-11.250960px;}
.ws9c{word-spacing:-11.249550px;}
.wsb9{word-spacing:-11.248320px;}
.wsba{word-spacing:-11.244480px;}
.wsb7{word-spacing:-11.243430px;}
.wsb0{word-spacing:-11.243250px;}
.wsbf{word-spacing:-11.240640px;}
.wsc7{word-spacing:-11.240280px;}
.wsb8{word-spacing:-11.234670px;}
.wsc3{word-spacing:-11.232240px;}
.wsb6{word-spacing:-11.229780px;}
.wsc0{word-spacing:-11.226990px;}
.wsbd{word-spacing:-11.222790px;}
.wscb{word-spacing:-11.219640px;}
.wsca{word-spacing:-11.219460px;}
.wsa8{word-spacing:-11.218590px;}
.ws75{word-spacing:-11.217540px;}
.wscc{word-spacing:-11.216010px;}
.ws7{word-spacing:-10.389132px;}
.ws15{word-spacing:-10.276278px;}
.ws39{word-spacing:-9.185598px;}
.ws3b{word-spacing:-9.180522px;}
.ws3c{word-spacing:-9.175446px;}
.ws4{word-spacing:-7.507740px;}
.ws28{word-spacing:-3.050748px;}
.ws32{word-spacing:-3.041508px;}
.ws26{word-spacing:-3.025902px;}
.ws27{word-spacing:-3.020826px;}
.ws36{word-spacing:-3.019914px;}
.ws33{word-spacing:-3.016662px;}
.ws22{word-spacing:-3.015750px;}
.ws31{word-spacing:-3.014838px;}
.ws23{word-spacing:-3.010674px;}
.ws29{word-spacing:-3.000522px;}
.ws2f{word-spacing:-2.996358px;}
.ws38{word-spacing:-2.995446px;}
.ws37{word-spacing:-2.990370px;}
.ws30{word-spacing:-2.986206px;}
.ws0{word-spacing:0.000000px;}
.ws2e{word-spacing:0.378492px;}
.ws2b{word-spacing:0.399174px;}
.ws2a{word-spacing:0.409326px;}
.ws2d{word-spacing:0.414402px;}
.ws2c{word-spacing:0.424554px;}
.ws34{word-spacing:1.779174px;}
.ws35{word-spacing:1.799478px;}
.ws25{word-spacing:3.129252px;}
.ws24{word-spacing:3.189630px;}
.ws3d{word-spacing:8.005068px;}
.ws20{word-spacing:23.533416px;}
.ws21{word-spacing:23.538492px;}
.ws1a{word-spacing:23.548110px;}
.ws1f{word-spacing:23.554098px;}
.ws1b{word-spacing:23.573490px;}
.ws1c{word-spacing:23.588718px;}
.ws17{word-spacing:26.969022px;}
.ws16{word-spacing:26.974098px;}
.ws18{word-spacing:26.993490px;}
.ws19{word-spacing:27.003642px;}
.ws1e{word-spacing:28.333416px;}
.ws1d{word-spacing:28.383642px;}
.ws14{word-spacing:35.672430px;}
.ws9d{word-spacing:38.918970px;}
.ws9e{word-spacing:38.924442px;}
.wsaa{word-spacing:38.929896px;}
.wsac{word-spacing:38.929902px;}
.ws96{word-spacing:38.930448px;}
.wsab{word-spacing:38.935362px;}
.ws9f{word-spacing:38.940804px;}
.ws91{word-spacing:38.941368px;}
.ws97{word-spacing:38.946816px;}
.wsbc{word-spacing:38.951724px;}
.wsa5{word-spacing:38.951736px;}
.wsa1{word-spacing:38.957172px;}
.ws95{word-spacing:38.957724px;}
.ws8c{word-spacing:38.957760px;}
.ws8e{word-spacing:38.957766px;}
.ws90{word-spacing:38.957772px;}
.wsb1{word-spacing:38.962656px;}
.wsc4{word-spacing:38.962662px;}
.ws92{word-spacing:38.963154px;}
.ws74{word-spacing:38.967900px;}
.ws7d{word-spacing:38.968086px;}
.wsa9{word-spacing:38.968092px;}
.wsa4{word-spacing:38.968116px;}
.ws82{word-spacing:38.968344px;}
.ws93{word-spacing:38.968626px;}
.ws8f{word-spacing:38.968692px;}
.ws5a{word-spacing:38.973354px;}
.ws7b{word-spacing:38.973540px;}
.wsc6{word-spacing:38.973552px;}
.ws98{word-spacing:38.974080px;}
.wsa2{word-spacing:38.978772px;}
.ws78{word-spacing:38.978970px;}
.wsa0{word-spacing:38.978994px;}
.wsc5{word-spacing:38.979012px;}
.wsa3{word-spacing:38.979036px;}
.ws99{word-spacing:38.979546px;}
.ws79{word-spacing:38.984442px;}
.ws83{word-spacing:38.984688px;}
.ws94{word-spacing:38.984988px;}
.ws8d{word-spacing:38.985072px;}
.ws7e{word-spacing:38.989896px;}
.ws7f{word-spacing:39.000816px;}
.ws84{word-spacing:39.001068px;}
.ws5b{word-spacing:39.006114px;}
.ws7a{word-spacing:39.006258px;}
.ws87{word-spacing:39.011988px;}
.ws7c{word-spacing:39.017172px;}
.ws81{word-spacing:39.017448px;}
.ws80{word-spacing:39.022884px;}
.ws77{word-spacing:39.028092px;}
.ws85{word-spacing:39.028338px;}
.ws86{word-spacing:39.028368px;}
.ws6a{word-spacing:39.038772px;}
.wsd5{word-spacing:110.682714px;}
.wsd6{word-spacing:113.889960px;}
.wsd7{word-spacing:119.846274px;}
.wsd9{word-spacing:145.569696px;}
.wsd8{word-spacing:147.533316px;}
.wsda{word-spacing:180.486018px;}
.wsdc{word-spacing:215.346018px;}
.wsdb{word-spacing:217.326018px;}
.wsdd{word-spacing:250.288092px;}
.ws56{word-spacing:1330.490448px;}
.ws59{word-spacing:1335.759546px;}
.ws57{word-spacing:1339.266816px;}
.ws55{word-spacing:1340.177724px;}
.ws58{word-spacing:1344.754080px;}
.ws52{word-spacing:1361.243154px;}
.ws53{word-spacing:1361.248626px;}
.ws50{word-spacing:1362.525072px;}
.ws54{word-spacing:1363.184988px;}
.ws51{word-spacing:1364.461368px;}
.ws4f{word-spacing:1365.377772px;}
.ws4b{word-spacing:1365.388692px;}
.ws4e{word-spacing:1366.665072px;}
.ws4c{word-spacing:1368.705072px;}
.ws4d{word-spacing:1377.405072px;}
.ws6b{word-spacing:1391.297700px;}
.ws6c{word-spacing:1391.303172px;}
.ws70{word-spacing:1392.672270px;}
.ws6f{word-spacing:1393.315902px;}
.ws6d{word-spacing:1393.959534px;}
.ws6e{word-spacing:1394.597724px;}
.ws67{word-spacing:1395.514086px;}
.ws4a{word-spacing:1396.125072px;}
.ws71{word-spacing:1396.828626px;}
.ws46{word-spacing:1397.417760px;}
.ws47{word-spacing:1398.977760px;}
.ws69{word-spacing:1399.277760px;}
.ws49{word-spacing:1399.817766px;}
.ws48{word-spacing:1402.305072px;}
.ws72{word-spacing:1426.174092px;}
.ws63{word-spacing:1426.201308px;}
.ws66{word-spacing:1426.217760px;}
.ws68{word-spacing:1428.846840px;}
.ws65{word-spacing:1429.517682px;}
.ws64{word-spacing:1430.406774px;}
.ws62{word-spacing:1432.157676px;}
.ws5f{word-spacing:1461.088596px;}
.ws61{word-spacing:1461.099498px;}
.ws73{word-spacing:1461.110454px;}
.ws5d{word-spacing:1461.110460px;}
.ws60{word-spacing:1461.132216px;}
.ws5e{word-spacing:1461.137760px;}
._0{margin-left:-36.026760px;}
._6{margin-left:-13.580880px;}
._5{margin-left:-11.333280px;}
._f{margin-left:-7.867890px;}
._7{margin-left:-5.738400px;}
._8{margin-left:-4.712688px;}
._2{margin-left:-3.586560px;}
._1{margin-left:-1.613952px;}
._d{width:1.066182px;}
._3{width:2.151936px;}
._13f{width:3.526920px;}
._b{width:12.282954px;}
._c{width:15.228384px;}
._9{width:16.799280px;}
._e{width:18.924300px;}
._a{width:20.092638px;}
._28{width:22.867254px;}
._1e{width:23.910642px;}
._26{width:27.069504px;}
._16{width:28.358220px;}
._1c{width:29.705304px;}
._24{width:32.025738px;}
._15{width:34.366578px;}
._14{width:35.663334px;}
._1b{width:37.792032px;}
._17{width:39.854502px;}
._1a{width:41.300814px;}
._2a{width:43.038000px;}
._1d{width:44.059998px;}
._22{width:45.106386px;}
._23{width:47.341974px;}
._20{width:49.076328px;}
._21{width:51.092268px;}
._1f{width:53.315964px;}
._19{width:56.108646px;}
._27{width:57.442548px;}
._18{width:58.542690px;}
._25{width:60.558606px;}
._12{width:62.312208px;}
._16a{width:142.106802px;}
._11f{width:192.037200px;}
._98{width:195.337200px;}
._e2{width:198.877200px;}
._38{width:202.717200px;}
._79{width:205.777200px;}
._30{width:207.517200px;}
._124{width:208.777200px;}
._5a{width:210.277200px;}
._40{width:211.657200px;}
._144{width:223.707450px;}
._175{width:241.073868px;}
._eb{width:243.188970px;}
._166{width:256.230186px;}
._174{width:275.540850px;}
._17b{width:281.729316px;}
._177{width:303.002520px;}
._14c{width:315.897186px;}
._140{width:331.744098px;}
._bd{width:351.165300px;}
._b5{width:364.251564px;}
._14e{width:367.348866px;}
._f4{width:372.705300px;}
._178{width:380.788884px;}
._115{width:398.382732px;}
._f6{width:402.492576px;}
._bf{width:408.912576px;}
._70{width:411.252210px;}
._b6{width:419.178984px;}
._e3{width:423.422112px;}
._157{width:428.724822px;}
._15b{width:431.295150px;}
._7e{width:437.821968px;}
._7f{width:443.840850px;}
._17d{width:447.255480px;}
._131{width:449.066304px;}
._13c{width:450.110916px;}
._bc{width:454.176834px;}
._f5{width:457.155576px;}
._14d{width:467.788620px;}
._7b{width:475.975326px;}
._128{width:482.072898px;}
._73{width:486.823680px;}
._17c{width:488.095680px;}
._17a{width:495.491460px;}
._145{width:504.624858px;}
._16f{width:513.637200px;}
._f3{width:519.058686px;}
._9a{width:523.565754px;}
._11e{width:531.192210px;}
._97{width:534.492210px;}
._80{width:538.397742px;}
._37{width:541.872210px;}
._78{width:544.932210px;}
._2f{width:546.672210px;}
._123{width:547.932210px;}
._59{width:549.432210px;}
._3f{width:550.812210px;}
._141{width:557.930154px;}
._173{width:568.221588px;}
._130{width:569.886318px;}
._12f{width:571.326318px;}
._9b{width:572.694426px;}
._b2{width:576.641592px;}
._72{width:578.966838px;}
._11d{width:580.763286px;}
._96{width:584.063286px;}
._e1{width:587.603286px;}
._36{width:591.443286px;}
._77{width:594.503286px;}
._2e{width:596.243286px;}
._122{width:597.503286px;}
._58{width:599.003286px;}
._3e{width:600.383286px;}
._c3{width:603.490350px;}
._163{width:614.586486px;}
._c6{width:622.679580px;}
._168{width:625.786338px;}
._172{width:640.679718px;}
._12c{width:642.280716px;}
._7d{width:644.764290px;}
._81{width:647.241240px;}
._12e{width:655.259268px;}
._113{width:657.767718px;}
._a3{width:659.426772px;}
._71{width:666.887682px;}
._9d{width:672.632148px;}
._129{width:674.048604px;}
._8e{width:677.966772px;}
._a7{width:679.767864px;}
._a8{width:682.423704px;}
._a6{width:684.524226px;}
._ba{width:686.275254px;}
._13a{width:688.077402px;}
._f0{width:690.235254px;}
._126{width:692.666106px;}
._8f{width:695.042508px;}
._93{width:696.717108px;}
._91{width:699.104226px;}
._90{width:701.478168px;}
._127{width:703.967730px;}
._92{width:706.587864px;}
._13b{width:707.606106px;}
._aa{width:711.528900px;}
._8b{width:712.826772px;}
._8a{width:714.206772px;}
._a4{width:715.322508px;}
._89{width:717.085008px;}
._86{width:718.166772px;}
._8c{width:720.668040px;}
._88{width:722.486772px;}
._87{width:724.120302px;}
._84{width:725.792148px;}
._85{width:727.592148px;}
._a1{width:729.326772px;}
._a0{width:731.966772px;}
._9f{width:734.126772px;}
._9e{width:735.392148px;}
._170{width:737.725866px;}
._165{width:740.131860px;}
._112{width:742.306974px;}
._ab{width:743.798772px;}
._7c{width:745.401204px;}
._a9{width:746.997108px;}
._a5{width:750.078168px;}
._150{width:755.865042px;}
._a2{width:760.826772px;}
._b3{width:763.259148px;}
._e9{width:767.279148px;}
._167{width:768.366588px;}
._b8{width:770.841822px;}
._161{width:773.723334px;}
._151{width:775.026912px;}
._12a{width:782.022702px;}
._11c{width:792.053382px;}
._b4{width:795.523692px;}
._ea{width:797.563692px;}
._bb{width:800.949606px;}
._119{width:802.896672px;}
._6f{width:810.347646px;}
._f2{width:815.289606px;}
._f1{width:818.987646px;}
._116{width:821.584128px;}
._179{width:826.819608px;}
._171{width:827.878758px;}
._95{width:830.082474px;}
._b7{width:832.237674px;}
._ae{width:833.464656px;}
._135{width:834.473382px;}
._ed{width:836.197674px;}
._35{width:837.593382px;}
._76{width:840.653382px;}
._2d{width:842.262474px;}
._32{width:844.492236px;}
._3d{width:846.533382px;}
._4f{width:848.883654px;}
._16e{width:852.792210px;}
._164{width:856.373580px;}
._160{width:863.592210px;}
._ac{width:864.800748px;}
._ec{width:868.793766px;}
._e4{width:872.420748px;}
._e0{width:884.317200px;}
._111{width:885.637200px;}
._12b{width:886.722702px;}
._169{width:897.141588px;}
._83{width:900.881592px;}
._16d{width:902.363286px;}
._176{width:909.658380px;}
._15f{width:913.163286px;}
._c5{width:914.218362px;}
._c4{width:915.417984px;}
._68{width:920.043654px;}
._82{width:923.027646px;}
._4a{width:924.925758px;}
._ad{width:929.403846px;}
._af{width:930.625920px;}
._e5{width:933.423846px;}
._e6{width:934.645920px;}
._99{width:935.834958px;}
._be{width:937.329558px;}
._34{width:940.967646px;}
._75{width:944.027646px;}
._2c{width:945.767646px;}
._57{width:948.527646px;}
._3c{width:949.907646px;}
._c0{width:955.852500px;}
._64{width:961.225758px;}
._114{width:963.418362px;}
._162{width:964.866846px;}
._7a{width:966.928818px;}
._12d{width:968.495274px;}
._ee{width:972.996534px;}
._53{width:974.164860px;}
._6b{width:975.544860px;}
._41{width:979.566894px;}
._117{width:980.637606px;}
._14b{width:982.777200px;}
._b1{width:984.324336px;}
._11a{width:987.049674px;}
._43{width:995.124732px;}
._56{width:996.944160px;}
._139{width:998.384160px;}
._33{width:999.404160px;}
._132{width:1002.399912px;}
._fb{width:1007.429514px;}
._52{width:1019.802582px;}
._6a{width:1021.182582px;}
._ef{width:1023.177354px;}
._13e{width:1025.195808px;}
._121{width:1028.024160px;}
._e8{width:1029.084336px;}
._120{width:1031.924160px;}
._b0{width:1033.699050px;}
._3b{width:1036.544160px;}
._125{width:1037.804160px;}
._3a{width:1039.250748px;}
._51{width:1041.711696px;}
._69{width:1043.091696px;}
._11b{width:1048.484160px;}
._94{width:1051.718706px;}
._138{width:1054.834752px;}
._134{width:1056.044160px;}
._9c{width:1058.744160px;}
._46{width:1060.172724px;}
._74{width:1062.224160px;}
._2b{width:1063.898706px;}
._6c{width:1065.953118px;}
._6e{width:1068.104160px;}
._c8{width:1070.500704px;}
._b9{width:1072.623396px;}
._55{width:1074.251322px;}
._39{width:1075.889070px;}
._f7{width:1078.185414px;}
._c1{width:1081.485414px;}
._49{width:1083.166476px;}
._63{width:1084.546476px;}
._50{width:1086.251802px;}
._5b{width:1088.406894px;}
._4b{width:1090.017684px;}
._54{width:1091.894256px;}
._42{width:1093.861146px;}
._4d{width:1095.111582px;}
._6d{width:1096.881474px;}
._44{width:1099.196718px;}
._143{width:1101.066300px;}
._133{width:1106.434752px;}
._e7{width:1107.439050px;}
._48{width:1110.745008px;}
._62{width:1112.125008px;}
._47{width:1114.354032px;}
._4c{width:1118.083056px;}
._65{width:1119.463056px;}
._16b{width:1122.167646px;}
._61{width:1123.714032px;}
._66{width:1126.371582px;}
._60{width:1131.332724px;}
._13d{width:1134.700104px;}
._c2{width:1137.326376px;}
._136{width:1138.360056px;}
._16c{width:1148.513382px;}
._5c{width:1151.401146px;}
._142{width:1153.845504px;}
._15e{width:1159.182474px;}
._45{width:1163.303490px;}
._4e{width:1166.658276px;}
._5d{width:1170.356718px;}
._118{width:1174.785318px;}
._137{width:1184.428848px;}
._156{width:1190.690304px;}
._5f{width:1200.400104px;}
._67{width:1201.578276px;}
._155{width:1204.503624px;}
._f9{width:1210.304478px;}
._152{width:1213.710240px;}
._df{width:1223.472210px;}
._110{width:1224.792210px;}
._5e{width:1230.443490px;}
._14f{width:1234.694232px;}
._10{width:1246.109082px;}
._153{width:1256.278062px;}
._da{width:1261.293762px;}
._15d{width:1262.687646px;}
._15a{width:1264.737378px;}
._cb{width:1272.403368px;}
._10f{width:1274.363286px;}
._154{width:1275.815466px;}
._fc{width:1277.983368px;}
._d8{width:1289.912604px;}
._14a{width:1321.932210px;}
._158{width:1324.818786px;}
._107{width:1326.092604px;}
._c9{width:1332.750810px;}
._fa{width:1335.193650px;}
._f8{width:1358.533578px;}
._100{width:1361.318448px;}
._ca{width:1370.971104px;}
._cd{width:1375.657344px;}
._fe{width:1376.917344px;}
._15c{width:1380.818706px;}
._d7{width:1382.834268px;}
._109{width:1400.141736px;}
._10b{width:1401.736770px;}
._ce{width:1403.949546px;}
._ff{width:1405.269546px;}
._146{width:1415.320716px;}
._106{width:1417.454268px;}
._159{width:1449.448566px;}
._dd{width:1484.327646px;}
._d1{width:1492.772364px;}
._c7{width:1495.062534px;}
._d2{width:1499.300574px;}
._103{width:1501.220574px;}
._de{width:1519.062474px;}
._10e{width:1520.382474px;}
._d3{width:1544.590380px;}
._104{width:1545.910380px;}
._10a{width:1550.551380px;}
._d4{width:1553.360094px;}
._148{width:1588.367646px;}
._105{width:1592.180094px;}
._101{width:1595.604924px;}
._d0{width:1598.654538px;}
._102{width:1599.974538px;}
._cf{width:1601.304924px;}
._149{width:1617.653382px;}
._d5{width:1637.376120px;}
._13{width:1692.066888px;}
._dc{width:1740.698706px;}
._10d{width:1742.018706px;}
._cc{width:1768.922790px;}
._fd{width:1770.242790px;}
._17e{width:1778.655216px;}
._d6{width:1784.835216px;}
._4{width:1787.269632px;}
._d9{width:1790.320212px;}
._29{width:1811.415216px;}
._31{width:1814.835216px;}
._8d{width:1816.215216px;}
._147{width:1839.224160px;}
._db{width:1857.743868px;}
._10c{width:1859.063868px;}
._108{width:1861.420212px;}
._11{width:2128.060404px;}
.fc5{color:rgb(191,208,216);}
.fc3{color:rgb(10,146,141);}
.fc2{color:rgb(161,49,87);}
.fc1{color:rgb(79,117,144);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs8{font-size:47.820000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:65.454000px;}
.fsa{font-size:65.754000px;}
.fse{font-size:71.730000px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:86.076000px;}
.fs7{font-size:89.664000px;}
.fs2{font-size:102.000000px;}
.fsc{font-size:148.722000px;}
.fs6{font-size:179.328000px;}
.fs9{font-size:191.280000px;}
.fs5{font-size:735.240000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:56.445000px;}
.y46{bottom:70.567939px;}
.y4{bottom:97.125005px;}
.y45{bottom:111.217939px;}
.y10d{bottom:121.635000px;}
.y175{bottom:121.815000px;}
.yac{bottom:124.650000px;}
.y13b{bottom:126.900000px;}
.yd4{bottom:129.165000px;}
.y7e{bottom:131.145000px;}
.y44{bottom:131.542939px;}
.y1a1{bottom:132.450000px;}
.ye7{bottom:136.695000px;}
.y1e{bottom:139.264499px;}
.y14b{bottom:140.250000px;}
.y10c{bottom:141.960000px;}
.y174{bottom:142.140000px;}
.yab{bottom:144.975000px;}
.y124{bottom:145.560000px;}
.y13a{bottom:147.210000px;}
.y4c{bottom:147.885022px;}
.yd3{bottom:149.490000px;}
.y7d{bottom:151.470000px;}
.y43{bottom:151.852939px;}
.y1a0{bottom:152.775000px;}
.y25{bottom:154.560023px;}
.ye6{bottom:157.020000px;}
.y14a{bottom:160.575000px;}
.y10b{bottom:162.285000px;}
.y173{bottom:162.465000px;}
.yaa{bottom:165.300000px;}
.y139{bottom:167.535000px;}
.yd2{bottom:169.815000px;}
.y7c{bottom:171.795000px;}
.y42{bottom:172.177939px;}
.y19f{bottom:173.100000px;}
.ye5{bottom:177.345000px;}
.y149{bottom:180.900000px;}
.y10a{bottom:182.610000px;}
.y172{bottom:182.790000px;}
.ya9{bottom:185.625000px;}
.y138{bottom:187.860000px;}
.yd1{bottom:190.140000px;}
.y7b{bottom:192.120000px;}
.y41{bottom:192.502939px;}
.y19e{bottom:193.425000px;}
.y15{bottom:196.933500px;}
.ye4{bottom:197.670000px;}
.y148{bottom:201.225000px;}
.y109{bottom:202.935000px;}
.y171{bottom:203.115000px;}
.ya8{bottom:205.950000px;}
.y1af{bottom:208.185000px;}
.y1d{bottom:209.518500px;}
.y14{bottom:209.533503px;}
.yd0{bottom:210.465000px;}
.y7a{bottom:212.445000px;}
.y19d{bottom:213.750000px;}
.ye3{bottom:217.995000px;}
.y147{bottom:221.550000px;}
.y1c{bottom:222.118502px;}
.y13{bottom:222.133505px;}
.y108{bottom:223.260000px;}
.y170{bottom:223.425000px;}
.ycf{bottom:230.790000px;}
.y40{bottom:232.526089px;}
.y79{bottom:232.755000px;}
.y19c{bottom:234.075000px;}
.y1b{bottom:234.718504px;}
.y12{bottom:234.733496px;}
.y137{bottom:238.020000px;}
.ye2{bottom:238.320000px;}
.y11c{bottom:240.285000px;}
.y146{bottom:241.875000px;}
.y107{bottom:243.585000px;}
.y16f{bottom:243.750000px;}
.yce{bottom:251.115000px;}
.y78{bottom:253.080000px;}
.y19b{bottom:254.400000px;}
.ya7{bottom:256.095000px;}
.y1ae{bottom:258.345000px;}
.ye1{bottom:258.645000px;}
.y1a{bottom:259.918497px;}
.y11{bottom:259.933500px;}
.y145{bottom:262.200000px;}
.y106{bottom:263.895000px;}
.y16e{bottom:264.075000px;}
.ycd{bottom:271.440000px;}
.y19{bottom:272.518500px;}
.y10{bottom:272.533503px;}
.y3f{bottom:273.194989px;}
.y77{bottom:273.405000px;}
.y19a{bottom:274.725000px;}
.y136{bottom:276.690000px;}
.ye0{bottom:278.970000px;}
.y144{bottom:282.525000px;}
.y105{bottom:284.220000px;}
.y16d{bottom:284.400000px;}
.y18{bottom:285.118502px;}
.yf{bottom:285.133499px;}
.ycc{bottom:291.765000px;}
.y3e{bottom:293.519989px;}
.y76{bottom:293.730000px;}
.ya6{bottom:294.780000px;}
.y199{bottom:295.050000px;}
.y135{bottom:297.015000px;}
.ydf{bottom:299.295000px;}
.y143{bottom:302.850000px;}
.y104{bottom:304.545000px;}
.y16c{bottom:304.725000px;}
.y24{bottom:309.545992px;}
.y17{bottom:310.318501px;}
.ye{bottom:310.333501px;}
.ycb{bottom:312.075000px;}
.y75{bottom:314.055000px;}
.ya5{bottom:315.105000px;}
.y198{bottom:315.375000px;}
.y134{bottom:317.340000px;}
.yde{bottom:319.620000px;}
.y16{bottom:322.918500px;}
.yd{bottom:322.933500px;}
.y142{bottom:323.175000px;}
.y103{bottom:324.870000px;}
.y16b{bottom:325.050000px;}
.y119{bottom:332.400000px;}
.y74{bottom:334.380000px;}
.ya4{bottom:335.430000px;}
.y197{bottom:335.685000px;}
.y133{bottom:337.665000px;}
.ydd{bottom:339.945000px;}
.y141{bottom:343.500000px;}
.y102{bottom:345.195000px;}
.y16a{bottom:345.375000px;}
.yc{bottom:348.133500px;}
.y118{bottom:352.725000px;}
.y73{bottom:354.705000px;}
.ya3{bottom:355.755000px;}
.y132{bottom:357.990000px;}
.ydc{bottom:360.255000px;}
.yca{bottom:362.235000px;}
.y140{bottom:363.825000px;}
.y169{bottom:365.700000px;}
.y23{bottom:366.929992px;}
.y117{bottom:373.050000px;}
.y72{bottom:375.030000px;}
.ya2{bottom:376.065000px;}
.y131{bottom:378.315000px;}
.ydb{bottom:380.580000px;}
.y13f{bottom:384.135000px;}
.y196{bottom:385.845000px;}
.y168{bottom:386.025000px;}
.yb{bottom:386.785499px;}
.y116{bottom:393.375000px;}
.y71{bottom:395.355000px;}
.ya1{bottom:396.390000px;}
.y1ad{bottom:398.640000px;}
.yc9{bottom:400.905000px;}
.y167{bottom:406.350000px;}
.ya{bottom:408.044999px;}
.y115{bottom:413.700000px;}
.y70{bottom:415.680000px;}
.ya0{bottom:416.715000px;}
.y1ac{bottom:418.965000px;}
.yc8{bottom:421.230000px;}
.y13e{bottom:421.380000px;}
.y195{bottom:424.515000px;}
.y166{bottom:426.675000px;}
.y130{bottom:428.460000px;}
.y101{bottom:434.025000px;}
.y6f{bottom:436.005000px;}
.y9f{bottom:437.040000px;}
.yc7{bottom:441.555000px;}
.y22{bottom:444.294009px;}
.y194{bottom:444.840000px;}
.y165{bottom:447.000000px;}
.y100{bottom:454.350000px;}
.y13d{bottom:456.315000px;}
.y6e{bottom:456.330000px;}
.y9e{bottom:457.365000px;}
.yc6{bottom:461.880000px;}
.y193{bottom:465.165000px;}
.y12f{bottom:467.145000px;}
.y164{bottom:467.325000px;}
.y1ab{bottom:469.110000px;}
.yff{bottom:474.675000px;}
.y6d{bottom:476.640000px;}
.y9d{bottom:477.690000px;}
.yc5{bottom:482.205000px;}
.y192{bottom:485.490000px;}
.y12e{bottom:487.470000px;}
.y163{bottom:487.635000px;}
.yfe{bottom:495.000000px;}
.y6c{bottom:496.965000px;}
.y9c{bottom:498.015000px;}
.y3d{bottom:500.262313px;}
.yc4{bottom:502.530000px;}
.y191{bottom:505.815000px;}
.y12d{bottom:507.780000px;}
.y162{bottom:507.960000px;}
.yfd{bottom:515.325000px;}
.y6b{bottom:517.290000px;}
.y9b{bottom:518.340000px;}
.yc3{bottom:522.855000px;}
.y3c{bottom:523.860013px;}
.y114{bottom:524.820000px;}
.y190{bottom:526.140000px;}
.y12c{bottom:528.105000px;}
.y161{bottom:528.285000px;}
.yfc{bottom:535.650000px;}
.y6a{bottom:537.615000px;}
.y9a{bottom:538.665000px;}
.y9{bottom:538.864499px;}
.yc2{bottom:543.180000px;}
.y3b{bottom:544.185013px;}
.y11e{bottom:545.145000px;}
.y12b{bottom:548.430000px;}
.y160{bottom:548.610000px;}
.yfb{bottom:555.960000px;}
.y8{bottom:556.864499px;}
.y69{bottom:557.940000px;}
.y99{bottom:558.990000px;}
.yda{bottom:563.505000px;}
.y12a{bottom:568.755000px;}
.y15f{bottom:568.935000px;}
.yfa{bottom:576.285000px;}
.y68{bottom:578.265000px;}
.y98{bottom:579.315000px;}
.yd9{bottom:583.830000px;}
.y1aa{bottom:589.080000px;}
.y15e{bottom:589.260000px;}
.yc1{bottom:593.325000px;}
.yf9{bottom:596.610000px;}
.y67{bottom:598.590000px;}
.y97{bottom:599.640000px;}
.y3a{bottom:602.145022px;}
.yd8{bottom:604.140000px;}
.y123{bottom:606.120000px;}
.y1a9{bottom:609.405000px;}
.y15d{bottom:609.585000px;}
.y18f{bottom:614.970000px;}
.yf8{bottom:616.935000px;}
.y66{bottom:618.915000px;}
.y96{bottom:619.950000px;}
.y39{bottom:622.470022px;}
.yd7{bottom:624.465000px;}
.y121{bottom:626.445000px;}
.y1a8{bottom:629.730000px;}
.y15c{bottom:629.910000px;}
.yc0{bottom:632.010000px;}
.y18e{bottom:635.295000px;}
.yf7{bottom:637.260000px;}
.y65{bottom:639.240000px;}
.y95{bottom:640.275000px;}
.y38{bottom:642.795022px;}
.yd6{bottom:644.790000px;}
.y7{bottom:645.510000px;}
.y15b{bottom:650.235000px;}
.ybf{bottom:652.320000px;}
.y18d{bottom:655.620000px;}
.yf6{bottom:657.585000px;}
.y64{bottom:659.565000px;}
.y94{bottom:660.600000px;}
.y37{bottom:663.120022px;}
.y113{bottom:665.115000px;}
.y6{bottom:666.771000px;}
.y15a{bottom:670.560000px;}
.ybe{bottom:672.645000px;}
.y18c{bottom:675.930000px;}
.yf5{bottom:677.910000px;}
.y1a7{bottom:679.875000px;}
.y63{bottom:679.890000px;}
.y93{bottom:680.925000px;}
.y36{bottom:683.445022px;}
.y112{bottom:685.440000px;}
.y120{bottom:687.420000px;}
.y159{bottom:690.885000px;}
.ybd{bottom:692.970000px;}
.yd5{bottom:694.950000px;}
.y18b{bottom:696.255000px;}
.yf4{bottom:698.235000px;}
.y62{bottom:700.215000px;}
.y92{bottom:701.250000px;}
.y35{bottom:703.770022px;}
.y111{bottom:705.765000px;}
.y13c{bottom:707.745000px;}
.y158{bottom:711.210000px;}
.ybc{bottom:713.295000px;}
.y4b{bottom:716.400022px;}
.y18a{bottom:716.580000px;}
.y129{bottom:718.560000px;}
.y61{bottom:720.525000px;}
.y91{bottom:721.575000px;}
.y34{bottom:724.095022px;}
.y110{bottom:726.090000px;}
.y5{bottom:726.298500px;}
.ybb{bottom:733.620000px;}
.y189{bottom:736.905000px;}
.y128{bottom:738.885000px;}
.y60{bottom:740.850000px;}
.y90{bottom:741.900000px;}
.y10f{bottom:746.415000px;}
.yf3{bottom:748.380000px;}
.y3{bottom:752.599495px;}
.yba{bottom:753.945000px;}
.y4a{bottom:757.034971px;}
.y188{bottom:757.230000px;}
.y127{bottom:759.210000px;}
.y5f{bottom:761.175000px;}
.y157{bottom:761.355000px;}
.y8f{bottom:762.225000px;}
.y11b{bottom:766.740000px;}
.yb9{bottom:774.270000px;}
.y187{bottom:777.555000px;}
.y1a6{bottom:779.535000px;}
.y5e{bottom:781.500000px;}
.y8e{bottom:782.550000px;}
.yf2{bottom:787.065000px;}
.y33{bottom:794.572211px;}
.yb8{bottom:794.595000px;}
.y10e{bottom:796.560000px;}
.y186{bottom:797.880000px;}
.y1a5{bottom:799.845000px;}
.y156{bottom:800.025000px;}
.y5d{bottom:801.825000px;}
.y8d{bottom:802.875000px;}
.yf1{bottom:807.390000px;}
.y126{bottom:809.355000px;}
.yb7{bottom:814.920000px;}
.y49{bottom:818.009971px;}
.y1a4{bottom:820.170000px;}
.y155{bottom:820.350000px;}
.y5c{bottom:822.150000px;}
.y8c{bottom:823.200000px;}
.yf0{bottom:827.715000px;}
.y32{bottom:835.207211px;}
.yb6{bottom:835.245000px;}
.y1a3{bottom:840.495000px;}
.y154{bottom:840.675000px;}
.y5b{bottom:842.475000px;}
.yef{bottom:848.025000px;}
.y31{bottom:855.517211px;}
.yb5{bottom:855.570000px;}
.y153{bottom:861.000000px;}
.y5a{bottom:862.800000px;}
.y48{bottom:862.844971px;}
.yee{bottom:868.350000px;}
.y21{bottom:868.365022px;}
.y1b1{bottom:870.330000px;}
.y8b{bottom:873.345000px;}
.y30{bottom:875.842211px;}
.yb4{bottom:875.895000px;}
.y11f{bottom:877.860000px;}
.y2{bottom:879.369000px;}
.y152{bottom:881.325000px;}
.y59{bottom:883.125000px;}
.y185{bottom:886.710000px;}
.yed{bottom:888.675000px;}
.y1a2{bottom:890.655000px;}
.y2f{bottom:896.167211px;}
.yb3{bottom:896.205000px;}
.y11d{bottom:898.185000px;}
.y151{bottom:901.650000px;}
.y58{bottom:903.450000px;}
.y20{bottom:904.725022px;}
.y8a{bottom:905.985000px;}
.y184{bottom:907.035000px;}
.yec{bottom:909.000000px;}
.y2e{bottom:916.492211px;}
.yb2{bottom:916.530000px;}
.y150{bottom:921.975000px;}
.y57{bottom:923.775000px;}
.y183{bottom:927.360000px;}
.yeb{bottom:929.325000px;}
.y2d{bottom:936.817211px;}
.yb1{bottom:936.855000px;}
.y89{bottom:938.625000px;}
.y11a{bottom:938.835000px;}
.y14f{bottom:942.300000px;}
.y56{bottom:944.100000px;}
.y182{bottom:947.685000px;}
.yea{bottom:949.650000px;}
.y2c{bottom:957.142211px;}
.yb0{bottom:957.180000px;}
.y122{bottom:959.160000px;}
.y14e{bottom:962.625000px;}
.y55{bottom:964.425000px;}
.y1f{bottom:965.430022px;}
.y1{bottom:966.726000px;}
.y181{bottom:967.995000px;}
.ye9{bottom:969.975000px;}
.y88{bottom:971.265000px;}
.y2b{bottom:977.467211px;}
.yaf{bottom:977.505000px;}
.y14d{bottom:982.950000px;}
.y54{bottom:984.735000px;}
.y180{bottom:988.320000px;}
.y17a{bottom:990.300000px;}
.yae{bottom:997.830000px;}
.y125{bottom:999.810000px;}
.y53{bottom:1005.060000px;}
.y17f{bottom:1008.645000px;}
.y87{bottom:1009.230000px;}
.y179{bottom:1010.625000px;}
.yad{bottom:1018.155000px;}
.y2a{bottom:1018.155011px;}
.ye8{bottom:1020.120000px;}
.y52{bottom:1025.385000px;}
.y17e{bottom:1028.970000px;}
.y178{bottom:1030.950000px;}
.y14c{bottom:1033.095000px;}
.y84{bottom:1038.480000px;}
.y29{bottom:1038.480011px;}
.y51{bottom:1045.710000px;}
.y17d{bottom:1049.295000px;}
.y177{bottom:1051.275000px;}
.y83{bottom:1058.805000px;}
.y86{bottom:1062.075000px;}
.y50{bottom:1066.035000px;}
.y17c{bottom:1069.620000px;}
.y82{bottom:1079.130000px;}
.y1b0{bottom:1081.095000px;}
.y85{bottom:1082.400000px;}
.y17b{bottom:1089.945000px;}
.y28{bottom:1099.451096px;}
.y81{bottom:1099.455000px;}
.y176{bottom:1101.420000px;}
.y4f{bottom:1102.725000px;}
.y27{bottom:1119.779996px;}
.y80{bottom:1119.780000px;}
.y47{bottom:1120.275055px;}
.y26{bottom:1140.089996px;}
.y4e{bottom:1140.090000px;}
.y4d{bottom:1193.145000px;}
.h7{height:32.130000px;}
.hc{height:34.669500px;}
.h6{height:45.900000px;}
.h13{height:47.454150px;}
.he{height:47.671650px;}
.hf{height:47.715966px;}
.h3{height:48.195000px;}
.h11{height:48.370506px;}
.h14{height:52.291170px;}
.h2{height:55.080000px;}
.h12{height:62.405100px;}
.hb{height:65.006400px;}
.h5{height:78.030000px;}
.h10{height:107.823450px;}
.h4{height:119.055004px;}
.ha{height:130.012800px;}
.hd{height:138.678000px;}
.h9{height:543.342360px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:85.035000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:133.935001px;}
.x8{left:135.059589px;}
.x15{left:139.020000px;}
.xc{left:142.905000px;}
.xb{left:144.090000px;}
.xd{left:145.905000px;}
.x14{left:148.680000px;}
.x13{left:149.730000px;}
.x10{left:151.185000px;}
.x11{left:156.960000px;}
.xa{left:158.490000px;}
.xf{left:165.990000px;}
.xe{left:167.175000px;}
.x12{left:169.065000px;}
.x4{left:203.484001px;}
.x9{left:417.344970px;}
.x3{left:454.959000px;}
.x5{left:552.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:29.090667pt;}
.ls3{letter-spacing:32.586864pt;}
.ls2{letter-spacing:63.762683pt;}
.ws1{word-spacing:-379.710613pt;}
.ws5{word-spacing:-40.976427pt;}
.wse{word-spacing:-29.090667pt;}
.ws6{word-spacing:-28.564480pt;}
.ws2{word-spacing:-25.185621pt;}
.ws11{word-spacing:-22.076955pt;}
.ws10{word-spacing:-20.887179pt;}
.wsc1{word-spacing:-19.316203pt;}
.ws3f{word-spacing:-19.199840pt;}
.ws3e{word-spacing:-18.268939pt;}
.ws9{word-spacing:-17.279856pt;}
.ws3a{word-spacing:-16.930768pt;}
.ws13{word-spacing:-16.872587pt;}
.ws44{word-spacing:-16.003760pt;}
.ws42{word-spacing:-15.940000pt;}
.wsc{word-spacing:-15.185328pt;}
.wsb{word-spacing:-15.127147pt;}
.ws12{word-spacing:-14.661696pt;}
.wsa{word-spacing:-14.603515pt;}
.wsd{word-spacing:-14.545333pt;}
.ws8{word-spacing:-13.265344pt;}
.ws3{word-spacing:-12.513109pt;}
.ws40{word-spacing:-12.012384pt;}
.wsf{word-spacing:-11.054453pt;}
.wsd2{word-spacing:-10.083280pt;}
.wsc8{word-spacing:-10.081973pt;}
.ws88{word-spacing:-10.079280pt;}
.wsb2{word-spacing:-10.078000pt;}
.wsc9{word-spacing:-10.074373pt;}
.ws45{word-spacing:-10.072667pt;}
.ws76{word-spacing:-10.072133pt;}
.wsad{word-spacing:-10.068560pt;}
.wsd0{word-spacing:-10.068133pt;}
.wscf{word-spacing:-10.066773pt;}
.wsd4{word-spacing:-10.062560pt;}
.wsbe{word-spacing:-10.061307pt;}
.wscd{word-spacing:-10.057733pt;}
.ws9b{word-spacing:-10.054827pt;}
.ws9a{word-spacing:-10.048080pt;}
.wsaf{word-spacing:-10.046213pt;}
.wsb3{word-spacing:-10.042613pt;}
.wsbb{word-spacing:-10.038960pt;}
.ws89{word-spacing:-10.038853pt;}
.wsd3{word-spacing:-10.037093pt;}
.ws8a{word-spacing:-10.036240pt;}
.wsa7{word-spacing:-10.022773pt;}
.ws41{word-spacing:-10.022000pt;}
.ws5c{word-spacing:-10.021680pt;}
.wsae{word-spacing:-10.021520pt;}
.wsb5{word-spacing:-10.015920pt;}
.wsd1{word-spacing:-10.011173pt;}
.wsc2{word-spacing:-10.008773pt;}
.ws43{word-spacing:-10.007227pt;}
.wsce{word-spacing:-10.006747pt;}
.wsa6{word-spacing:-10.004267pt;}
.wsb4{word-spacing:-10.003787pt;}
.ws8b{word-spacing:-10.000853pt;}
.ws9c{word-spacing:-9.999600pt;}
.wsb9{word-spacing:-9.998507pt;}
.wsba{word-spacing:-9.995093pt;}
.wsb7{word-spacing:-9.994160pt;}
.wsb0{word-spacing:-9.994000pt;}
.wsbf{word-spacing:-9.991680pt;}
.wsc7{word-spacing:-9.991360pt;}
.wsb8{word-spacing:-9.986373pt;}
.wsc3{word-spacing:-9.984213pt;}
.wsb6{word-spacing:-9.982027pt;}
.wsc0{word-spacing:-9.979547pt;}
.wsbd{word-spacing:-9.975813pt;}
.wscb{word-spacing:-9.973013pt;}
.wsca{word-spacing:-9.972853pt;}
.wsa8{word-spacing:-9.972080pt;}
.ws75{word-spacing:-9.971147pt;}
.wscc{word-spacing:-9.969787pt;}
.ws7{word-spacing:-9.234784pt;}
.ws15{word-spacing:-9.134469pt;}
.ws39{word-spacing:-8.164976pt;}
.ws3b{word-spacing:-8.160464pt;}
.ws3c{word-spacing:-8.155952pt;}
.ws4{word-spacing:-6.673547pt;}
.ws28{word-spacing:-2.711776pt;}
.ws32{word-spacing:-2.703563pt;}
.ws26{word-spacing:-2.689691pt;}
.ws27{word-spacing:-2.685179pt;}
.ws36{word-spacing:-2.684368pt;}
.ws33{word-spacing:-2.681477pt;}
.ws22{word-spacing:-2.680667pt;}
.ws31{word-spacing:-2.679856pt;}
.ws23{word-spacing:-2.676155pt;}
.ws29{word-spacing:-2.667131pt;}
.ws2f{word-spacing:-2.663429pt;}
.ws38{word-spacing:-2.662619pt;}
.ws37{word-spacing:-2.658107pt;}
.ws30{word-spacing:-2.654405pt;}
.ws0{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.336437pt;}
.ws2b{word-spacing:0.354821pt;}
.ws2a{word-spacing:0.363845pt;}
.ws2d{word-spacing:0.368357pt;}
.ws2c{word-spacing:0.377381pt;}
.ws34{word-spacing:1.581488pt;}
.ws35{word-spacing:1.599536pt;}
.ws25{word-spacing:2.781557pt;}
.ws24{word-spacing:2.835227pt;}
.ws3d{word-spacing:7.115616pt;}
.ws20{word-spacing:20.918592pt;}
.ws21{word-spacing:20.923104pt;}
.ws1a{word-spacing:20.931653pt;}
.ws1f{word-spacing:20.936976pt;}
.ws1b{word-spacing:20.954213pt;}
.ws1c{word-spacing:20.967749pt;}
.ws17{word-spacing:23.972464pt;}
.ws16{word-spacing:23.976976pt;}
.ws18{word-spacing:23.994213pt;}
.ws19{word-spacing:24.003237pt;}
.ws1e{word-spacing:25.185259pt;}
.ws1d{word-spacing:25.229904pt;}
.ws14{word-spacing:31.708827pt;}
.ws9d{word-spacing:34.594640pt;}
.ws9e{word-spacing:34.599504pt;}
.wsaa{word-spacing:34.604352pt;}
.wsac{word-spacing:34.604357pt;}
.ws96{word-spacing:34.604843pt;}
.wsab{word-spacing:34.609211pt;}
.ws9f{word-spacing:34.614048pt;}
.ws91{word-spacing:34.614549pt;}
.ws97{word-spacing:34.619392pt;}
.wsbc{word-spacing:34.623755pt;}
.wsa5{word-spacing:34.623765pt;}
.wsa1{word-spacing:34.628597pt;}
.ws95{word-spacing:34.629088pt;}
.ws8c{word-spacing:34.629120pt;}
.ws8e{word-spacing:34.629125pt;}
.ws90{word-spacing:34.629131pt;}
.wsb1{word-spacing:34.633472pt;}
.wsc4{word-spacing:34.633477pt;}
.ws92{word-spacing:34.633915pt;}
.ws74{word-spacing:34.638133pt;}
.ws7d{word-spacing:34.638299pt;}
.wsa9{word-spacing:34.638304pt;}
.wsa4{word-spacing:34.638325pt;}
.ws82{word-spacing:34.638528pt;}
.ws93{word-spacing:34.638779pt;}
.ws8f{word-spacing:34.638837pt;}
.ws5a{word-spacing:34.642981pt;}
.ws7b{word-spacing:34.643147pt;}
.wsc6{word-spacing:34.643157pt;}
.ws98{word-spacing:34.643627pt;}
.wsa2{word-spacing:34.647797pt;}
.ws78{word-spacing:34.647973pt;}
.wsa0{word-spacing:34.647995pt;}
.wsc5{word-spacing:34.648011pt;}
.wsa3{word-spacing:34.648032pt;}
.ws99{word-spacing:34.648485pt;}
.ws79{word-spacing:34.652837pt;}
.ws83{word-spacing:34.653056pt;}
.ws94{word-spacing:34.653323pt;}
.ws8d{word-spacing:34.653397pt;}
.ws7e{word-spacing:34.657685pt;}
.ws7f{word-spacing:34.667392pt;}
.ws84{word-spacing:34.667616pt;}
.ws5b{word-spacing:34.672101pt;}
.ws7a{word-spacing:34.672229pt;}
.ws87{word-spacing:34.677323pt;}
.ws7c{word-spacing:34.681931pt;}
.ws81{word-spacing:34.682176pt;}
.ws80{word-spacing:34.687008pt;}
.ws77{word-spacing:34.691637pt;}
.ws85{word-spacing:34.691856pt;}
.ws86{word-spacing:34.691883pt;}
.ws6a{word-spacing:34.701131pt;}
.wsd5{word-spacing:98.384635pt;}
.wsd6{word-spacing:101.235520pt;}
.wsd7{word-spacing:106.530021pt;}
.wsd9{word-spacing:129.395285pt;}
.wsd8{word-spacing:131.140725pt;}
.wsda{word-spacing:160.432016pt;}
.wsdc{word-spacing:191.418683pt;}
.wsdb{word-spacing:193.178683pt;}
.wsdd{word-spacing:222.478304pt;}
.ws56{word-spacing:1182.658176pt;}
.ws59{word-spacing:1187.341819pt;}
.ws57{word-spacing:1190.459392pt;}
.ws55{word-spacing:1191.269088pt;}
.ws58{word-spacing:1195.336960pt;}
.ws52{word-spacing:1209.993915pt;}
.ws53{word-spacing:1209.998779pt;}
.ws50{word-spacing:1211.133397pt;}
.ws54{word-spacing:1211.719989pt;}
.ws51{word-spacing:1212.854549pt;}
.ws4f{word-spacing:1213.669131pt;}
.ws4b{word-spacing:1213.678837pt;}
.ws4e{word-spacing:1214.813397pt;}
.ws4c{word-spacing:1216.626731pt;}
.ws4d{word-spacing:1224.360064pt;}
.ws6b{word-spacing:1236.709067pt;}
.ws6c{word-spacing:1236.713931pt;}
.ws70{word-spacing:1237.930907pt;}
.ws6f{word-spacing:1238.503024pt;}
.ws6d{word-spacing:1239.075141pt;}
.ws6e{word-spacing:1239.642421pt;}
.ws67{word-spacing:1240.456965pt;}
.ws4a{word-spacing:1241.000064pt;}
.ws71{word-spacing:1241.625445pt;}
.ws46{word-spacing:1242.149120pt;}
.ws47{word-spacing:1243.535787pt;}
.ws69{word-spacing:1243.802453pt;}
.ws49{word-spacing:1244.282459pt;}
.ws48{word-spacing:1246.493397pt;}
.ws72{word-spacing:1267.710304pt;}
.ws63{word-spacing:1267.734496pt;}
.ws66{word-spacing:1267.749120pt;}
.ws68{word-spacing:1270.086080pt;}
.ws65{word-spacing:1270.682384pt;}
.ws64{word-spacing:1271.472688pt;}
.ws62{word-spacing:1273.029045pt;}
.ws5f{word-spacing:1298.745419pt;}
.ws61{word-spacing:1298.755109pt;}
.ws73{word-spacing:1298.764848pt;}
.ws5d{word-spacing:1298.764853pt;}
.ws60{word-spacing:1298.784192pt;}
.ws5e{word-spacing:1298.789120pt;}
._0{margin-left:-32.023787pt;}
._6{margin-left:-12.071893pt;}
._5{margin-left:-10.074027pt;}
._f{margin-left:-6.993680pt;}
._7{margin-left:-5.100800pt;}
._8{margin-left:-4.189056pt;}
._2{margin-left:-3.188053pt;}
._1{margin-left:-1.434624pt;}
._d{width:0.947717pt;}
._3{width:1.912832pt;}
._13f{width:3.135040pt;}
._b{width:10.918181pt;}
._c{width:13.536341pt;}
._9{width:14.932693pt;}
._e{width:16.821600pt;}
._a{width:17.860123pt;}
._28{width:20.326448pt;}
._1e{width:21.253904pt;}
._26{width:24.061781pt;}
._16{width:25.207307pt;}
._1c{width:26.404715pt;}
._24{width:28.467323pt;}
._15{width:30.548069pt;}
._14{width:31.700741pt;}
._1b{width:33.592917pt;}
._17{width:35.426224pt;}
._1a{width:36.711835pt;}
._2a{width:38.256000pt;}
._1d{width:39.164443pt;}
._22{width:40.094565pt;}
._23{width:42.081755pt;}
._20{width:43.623403pt;}
._21{width:45.415349pt;}
._1f{width:47.391968pt;}
._19{width:49.874352pt;}
._27{width:51.060043pt;}
._18{width:52.037947pt;}
._25{width:53.829872pt;}
._12{width:55.388629pt;}
._16a{width:126.317157pt;}
._11f{width:170.699733pt;}
._98{width:173.633067pt;}
._e2{width:176.779733pt;}
._38{width:180.193067pt;}
._79{width:182.913067pt;}
._30{width:184.459733pt;}
._124{width:185.579733pt;}
._5a{width:186.913067pt;}
._40{width:188.139733pt;}
._144{width:198.851067pt;}
._175{width:214.287883pt;}
._eb{width:216.167973pt;}
._166{width:227.760165pt;}
._174{width:244.925200pt;}
._17b{width:250.426059pt;}
._177{width:269.335573pt;}
._14c{width:280.797499pt;}
._140{width:294.883643pt;}
._bd{width:312.146933pt;}
._b5{width:323.779168pt;}
._14e{width:326.532325pt;}
._f4{width:331.293600pt;}
._178{width:338.479008pt;}
._115{width:354.117984pt;}
._f6{width:357.771179pt;}
._bf{width:363.477845pt;}
._70{width:365.557520pt;}
._b6{width:372.603541pt;}
._e3{width:376.375211pt;}
._157{width:381.088731pt;}
._15b{width:383.373467pt;}
._7e{width:389.175083pt;}
._7f{width:394.525200pt;}
._17d{width:397.560427pt;}
._131{width:399.170048pt;}
._13c{width:400.098592pt;}
._bc{width:403.712741pt;}
._f5{width:406.360512pt;}
._14d{width:415.812107pt;}
._7b{width:423.089179pt;}
._128{width:428.509243pt;}
._73{width:432.732160pt;}
._17c{width:433.862827pt;}
._17a{width:440.436853pt;}
._145{width:448.555429pt;}
._16f{width:456.566400pt;}
._f3{width:461.385499pt;}
._9a{width:465.391781pt;}
._11e{width:472.170853pt;}
._97{width:475.104187pt;}
._80{width:478.575771pt;}
._37{width:481.664187pt;}
._78{width:484.384187pt;}
._2f{width:485.930853pt;}
._123{width:487.050853pt;}
._59{width:488.384187pt;}
._3f{width:489.610853pt;}
._141{width:495.937915pt;}
._173{width:505.085856pt;}
._130{width:506.565616pt;}
._12f{width:507.845616pt;}
._9b{width:509.061712pt;}
._b2{width:512.570304pt;}
._72{width:514.637189pt;}
._11d{width:516.234032pt;}
._96{width:519.167365pt;}
._e1{width:522.314032pt;}
._36{width:525.727365pt;}
._77{width:528.447365pt;}
._2e{width:529.994032pt;}
._122{width:531.114032pt;}
._58{width:532.447365pt;}
._3e{width:533.674032pt;}
._c3{width:536.435867pt;}
._163{width:546.299099pt;}
._c6{width:553.492960pt;}
._168{width:556.254523pt;}
._172{width:569.493083pt;}
._12c{width:570.916192pt;}
._7d{width:573.123813pt;}
._81{width:575.325547pt;}
._12e{width:582.452683pt;}
._113{width:584.682416pt;}
._a3{width:586.157131pt;}
._71{width:592.789051pt;}
._9d{width:597.895243pt;}
._129{width:599.154315pt;}
._8e{width:602.637131pt;}
._a7{width:604.238101pt;}
._a8{width:606.598848pt;}
._a6{width:608.465979pt;}
._ba{width:610.022448pt;}
._13a{width:611.624357pt;}
._f0{width:613.542448pt;}
._126{width:615.703205pt;}
._8f{width:617.815563pt;}
._93{width:619.304096pt;}
._91{width:621.425979pt;}
._90{width:623.536149pt;}
._127{width:625.749093pt;}
._92{width:628.078101pt;}
._13b{width:628.983205pt;}
._aa{width:632.470133pt;}
._8b{width:633.623797pt;}
._8a{width:634.850464pt;}
._a4{width:635.842229pt;}
._89{width:637.408896pt;}
._86{width:638.370464pt;}
._8c{width:640.593813pt;}
._88{width:642.210464pt;}
._87{width:643.662491pt;}
._84{width:645.148576pt;}
._85{width:646.748576pt;}
._a1{width:648.290464pt;}
._a0{width:650.637131pt;}
._9f{width:652.557131pt;}
._9e{width:653.681909pt;}
._170{width:655.756325pt;}
._165{width:657.894987pt;}
._112{width:659.828421pt;}
._ab{width:661.154464pt;}
._7c{width:662.578848pt;}
._a9{width:663.997429pt;}
._a5{width:666.736149pt;}
._150{width:671.880037pt;}
._a2{width:676.290464pt;}
._b3{width:678.452576pt;}
._e9{width:682.025909pt;}
._167{width:682.992523pt;}
._b8{width:685.192731pt;}
._161{width:687.754075pt;}
._151{width:688.912811pt;}
._12a{width:695.131291pt;}
._11c{width:704.047451pt;}
._b4{width:707.132171pt;}
._ea{width:708.945504pt;}
._bb{width:711.955205pt;}
._119{width:713.685931pt;}
._6f{width:720.309019pt;}
._f2{width:724.701872pt;}
._f1{width:727.989019pt;}
._116{width:730.297003pt;}
._179{width:734.950763pt;}
._171{width:735.892229pt;}
._95{width:737.851088pt;}
._b7{width:739.766821pt;}
._ae{width:740.857472pt;}
._135{width:741.754117pt;}
._ed{width:743.286821pt;}
._35{width:744.527451pt;}
._76{width:747.247451pt;}
._2d{width:748.677755pt;}
._32{width:750.659765pt;}
._3d{width:752.474117pt;}
._4f{width:754.563248pt;}
._16e{width:758.037520pt;}
._164{width:761.220960pt;}
._160{width:767.637520pt;}
._ac{width:768.711776pt;}
._ec{width:772.261125pt;}
._e4{width:775.485109pt;}
._e0{width:786.059733pt;}
._111{width:787.233067pt;}
._12b{width:788.197957pt;}
._169{width:797.459189pt;}
._83{width:800.783637pt;}
._16d{width:802.100699pt;}
._176{width:808.585227pt;}
._15f{width:811.700699pt;}
._c5{width:812.638544pt;}
._c4{width:813.704875pt;}
._68{width:817.816581pt;}
._82{width:820.469019pt;}
._4a{width:822.156229pt;}
._ad{width:826.136752pt;}
._af{width:827.223040pt;}
._e5{width:829.710085pt;}
._e6{width:830.796373pt;}
._99{width:831.853296pt;}
._be{width:833.181829pt;}
._34{width:836.415685pt;}
._75{width:839.135685pt;}
._2c{width:840.682352pt;}
._57{width:843.135685pt;}
._3c{width:844.362352pt;}
._c0{width:849.646667pt;}
._64{width:854.422896pt;}
._114{width:856.371877pt;}
._162{width:857.659419pt;}
._7a{width:859.492283pt;}
._12d{width:860.884688pt;}
._ee{width:864.885808pt;}
._53{width:865.924320pt;}
._6b{width:867.150987pt;}
._41{width:870.726128pt;}
._117{width:871.677872pt;}
._14b{width:873.579733pt;}
._b1{width:874.954965pt;}
._11a{width:877.377488pt;}
._43{width:884.555317pt;}
._56{width:886.172587pt;}
._139{width:887.452587pt;}
._33{width:888.359253pt;}
._132{width:891.022144pt;}
._fb{width:895.492901pt;}
._52{width:906.491184pt;}
._6a{width:907.717851pt;}
._ef{width:909.490981pt;}
._13e{width:911.285163pt;}
._121{width:913.799253pt;}
._e8{width:914.741632pt;}
._120{width:917.265920pt;}
._b0{width:918.843600pt;}
._3b{width:921.372587pt;}
._125{width:922.492587pt;}
._3a{width:923.778443pt;}
._51{width:925.965952pt;}
._69{width:927.192619pt;}
._11b{width:931.985920pt;}
._94{width:934.861072pt;}
._138{width:937.630891pt;}
._134{width:938.705920pt;}
._9c{width:941.105920pt;}
._46{width:942.375755pt;}
._74{width:944.199253pt;}
._2b{width:945.687739pt;}
._6c{width:947.513883pt;}
._6e{width:949.425920pt;}
._c8{width:951.556181pt;}
._b9{width:953.443019pt;}
._55{width:954.890064pt;}
._39{width:956.345840pt;}
._f7{width:958.387035pt;}
._c1{width:961.320368pt;}
._49{width:962.814645pt;}
._63{width:964.041312pt;}
._50{width:965.557157pt;}
._5b{width:967.472795pt;}
._4b{width:968.904608pt;}
._54{width:970.572672pt;}
._42{width:972.321019pt;}
._4d{width:973.432517pt;}
._6d{width:975.005755pt;}
._44{width:977.063749pt;}
._143{width:978.725600pt;}
._133{width:983.497557pt;}
._e7{width:984.390267pt;}
._48{width:987.328896pt;}
._62{width:988.555563pt;}
._47{width:990.536917pt;}
._4c{width:993.851605pt;}
._65{width:995.078272pt;}
._16b{width:997.482352pt;}
._61{width:998.856917pt;}
._66{width:1001.219184pt;}
._60{width:1005.629088pt;}
._13d{width:1008.622315pt;}
._c2{width:1010.956779pt;}
._136{width:1011.875605pt;}
._16c{width:1020.900784pt;}
._5c{width:1023.467685pt;}
._142{width:1025.640448pt;}
._15e{width:1030.384421pt;}
._45{width:1034.047547pt;}
._4e{width:1037.029579pt;}
._5d{width:1040.317083pt;}
._118{width:1044.253616pt;}
._137{width:1052.825643pt;}
._156{width:1058.391381pt;}
._5f{width:1067.022315pt;}
._67{width:1068.069579pt;}
._155{width:1070.669888pt;}
._f9{width:1075.826203pt;}
._152{width:1078.853547pt;}
._df{width:1087.530853pt;}
._110{width:1088.704187pt;}
._5e{width:1093.727547pt;}
._14f{width:1097.505984pt;}
._10{width:1107.652517pt;}
._153{width:1116.691611pt;}
._da{width:1121.150011pt;}
._15d{width:1122.389019pt;}
._15a{width:1124.211003pt;}
._cb{width:1131.025216pt;}
._10f{width:1132.767365pt;}
._154{width:1134.058192pt;}
._fc{width:1135.985216pt;}
._d8{width:1146.588981pt;}
._14a{width:1175.050853pt;}
._158{width:1177.616699pt;}
._107{width:1178.748981pt;}
._c9{width:1184.667387pt;}
._fa{width:1186.838800pt;}
._f8{width:1207.585403pt;}
._100{width:1210.060843pt;}
._ca{width:1218.640981pt;}
._cd{width:1222.806528pt;}
._fe{width:1223.926528pt;}
._15c{width:1227.394405pt;}
._d7{width:1229.186016pt;}
._109{width:1244.570432pt;}
._10b{width:1245.988240pt;}
._ce{width:1247.955152pt;}
._ff{width:1249.128485pt;}
._146{width:1258.062859pt;}
._106{width:1259.959349pt;}
._159{width:1288.398725pt;}
._dd{width:1319.402352pt;}
._d1{width:1326.908768pt;}
._c7{width:1328.944475pt;}
._d2{width:1332.711621pt;}
._103{width:1334.418288pt;}
._de{width:1350.277755pt;}
._10e{width:1351.451088pt;}
._d3{width:1372.969227pt;}
._104{width:1374.142560pt;}
._10a{width:1378.267893pt;}
._d4{width:1380.764528pt;}
._148{width:1411.882352pt;}
._105{width:1415.271195pt;}
._101{width:1418.315488pt;}
._d0{width:1421.026256pt;}
._102{width:1422.199589pt;}
._cf{width:1423.382155pt;}
._149{width:1437.914117pt;}
._d5{width:1455.445440pt;}
._13{width:1504.059456pt;}
._dc{width:1547.287739pt;}
._10d{width:1548.461072pt;}
._cc{width:1572.375813pt;}
._fd{width:1573.549147pt;}
._17e{width:1581.026859pt;}
._d6{width:1586.520192pt;}
._4{width:1588.684117pt;}
._d9{width:1591.395744pt;}
._29{width:1610.146859pt;}
._31{width:1613.186859pt;}
._8d{width:1614.413525pt;}
._147{width:1634.865920pt;}
._db{width:1651.327883pt;}
._10c{width:1652.501216pt;}
._108{width:1654.595744pt;}
._11{width:1891.609248pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.506667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.181333pt;}
.fsa{font-size:58.448000pt;}
.fse{font-size:63.760000pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:76.512000pt;}
.fs7{font-size:79.701333pt;}
.fs2{font-size:90.666667pt;}
.fsc{font-size:132.197333pt;}
.fs6{font-size:159.402667pt;}
.fs9{font-size:170.026667pt;}
.fs5{font-size:653.546667pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:50.173333pt;}
.y46{bottom:62.727057pt;}
.y4{bottom:86.333337pt;}
.y45{bottom:98.860390pt;}
.y10d{bottom:108.120000pt;}
.y175{bottom:108.280000pt;}
.yac{bottom:110.800000pt;}
.y13b{bottom:112.800000pt;}
.yd4{bottom:114.813333pt;}
.y7e{bottom:116.573333pt;}
.y44{bottom:116.927057pt;}
.y1a1{bottom:117.733333pt;}
.ye7{bottom:121.506667pt;}
.y1e{bottom:123.790666pt;}
.y14b{bottom:124.666667pt;}
.y10c{bottom:126.186667pt;}
.y174{bottom:126.346667pt;}
.yab{bottom:128.866667pt;}
.y124{bottom:129.386667pt;}
.y13a{bottom:130.853333pt;}
.y4c{bottom:131.453353pt;}
.yd3{bottom:132.880000pt;}
.y7d{bottom:134.640000pt;}
.y43{bottom:134.980390pt;}
.y1a0{bottom:135.800000pt;}
.y25{bottom:137.386687pt;}
.ye6{bottom:139.573333pt;}
.y14a{bottom:142.733333pt;}
.y10b{bottom:144.253333pt;}
.y173{bottom:144.413333pt;}
.yaa{bottom:146.933333pt;}
.y139{bottom:148.920000pt;}
.yd2{bottom:150.946667pt;}
.y7c{bottom:152.706667pt;}
.y42{bottom:153.047057pt;}
.y19f{bottom:153.866667pt;}
.ye5{bottom:157.640000pt;}
.y149{bottom:160.800000pt;}
.y10a{bottom:162.320000pt;}
.y172{bottom:162.480000pt;}
.ya9{bottom:165.000000pt;}
.y138{bottom:166.986667pt;}
.yd1{bottom:169.013333pt;}
.y7b{bottom:170.773333pt;}
.y41{bottom:171.113723pt;}
.y19e{bottom:171.933333pt;}
.y15{bottom:175.052000pt;}
.ye4{bottom:175.706667pt;}
.y148{bottom:178.866667pt;}
.y109{bottom:180.386667pt;}
.y171{bottom:180.546667pt;}
.ya8{bottom:183.066667pt;}
.y1af{bottom:185.053333pt;}
.y1d{bottom:186.238666pt;}
.y14{bottom:186.252002pt;}
.yd0{bottom:187.080000pt;}
.y7a{bottom:188.840000pt;}
.y19d{bottom:190.000000pt;}
.ye3{bottom:193.773333pt;}
.y147{bottom:196.933333pt;}
.y1c{bottom:197.438668pt;}
.y13{bottom:197.452004pt;}
.y108{bottom:198.453333pt;}
.y170{bottom:198.600000pt;}
.ycf{bottom:205.146667pt;}
.y40{bottom:206.689857pt;}
.y79{bottom:206.893333pt;}
.y19c{bottom:208.066667pt;}
.y1b{bottom:208.638670pt;}
.y12{bottom:208.651996pt;}
.y137{bottom:211.573333pt;}
.ye2{bottom:211.840000pt;}
.y11c{bottom:213.586667pt;}
.y146{bottom:215.000000pt;}
.y107{bottom:216.520000pt;}
.y16f{bottom:216.666667pt;}
.yce{bottom:223.213333pt;}
.y78{bottom:224.960000pt;}
.y19b{bottom:226.133333pt;}
.ya7{bottom:227.640000pt;}
.y1ae{bottom:229.640000pt;}
.ye1{bottom:229.906667pt;}
.y1a{bottom:231.038664pt;}
.y11{bottom:231.052000pt;}
.y145{bottom:233.066667pt;}
.y106{bottom:234.573333pt;}
.y16e{bottom:234.733333pt;}
.ycd{bottom:241.280000pt;}
.y19{bottom:242.238666pt;}
.y10{bottom:242.252002pt;}
.y3f{bottom:242.839990pt;}
.y77{bottom:243.026667pt;}
.y19a{bottom:244.200000pt;}
.y136{bottom:245.946667pt;}
.ye0{bottom:247.973333pt;}
.y144{bottom:251.133333pt;}
.y105{bottom:252.640000pt;}
.y16d{bottom:252.800000pt;}
.y18{bottom:253.438668pt;}
.yf{bottom:253.451999pt;}
.ycc{bottom:259.346667pt;}
.y3e{bottom:260.906657pt;}
.y76{bottom:261.093333pt;}
.ya6{bottom:262.026667pt;}
.y199{bottom:262.266667pt;}
.y135{bottom:264.013333pt;}
.ydf{bottom:266.040000pt;}
.y143{bottom:269.200000pt;}
.y104{bottom:270.706667pt;}
.y16c{bottom:270.866667pt;}
.y24{bottom:275.151993pt;}
.y17{bottom:275.838667pt;}
.ye{bottom:275.852001pt;}
.ycb{bottom:277.400000pt;}
.y75{bottom:279.160000pt;}
.ya5{bottom:280.093333pt;}
.y198{bottom:280.333333pt;}
.y134{bottom:282.080000pt;}
.yde{bottom:284.106667pt;}
.y16{bottom:287.038667pt;}
.yd{bottom:287.052000pt;}
.y142{bottom:287.266667pt;}
.y103{bottom:288.773333pt;}
.y16b{bottom:288.933333pt;}
.y119{bottom:295.466667pt;}
.y74{bottom:297.226667pt;}
.ya4{bottom:298.160000pt;}
.y197{bottom:298.386667pt;}
.y133{bottom:300.146667pt;}
.ydd{bottom:302.173333pt;}
.y141{bottom:305.333333pt;}
.y102{bottom:306.840000pt;}
.y16a{bottom:307.000000pt;}
.yc{bottom:309.452000pt;}
.y118{bottom:313.533333pt;}
.y73{bottom:315.293333pt;}
.ya3{bottom:316.226667pt;}
.y132{bottom:318.213333pt;}
.ydc{bottom:320.226667pt;}
.yca{bottom:321.986667pt;}
.y140{bottom:323.400000pt;}
.y169{bottom:325.066667pt;}
.y23{bottom:326.159993pt;}
.y117{bottom:331.600000pt;}
.y72{bottom:333.360000pt;}
.ya2{bottom:334.280000pt;}
.y131{bottom:336.280000pt;}
.ydb{bottom:338.293333pt;}
.y13f{bottom:341.453333pt;}
.y196{bottom:342.973333pt;}
.y168{bottom:343.133333pt;}
.yb{bottom:343.809333pt;}
.y116{bottom:349.666667pt;}
.y71{bottom:351.426667pt;}
.ya1{bottom:352.346667pt;}
.y1ad{bottom:354.346667pt;}
.yc9{bottom:356.360000pt;}
.y167{bottom:361.200000pt;}
.ya{bottom:362.706666pt;}
.y115{bottom:367.733333pt;}
.y70{bottom:369.493333pt;}
.ya0{bottom:370.413333pt;}
.y1ac{bottom:372.413333pt;}
.yc8{bottom:374.426667pt;}
.y13e{bottom:374.560000pt;}
.y195{bottom:377.346667pt;}
.y166{bottom:379.266667pt;}
.y130{bottom:380.853333pt;}
.y101{bottom:385.800000pt;}
.y6f{bottom:387.560000pt;}
.y9f{bottom:388.480000pt;}
.yc7{bottom:392.493333pt;}
.y22{bottom:394.928008pt;}
.y194{bottom:395.413333pt;}
.y165{bottom:397.333333pt;}
.y100{bottom:403.866667pt;}
.y13d{bottom:405.613333pt;}
.y6e{bottom:405.626667pt;}
.y9e{bottom:406.546667pt;}
.yc6{bottom:410.560000pt;}
.y193{bottom:413.480000pt;}
.y12f{bottom:415.240000pt;}
.y164{bottom:415.400000pt;}
.y1ab{bottom:416.986667pt;}
.yff{bottom:421.933333pt;}
.y6d{bottom:423.680000pt;}
.y9d{bottom:424.613333pt;}
.yc5{bottom:428.626667pt;}
.y192{bottom:431.546667pt;}
.y12e{bottom:433.306667pt;}
.y163{bottom:433.453333pt;}
.yfe{bottom:440.000000pt;}
.y6c{bottom:441.746667pt;}
.y9c{bottom:442.680000pt;}
.y3d{bottom:444.677611pt;}
.yc4{bottom:446.693333pt;}
.y191{bottom:449.613333pt;}
.y12d{bottom:451.360000pt;}
.y162{bottom:451.520000pt;}
.yfd{bottom:458.066667pt;}
.y6b{bottom:459.813333pt;}
.y9b{bottom:460.746667pt;}
.yc3{bottom:464.760000pt;}
.y3c{bottom:465.653345pt;}
.y114{bottom:466.506667pt;}
.y190{bottom:467.680000pt;}
.y12c{bottom:469.426667pt;}
.y161{bottom:469.586667pt;}
.yfc{bottom:476.133333pt;}
.y6a{bottom:477.880000pt;}
.y9a{bottom:478.813333pt;}
.y9{bottom:478.990666pt;}
.yc2{bottom:482.826667pt;}
.y3b{bottom:483.720011pt;}
.y11e{bottom:484.573333pt;}
.y12b{bottom:487.493333pt;}
.y160{bottom:487.653333pt;}
.yfb{bottom:494.186667pt;}
.y8{bottom:494.990666pt;}
.y69{bottom:495.946667pt;}
.y99{bottom:496.880000pt;}
.yda{bottom:500.893333pt;}
.y12a{bottom:505.560000pt;}
.y15f{bottom:505.720000pt;}
.yfa{bottom:512.253333pt;}
.y68{bottom:514.013333pt;}
.y98{bottom:514.946667pt;}
.yd9{bottom:518.960000pt;}
.y1aa{bottom:523.626667pt;}
.y15e{bottom:523.786667pt;}
.yc1{bottom:527.400000pt;}
.yf9{bottom:530.320000pt;}
.y67{bottom:532.080000pt;}
.y97{bottom:533.013333pt;}
.y3a{bottom:535.240019pt;}
.yd8{bottom:537.013333pt;}
.y123{bottom:538.773333pt;}
.y1a9{bottom:541.693333pt;}
.y15d{bottom:541.853333pt;}
.y18f{bottom:546.640000pt;}
.yf8{bottom:548.386667pt;}
.y66{bottom:550.146667pt;}
.y96{bottom:551.066667pt;}
.y39{bottom:553.306686pt;}
.yd7{bottom:555.080000pt;}
.y121{bottom:556.840000pt;}
.y1a8{bottom:559.760000pt;}
.y15c{bottom:559.920000pt;}
.yc0{bottom:561.786667pt;}
.y18e{bottom:564.706667pt;}
.yf7{bottom:566.453333pt;}
.y65{bottom:568.213333pt;}
.y95{bottom:569.133333pt;}
.y38{bottom:571.373353pt;}
.yd6{bottom:573.146667pt;}
.y7{bottom:573.786667pt;}
.y15b{bottom:577.986667pt;}
.ybf{bottom:579.840000pt;}
.y18d{bottom:582.773333pt;}
.yf6{bottom:584.520000pt;}
.y64{bottom:586.280000pt;}
.y94{bottom:587.200000pt;}
.y37{bottom:589.440019pt;}
.y113{bottom:591.213333pt;}
.y6{bottom:592.685334pt;}
.y15a{bottom:596.053333pt;}
.ybe{bottom:597.906667pt;}
.y18c{bottom:600.826667pt;}
.yf5{bottom:602.586667pt;}
.y1a7{bottom:604.333333pt;}
.y63{bottom:604.346667pt;}
.y93{bottom:605.266667pt;}
.y36{bottom:607.506686pt;}
.y112{bottom:609.280000pt;}
.y120{bottom:611.040000pt;}
.y159{bottom:614.120000pt;}
.ybd{bottom:615.973333pt;}
.yd5{bottom:617.733333pt;}
.y18b{bottom:618.893333pt;}
.yf4{bottom:620.653333pt;}
.y62{bottom:622.413333pt;}
.y92{bottom:623.333333pt;}
.y35{bottom:625.573353pt;}
.y111{bottom:627.346667pt;}
.y13c{bottom:629.106667pt;}
.y158{bottom:632.186667pt;}
.ybc{bottom:634.040000pt;}
.y4b{bottom:636.800020pt;}
.y18a{bottom:636.960000pt;}
.y129{bottom:638.720000pt;}
.y61{bottom:640.466667pt;}
.y91{bottom:641.400000pt;}
.y34{bottom:643.640019pt;}
.y110{bottom:645.413333pt;}
.y5{bottom:645.598667pt;}
.ybb{bottom:652.106667pt;}
.y189{bottom:655.026667pt;}
.y128{bottom:656.786667pt;}
.y60{bottom:658.533333pt;}
.y90{bottom:659.466667pt;}
.y10f{bottom:663.480000pt;}
.yf3{bottom:665.226667pt;}
.y3{bottom:668.977329pt;}
.yba{bottom:670.173333pt;}
.y4a{bottom:672.919975pt;}
.y188{bottom:673.093333pt;}
.y127{bottom:674.853333pt;}
.y5f{bottom:676.600000pt;}
.y157{bottom:676.760000pt;}
.y8f{bottom:677.533333pt;}
.y11b{bottom:681.546667pt;}
.yb9{bottom:688.240000pt;}
.y187{bottom:691.160000pt;}
.y1a6{bottom:692.920000pt;}
.y5e{bottom:694.666667pt;}
.y8e{bottom:695.600000pt;}
.yf2{bottom:699.613333pt;}
.y33{bottom:706.286410pt;}
.yb8{bottom:706.306667pt;}
.y10e{bottom:708.053333pt;}
.y186{bottom:709.226667pt;}
.y1a5{bottom:710.973333pt;}
.y156{bottom:711.133333pt;}
.y5d{bottom:712.733333pt;}
.y8d{bottom:713.666667pt;}
.yf1{bottom:717.680000pt;}
.y126{bottom:719.426667pt;}
.yb7{bottom:724.373333pt;}
.y49{bottom:727.119975pt;}
.y1a4{bottom:729.040000pt;}
.y155{bottom:729.200000pt;}
.y5c{bottom:730.800000pt;}
.y8c{bottom:731.733333pt;}
.yf0{bottom:735.746667pt;}
.y32{bottom:742.406410pt;}
.yb6{bottom:742.440000pt;}
.y1a3{bottom:747.106667pt;}
.y154{bottom:747.266667pt;}
.y5b{bottom:748.866667pt;}
.yef{bottom:753.800000pt;}
.y31{bottom:760.459743pt;}
.yb5{bottom:760.506667pt;}
.y153{bottom:765.333333pt;}
.y5a{bottom:766.933333pt;}
.y48{bottom:766.973308pt;}
.yee{bottom:771.866667pt;}
.y21{bottom:771.880020pt;}
.y1b1{bottom:773.626667pt;}
.y8b{bottom:776.306667pt;}
.y30{bottom:778.526410pt;}
.yb4{bottom:778.573333pt;}
.y11f{bottom:780.320000pt;}
.y2{bottom:781.661334pt;}
.y152{bottom:783.400000pt;}
.y59{bottom:785.000000pt;}
.y185{bottom:788.186667pt;}
.yed{bottom:789.933333pt;}
.y1a2{bottom:791.693333pt;}
.y2f{bottom:796.593077pt;}
.yb3{bottom:796.626667pt;}
.y11d{bottom:798.386667pt;}
.y151{bottom:801.466667pt;}
.y58{bottom:803.066667pt;}
.y20{bottom:804.200020pt;}
.y8a{bottom:805.320000pt;}
.y184{bottom:806.253333pt;}
.yec{bottom:808.000000pt;}
.y2e{bottom:814.659743pt;}
.yb2{bottom:814.693333pt;}
.y150{bottom:819.533333pt;}
.y57{bottom:821.133333pt;}
.y183{bottom:824.320000pt;}
.yeb{bottom:826.066667pt;}
.y2d{bottom:832.726410pt;}
.yb1{bottom:832.760000pt;}
.y89{bottom:834.333333pt;}
.y11a{bottom:834.520000pt;}
.y14f{bottom:837.600000pt;}
.y56{bottom:839.200000pt;}
.y182{bottom:842.386667pt;}
.yea{bottom:844.133333pt;}
.y2c{bottom:850.793077pt;}
.yb0{bottom:850.826667pt;}
.y122{bottom:852.586667pt;}
.y14e{bottom:855.666667pt;}
.y55{bottom:857.266667pt;}
.y1f{bottom:858.160020pt;}
.y1{bottom:859.312000pt;}
.y181{bottom:860.440000pt;}
.ye9{bottom:862.200000pt;}
.y88{bottom:863.346667pt;}
.y2b{bottom:868.859743pt;}
.yaf{bottom:868.893333pt;}
.y14d{bottom:873.733333pt;}
.y54{bottom:875.320000pt;}
.y180{bottom:878.506667pt;}
.y17a{bottom:880.266667pt;}
.yae{bottom:886.960000pt;}
.y125{bottom:888.720000pt;}
.y53{bottom:893.386667pt;}
.y17f{bottom:896.573333pt;}
.y87{bottom:897.093333pt;}
.y179{bottom:898.333333pt;}
.yad{bottom:905.026667pt;}
.y2a{bottom:905.026677pt;}
.ye8{bottom:906.773333pt;}
.y52{bottom:911.453333pt;}
.y17e{bottom:914.640000pt;}
.y178{bottom:916.400000pt;}
.y14c{bottom:918.306667pt;}
.y84{bottom:923.093333pt;}
.y29{bottom:923.093343pt;}
.y51{bottom:929.520000pt;}
.y17d{bottom:932.706667pt;}
.y177{bottom:934.466667pt;}
.y83{bottom:941.160000pt;}
.y86{bottom:944.066667pt;}
.y50{bottom:947.586667pt;}
.y17c{bottom:950.773333pt;}
.y82{bottom:959.226667pt;}
.y1b0{bottom:960.973333pt;}
.y85{bottom:962.133333pt;}
.y17b{bottom:968.840000pt;}
.y28{bottom:977.289863pt;}
.y81{bottom:977.293333pt;}
.y176{bottom:979.040000pt;}
.y4f{bottom:980.200000pt;}
.y27{bottom:995.359997pt;}
.y80{bottom:995.360000pt;}
.y47{bottom:995.800049pt;}
.y26{bottom:1013.413330pt;}
.y4e{bottom:1013.413333pt;}
.y4d{bottom:1060.573333pt;}
.h7{height:28.560000pt;}
.hc{height:30.817333pt;}
.h6{height:40.800000pt;}
.h13{height:42.181467pt;}
.he{height:42.374800pt;}
.hf{height:42.414192pt;}
.h3{height:42.840000pt;}
.h11{height:42.996005pt;}
.h14{height:46.481040pt;}
.h2{height:48.960000pt;}
.h12{height:55.471200pt;}
.hb{height:57.783467pt;}
.h5{height:69.360000pt;}
.h10{height:95.843067pt;}
.h4{height:105.826671pt;}
.ha{height:115.566933pt;}
.hd{height:123.269333pt;}
.h9{height:482.970987pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:75.586667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:119.053335pt;}
.x8{left:120.052968pt;}
.x15{left:123.573333pt;}
.xc{left:127.026667pt;}
.xb{left:128.080000pt;}
.xd{left:129.693333pt;}
.x14{left:132.160000pt;}
.x13{left:133.093333pt;}
.x10{left:134.386667pt;}
.x11{left:139.520000pt;}
.xa{left:140.880000pt;}
.xf{left:147.546667pt;}
.xe{left:148.600000pt;}
.x12{left:150.280000pt;}
.x4{left:180.874667pt;}
.x9{left:370.973307pt;}
.x3{left:404.408000pt;}
.x5{left:491.333333pt;}
}




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