
    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_94c132c2814293e8c6828421.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_2262e5a16f93c599870e1784.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.915527;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_6f31704f13a841e2af635c52.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_bb3747ec9fa82899105d9496.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_976d5315fa7f08cf1a906702.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d6b51d8063664a60de741f09.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.ls5{letter-spacing:0.000112px;}
.ls4{letter-spacing:27.000000px;}
.ls1{letter-spacing:68.135652px;}
.ls2{letter-spacing:72.000000px;}
.ls6{letter-spacing:84.023438px;}
.ls3{letter-spacing:112.500000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws34{word-spacing:-72.000112px;}
.wsd{word-spacing:-72.000000px;}
.ws0{word-spacing:-54.140536px;}
.ws42{word-spacing:-53.999834px;}
.ws43{word-spacing:-49.500284px;}
.ws3b{word-spacing:-49.500112px;}
.ws28{word-spacing:-49.500054px;}
.ws4{word-spacing:-49.500000px;}
.ws1{word-spacing:-48.000150px;}
.ws38{word-spacing:-45.000284px;}
.ws3f{word-spacing:-45.000054px;}
.ws13{word-spacing:-45.000000px;}
.ws33{word-spacing:-44.999946px;}
.ws41{word-spacing:-44.999834px;}
.ws5{word-spacing:-40.605466px;}
.ws3d{word-spacing:-40.500166px;}
.ws36{word-spacing:-40.499834px;}
.ws45{word-spacing:-36.000284px;}
.ws44{word-spacing:-36.000000px;}
.ws2{word-spacing:-31.500000px;}
.ws48{word-spacing:-24.363279px;}
.ws22{word-spacing:-22.605750px;}
.ws2f{word-spacing:-22.605577px;}
.wsa{word-spacing:-22.605466px;}
.ws1b{word-spacing:-22.605300px;}
.ws31{word-spacing:-22.500000px;}
.ws1d{word-spacing:-18.105750px;}
.ws19{word-spacing:-18.105466px;}
.ws17{word-spacing:-18.105300px;}
.ws10{word-spacing:-13.605750px;}
.ws2b{word-spacing:-13.605520px;}
.wsc{word-spacing:-13.605466px;}
.ws11{word-spacing:-13.605300px;}
.ws1a{word-spacing:-9.105750px;}
.ws9{word-spacing:-9.105466px;}
.ws12{word-spacing:-9.105300px;}
.wse{word-spacing:-4.605750px;}
.ws18{word-spacing:-4.605466px;}
.ws1c{word-spacing:-4.605300px;}
.ws21{word-spacing:-0.105750px;}
.wsb{word-spacing:-0.105466px;}
.wsf{word-spacing:-0.105300px;}
.ws3{word-spacing:0.000000px;}
.ws20{word-spacing:4.394250px;}
.ws8{word-spacing:4.394534px;}
.ws2e{word-spacing:4.394700px;}
.ws15{word-spacing:4.500000px;}
.ws1f{word-spacing:8.894534px;}
.ws25{word-spacing:8.894700px;}
.ws7{word-spacing:12.023438px;}
.ws24{word-spacing:13.394534px;}
.ws1e{word-spacing:17.894250px;}
.ws23{word-spacing:22.394250px;}
.ws39{word-spacing:22.394534px;}
.ws27{word-spacing:31.394534px;}
.ws2a{word-spacing:35.894534px;}
.ws26{word-spacing:41.414234px;}
.ws4a{word-spacing:43.417973px;}
.ws3e{word-spacing:45.000000px;}
.ws46{word-spacing:49.394700px;}
.ws16{word-spacing:71.894534px;}
.ws6{word-spacing:72.000000px;}
.ws14{word-spacing:80.894534px;}
.ws47{word-spacing:130.394423px;}
.ws3c{word-spacing:139.500000px;}
.ws40{word-spacing:144.000000px;}
.ws3a{word-spacing:171.000000px;}
.ws49{word-spacing:202.394534px;}
.ws2d{word-spacing:215.894534px;}
.ws35{word-spacing:611.894534px;}
.ws30{word-spacing:895.394534px;}
.ws29{word-spacing:908.894534px;}
.ws37{word-spacing:998.894534px;}
.ws32{word-spacing:1282.394534px;}
.ws2c{word-spacing:1557.000000px;}
._107{margin-left:-2789.649835px;}
._11a{margin-left:-2785.326286px;}
._b4{margin-left:-2782.018584px;}
._c9{margin-left:-2766.974537px;}
._30{margin-left:-2765.285744px;}
._a2{margin-left:-2763.596880px;}
._113{margin-left:-2761.427628px;}
._62{margin-left:-2759.873170px;}
._121{margin-left:-2758.584550px;}
._9d{margin-left:-2756.636100px;}
._ec{margin-left:-2755.571184px;}
._3d{margin-left:-2754.349060px;}
._73{margin-left:-2752.660490px;}
._104{margin-left:-2751.324077px;}
._f6{margin-left:-2749.936262px;}
._48{margin-left:-2747.352672px;}
._b5{margin-left:-2745.977616px;}
._93{margin-left:-2744.509410px;}
._103{margin-left:-2743.373002px;}
._d1{margin-left:-2742.295190px;}
._ac{margin-left:-2741.280293px;}
._1f{margin-left:-2739.901730px;}
._39{margin-left:-2738.531146px;}
._106{margin-left:-2737.019758px;}
._5d{margin-left:-2735.800330px;}
._90{margin-left:-2733.510384px;}
._e6{margin-left:-2731.645534px;}
._b7{margin-left:-2728.511777px;}
._a4{margin-left:-2726.085161px;}
._6a{margin-left:-2724.051744px;}
._7d{margin-left:-2718.740448px;}
._98{margin-left:-2717.648662px;}
._ef{margin-left:-2715.082049px;}
._f8{margin-left:-2712.530174px;}
._c2{margin-left:-2710.543792px;}
._109{margin-left:-2709.185508px;}
._71{margin-left:-2700.632030px;}
._a5{margin-left:-2697.358788px;}
._c3{margin-left:-2695.956257px;}
._83{margin-left:-2694.937385px;}
._c6{margin-left:-2693.735582px;}
._f0{margin-left:-2691.843782px;}
._56{margin-left:-2686.992160px;}
._bf{margin-left:-2680.837355px;}
._be{margin-left:-2679.491700px;}
._ce{margin-left:-2677.500029px;}
._ca{margin-left:-2675.915690px;}
._ba{margin-left:-2673.941105px;}
._8e{margin-left:-2672.755985px;}
._f5{margin-left:-2670.550373px;}
._f9{margin-left:-2667.584808px;}
._9c{margin-left:-2666.108750px;}
._8f{margin-left:-2664.421114px;}
._d8{margin-left:-2661.992442px;}
._8d{margin-left:-2659.194878px;}
._50{margin-left:-2656.125734px;}
._d6{margin-left:-2650.498733px;}
._110{margin-left:-2649.089974px;}
._79{margin-left:-2647.477627px;}
._126{margin-left:-2644.630574px;}
._96{margin-left:-2643.189019px;}
._ed{margin-left:-2641.990172px;}
._fc{margin-left:-2640.404581px;}
._13{margin-left:-2639.390782px;}
._102{margin-left:-2637.565747px;}
._ee{margin-left:-2634.917659px;}
._c7{margin-left:-2631.687372px;}
._29{margin-left:-2630.671762px;}
._6f{margin-left:-2627.123206px;}
._eb{margin-left:-2625.580685px;}
._112{margin-left:-2623.547441px;}
._8b{margin-left:-2621.673086px;}
._66{margin-left:-2620.407636px;}
._bd{margin-left:-2617.608910px;}
._69{margin-left:-2613.979145px;}
._e8{margin-left:-2612.249071px;}
._b2{margin-left:-2609.299440px;}
._101{margin-left:-2608.101619px;}
._108{margin-left:-2605.744771px;}
._82{margin-left:-2602.257502px;}
._b9{margin-left:-2597.987858px;}
._b8{margin-left:-2596.956934px;}
._4{margin-left:-2595.761741px;}
._b6{margin-left:-2593.869746px;}
._4d{margin-left:-2592.388274px;}
._b1{margin-left:-2591.157967px;}
._bc{margin-left:-2589.154654px;}
._70{margin-left:-2586.517294px;}
._77{margin-left:-2583.568033px;}
._cf{margin-left:-2582.507880px;}
._d0{margin-left:-2580.536351px;}
._81{margin-left:-2578.429073px;}
._89{margin-left:-2577.231860px;}
._f7{margin-left:-2574.353290px;}
._11b{margin-left:-2570.342818px;}
._cd{margin-left:-2569.005947px;}
._5a{margin-left:-2566.268798px;}
._ad{margin-left:-2565.064915px;}
._100{margin-left:-2561.942599px;}
._10e{margin-left:-2556.563004px;}
._c4{margin-left:-2555.402371px;}
._cb{margin-left:-2553.574255px;}
._f4{margin-left:-2551.888454px;}
._fa{margin-left:-2549.847701px;}
._116{margin-left:-2548.795302px;}
._ff{margin-left:-2546.008891px;}
._10d{margin-left:-2544.532949px;}
._11c{margin-left:-2543.343768px;}
._84{margin-left:-2541.512531px;}
._a1{margin-left:-2538.421942px;}
._dc{margin-left:-2535.123758px;}
._42{margin-left:-2533.923864px;}
._6c{margin-left:-2530.757837px;}
._57{margin-left:-2529.175644px;}
._c0{margin-left:-2526.891062px;}
._fb{margin-left:-2519.999395px;}
._c5{margin-left:-2518.415046px;}
._91{margin-left:-2517.048072px;}
._111{margin-left:-2516.026817px;}
._4b{margin-left:-2513.391847px;}
._e9{margin-left:-2512.056737px;}
._7b{margin-left:-2506.501706px;}
._fd{margin-left:-2503.793520px;}
._114{margin-left:-2502.490874px;}
._f1{margin-left:-2501.269819px;}
._e0{margin-left:-2498.381100px;}
._99{margin-left:-2494.967389px;}
._c8{margin-left:-2482.677936px;}
._105{margin-left:-2480.218754px;}
._a0{margin-left:-2478.199248px;}
._36{margin-left:-2477.003962px;}
._a3{margin-left:-2475.696535px;}
._c1{margin-left:-2472.919020px;}
._e1{margin-left:-2470.359492px;}
._11d{margin-left:-2469.128962px;}
._87{margin-left:-2466.703224px;}
._8c{margin-left:-2465.614361px;}
._9b{margin-left:-2464.236792px;}
._92{margin-left:-2461.191401px;}
._10a{margin-left:-2459.816406px;}
._f2{margin-left:-2457.558918px;}
._10b{margin-left:-2451.868049px;}
._d2{margin-left:-2450.250137px;}
._aa{margin-left:-2444.233176px;}
._97{margin-left:-2437.770881px;}
._ab{margin-left:-2436.608876px;}
._ea{margin-left:-2432.742545px;}
._b3{margin-left:-2429.930405px;}
._db{margin-left:-2428.135272px;}
._bb{margin-left:-2417.484413px;}
._d3{margin-left:-2412.984096px;}
._e7{margin-left:-2407.389811px;}
._df{margin-left:-2406.234532px;}
._a6{margin-left:-2403.703166px;}
._135{margin-left:-2390.730487px;}
._af{margin-left:-2385.774925px;}
._7e{margin-left:-2382.505214px;}
._127{margin-left:-2379.245010px;}
._13b{margin-left:-2376.247738px;}
._de{margin-left:-2374.803061px;}
._85{margin-left:-2371.111063px;}
._12e{margin-left:-2363.554814px;}
._e5{margin-left:-2361.163788px;}
._118{margin-left:-2350.723975px;}
._12b{margin-left:-2343.241115px;}
._131{margin-left:-2336.681723px;}
._e2{margin-left:-2333.179714px;}
._e3{margin-left:-2329.251876px;}
._dd{margin-left:-2326.640674px;}
._12a{margin-left:-2325.036141px;}
._125{margin-left:-2298.764290px;}
._a9{margin-left:-2288.988324px;}
._11e{margin-left:-2269.195301px;}
._128{margin-left:-2250.260574px;}
._e4{margin-left:-2241.206892px;}
._120{margin-left:-2151.632786px;}
._124{margin-left:-2119.147279px;}
._122{margin-left:-2082.380029px;}
._119{margin-left:-2081.074205px;}
._55{margin-left:-72.000745px;}
._1{margin-left:-2.433577px;}
._2{margin-left:-1.404032px;}
._0{width:1.454867px;}
._5f{width:17.998639px;}
._1e{width:22.499834px;}
._59{width:27.001606px;}
._2b{width:31.500000px;}
._12{width:36.000101px;}
._37{width:40.500000px;}
._2f{width:45.000112px;}
._3{width:49.500000px;}
._28{width:54.000000px;}
._34{width:58.500000px;}
._e{width:63.000000px;}
._16{width:67.500000px;}
._2e{width:72.000000px;}
._f{width:76.500000px;}
._c{width:81.000000px;}
._da{width:84.023438px;}
._18{width:85.500000px;}
._5{width:90.000000px;}
._11{width:94.500000px;}
._8{width:99.000000px;}
._22{width:103.500000px;}
._35{width:108.000000px;}
._47{width:112.500000px;}
._11f{width:113.976590px;}
._1a{width:117.000000px;}
._33{width:121.500101px;}
._26{width:126.000000px;}
._a{width:130.500000px;}
._46{width:135.000000px;}
._80{width:139.500000px;}
._23{width:144.000000px;}
._2a{width:148.500000px;}
._38{width:153.000000px;}
._61{width:157.500000px;}
._15{width:162.000000px;}
._8a{width:166.499899px;}
._63{width:171.000000px;}
._51{width:175.500000px;}
._3c{width:180.000000px;}
._7{width:184.500000px;}
._64{width:189.000000px;}
._1b{width:193.500000px;}
._40{width:198.000000px;}
._6b{width:202.500000px;}
._9{width:207.000000px;}
._3b{width:211.500000px;}
._2d{width:216.000000px;}
._49{width:220.500000px;}
._21{width:225.000000px;}
._3f{width:229.500000px;}
._5e{width:234.000000px;}
._45{width:238.500000px;}
._58{width:243.000000px;}
._b{width:247.500000px;}
._24{width:252.000000px;}
._53{width:256.499899px;}
._3a{width:261.000000px;}
._20{width:265.500000px;}
._1c{width:270.000000px;}
._75{width:274.500000px;}
._3e{width:279.000000px;}
._65{width:283.500000px;}
._54{width:288.000000px;}
._6{width:292.500000px;}
._4c{width:297.000000px;}
._7a{width:301.500011px;}
._17{width:306.000000px;}
._41{width:310.500000px;}
._44{width:315.000000px;}
._1d{width:319.500000px;}
._25{width:323.999899px;}
._67{width:328.499888px;}
._14{width:333.000000px;}
._9e{width:337.040204px;}
._60{width:338.488301px;}
._2c{width:341.999899px;}
._4a{width:346.500000px;}
._52{width:351.000000px;}
._5b{width:355.500000px;}
._43{width:360.000000px;}
._10{width:364.500000px;}
._6e{width:369.000000px;}
._31{width:373.500000px;}
._88{width:377.999899px;}
._27{width:382.500000px;}
._78{width:387.000000px;}
._94{width:391.500000px;}
._a7{width:396.776736px;}
._6d{width:400.500000px;}
._5c{width:405.000000px;}
._74{width:409.500000px;}
._4e{width:413.999888px;}
._9a{width:418.500000px;}
._32{width:423.000000px;}
._b0{width:427.500000px;}
._d{width:432.000000px;}
._7c{width:436.500101px;}
._19{width:441.000000px;}
._72{width:445.500000px;}
._7f{width:450.000000px;}
._10c{width:454.745858px;}
._13c{width:458.119379px;}
._76{width:459.736258px;}
._d5{width:463.219488px;}
._9f{width:468.000000px;}
._68{width:472.500000px;}
._cc{width:477.352728px;}
._d9{width:481.500000px;}
._129{width:486.000000px;}
._d4{width:490.992422px;}
._a8{width:495.000101px;}
._123{width:508.500000px;}
._95{width:513.000202px;}
._130{width:518.048865px;}
._4f{width:522.000000px;}
._12f{width:526.500101px;}
._fe{width:530.856907px;}
._ae{width:534.584826px;}
._d7{width:540.926417px;}
._115{width:544.071233px;}
._f3{width:545.374588px;}
._136{width:562.500000px;}
._132{width:567.000000px;}
._86{width:571.500101px;}
._137{width:594.000112px;}
._117{width:648.558421px;}
._12d{width:661.500000px;}
._138{width:747.000000px;}
._12c{width:760.065697px;}
._133{width:796.500000px;}
._134{width:918.000000px;}
._10f{width:1341.000000px;}
._139{width:2111.049214px;}
._13a{width:2465.908225px;}
.fc4{color:rgb(17,85,204);}
.fc2{color:rgb(124,158,14);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:31.500000px;}
.fs7{font-size:36.000000px;}
.fsa{font-size:43.200000px;}
.fs2{font-size:48.000150px;}
.fs5{font-size:49.500000px;}
.fs4{font-size:54.000000px;}
.fs9{font-size:59.999850px;}
.fs6{font-size:66.000150px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:74.215901px;}
.fs1{font-size:95.999850px;}
.y0{bottom:0.000000px;}
.y15{bottom:41.625000px;}
.y1c{bottom:74.250000px;}
.y1b{bottom:106.875000px;}
.y13{bottom:108.000000px;}
.y162{bottom:138.375000px;}
.y1a{bottom:139.500000px;}
.y60{bottom:144.000000px;}
.ye9{bottom:145.125000px;}
.y18a{bottom:150.750000px;}
.y41{bottom:151.875000px;}
.y161{bottom:159.750000px;}
.y12b{bottom:160.875000px;}
.y9f{bottom:163.125000px;}
.y17f{bottom:166.500000px;}
.y40{bottom:167.625000px;}
.y73{bottom:168.750000px;}
.y19{bottom:172.125000px;}
.y154{bottom:173.250000px;}
.y19c{bottom:175.500000px;}
.y5f{bottom:176.625000px;}
.y12{bottom:177.750000px;}
.yca{bottom:178.875000px;}
.y126{bottom:180.000000px;}
.y160{bottom:181.125000px;}
.y3f{bottom:183.375000px;}
.y94{bottom:184.500000px;}
.yd5{bottom:185.625000px;}
.y119{bottom:186.750000px;}
.y17e{bottom:187.875000px;}
.ydc{bottom:189.000000px;}
.y10c{bottom:190.125000px;}
.y8e{bottom:192.375000px;}
.y12a{bottom:193.500000px;}
.yb3{bottom:194.625000px;}
.y9e{bottom:195.750000px;}
.y3e{bottom:199.125000px;}
.y72{bottom:201.375000px;}
.y15f{bottom:202.500000px;}
.y18{bottom:204.750000px;}
.y140{bottom:208.125000px;}
.y17d{bottom:209.250000px;}
.ya4{bottom:210.375000px;}
.yc9{bottom:211.500000px;}
.y199{bottom:213.750000px;}
.y3d{bottom:214.875000px;}
.y189{bottom:216.000000px;}
.y93{bottom:217.125000px;}
.yd4{bottom:218.250000px;}
.y118{bottom:219.375000px;}
.y11{bottom:220.500000px;}
.y5e{bottom:222.750000px;}
.y141{bottom:223.875000px;}
.y8d{bottom:225.000000px;}
.y125{bottom:226.125000px;}
.yb2{bottom:227.250000px;}
.y9d{bottom:228.375000px;}
.y3c{bottom:230.625000px;}
.y71{bottom:234.000000px;}
.yeb{bottom:235.125000px;}
.y103{bottom:236.250000px;}
.y17{bottom:237.375000px;}
.y13f{bottom:240.750000px;}
.ybe{bottom:241.875000px;}
.ye8{bottom:243.000000px;}
.yc8{bottom:244.125000px;}
.y15e{bottom:245.250000px;}
.y3b{bottom:246.375000px;}
.yc5{bottom:247.500000px;}
.y15c{bottom:248.625000px;}
.y109{bottom:249.750000px;}
.yd3{bottom:250.875000px;}
.y117{bottom:252.000000px;}
.y5d{bottom:255.375000px;}
.ya3{bottom:256.500000px;}
.y81{bottom:257.625000px;}
.y124{bottom:258.750000px;}
.yb1{bottom:259.875000px;}
.y3a{bottom:262.125000px;}
.y10{bottom:263.250000px;}
.y70{bottom:266.625000px;}
.y102{bottom:268.875000px;}
.y129{bottom:272.250000px;}
.y17c{bottom:273.375000px;}
.y9c{bottom:274.500000px;}
.yc7{bottom:276.750000px;}
.y39{bottom:277.875000px;}
.y198{bottom:279.000000px;}
.yc4{bottom:280.125000px;}
.y188{bottom:281.250000px;}
.y108{bottom:282.375000px;}
.yd2{bottom:283.500000px;}
.y116{bottom:284.625000px;}
.y13e{bottom:286.875000px;}
.y10b{bottom:288.000000px;}
.ye7{bottom:289.125000px;}
.y80{bottom:290.250000px;}
.yb0{bottom:292.500000px;}
.y38{bottom:293.625000px;}
.y17b{bottom:294.750000px;}
.y6c{bottom:295.875000px;}
.y6f{bottom:299.250000px;}
.yf{bottom:301.500000px;}
.y14d{bottom:303.750000px;}
.y123{bottom:304.875000px;}
.y9b{bottom:307.125000px;}
.y4e{bottom:308.250000px;}
.y37{bottom:309.375000px;}
.y197{bottom:311.625000px;}
.yc3{bottom:312.750000px;}
.y187{bottom:313.875000px;}
.y151{bottom:315.000000px;}
.yd1{bottom:316.125000px;}
.y115{bottom:317.250000px;}
.y128{bottom:318.375000px;}
.y13d{bottom:319.500000px;}
.y10a{bottom:320.625000px;}
.ye6{bottom:321.750000px;}
.y7f{bottom:322.875000px;}
.y36{bottom:325.125000px;}
.ydf{bottom:326.250000px;}
.y92{bottom:328.500000px;}
.yea{bottom:333.000000px;}
.ye{bottom:334.125000px;}
.y8c{bottom:336.375000px;}
.y122{bottom:337.500000px;}
.yaf{bottom:338.625000px;}
.y35{bottom:340.875000px;}
.y6b{bottom:342.000000px;}
.y196{bottom:344.250000px;}
.y6e{bottom:345.375000px;}
.y186{bottom:346.500000px;}
.y127{bottom:347.625000px;}
.yd0{bottom:348.750000px;}
.ya6{bottom:349.875000px;}
.yb9{bottom:351.000000px;}
.y9a{bottom:353.250000px;}
.y4d{bottom:354.375000px;}
.y7e{bottom:355.500000px;}
.y34{bottom:356.625000px;}
.y17a{bottom:358.875000px;}
.y91{bottom:361.125000px;}
.y114{bottom:363.375000px;}
.y13c{bottom:365.625000px;}
.yd{bottom:366.750000px;}
.y121{bottom:370.125000px;}
.yae{bottom:371.250000px;}
.y33{bottom:372.375000px;}
.y145{bottom:373.500000px;}
.y6a{bottom:374.625000px;}
.y195{bottom:376.875000px;}
.yc2{bottom:378.000000px;}
.y185{bottom:379.125000px;}
.y179{bottom:380.250000px;}
.ycf{bottom:381.375000px;}
.y8b{bottom:382.500000px;}
.yb8{bottom:383.625000px;}
.ye5{bottom:387.000000px;}
.y32{bottom:388.125000px;}
.y6d{bottom:391.500000px;}
.y150{bottom:393.750000px;}
.y113{bottom:396.000000px;}
.y13b{bottom:398.250000px;}
.y99{bottom:399.375000px;}
.y153{bottom:401.625000px;}
.y120{bottom:402.750000px;}
.yc{bottom:403.875000px;}
.y144{bottom:406.125000px;}
.y69{bottom:407.250000px;}
.y194{bottom:409.500000px;}
.yc1{bottom:410.625000px;}
.y184{bottom:411.750000px;}
.y5c{bottom:412.875000px;}
.y8a{bottom:415.125000px;}
.yb7{bottom:416.250000px;}
.yad{bottom:417.375000px;}
.y31{bottom:419.625000px;}
.yc6{bottom:420.750000px;}
.y178{bottom:423.000000px;}
.ydb{bottom:426.375000px;}
.yce{bottom:427.500000px;}
.y112{bottom:428.625000px;}
.y13a{bottom:430.875000px;}
.y101{bottom:432.000000px;}
.ye4{bottom:433.125000px;}
.y7d{bottom:434.250000px;}
.y30{bottom:435.375000px;}
.yd8{bottom:437.625000px;}
.yc0{bottom:443.250000px;}
.y177{bottom:444.375000px;}
.y5b{bottom:445.500000px;}
.yb{bottom:446.625000px;}
.y89{bottom:447.750000px;}
.yb6{bottom:448.875000px;}
.yac{bottom:450.000000px;}
.y2f{bottom:451.125000px;}
.y143{bottom:452.250000px;}
.y68{bottom:453.375000px;}
.y193{bottom:455.625000px;}
.y14f{bottom:459.000000px;}
.y111{bottom:461.250000px;}
.y139{bottom:463.500000px;}
.ye3{bottom:465.750000px;}
.y2e{bottom:466.875000px;}
.yff{bottom:470.250000px;}
.yda{bottom:472.500000px;}
.ycd{bottom:473.625000px;}
.y183{bottom:477.000000px;}
.y5a{bottom:478.125000px;}
.y88{bottom:480.375000px;}
.y11f{bottom:481.500000px;}
.y2d{bottom:482.625000px;}
.y142{bottom:484.875000px;}
.y67{bottom:486.000000px;}
.y176{bottom:487.125000px;}
.y192{bottom:488.250000px;}
.ya{bottom:489.375000px;}
.ya2{bottom:493.875000px;}
.yb5{bottom:495.000000px;}
.y138{bottom:496.125000px;}
.y158{bottom:497.250000px;}
.y2c{bottom:498.375000px;}
.y7c{bottom:499.500000px;}
.yfe{bottom:502.875000px;}
.y14e{bottom:505.125000px;}
.y110{bottom:507.375000px;}
.y175{bottom:508.500000px;}
.y182{bottom:509.625000px;}
.y15a{bottom:510.750000px;}
.y87{bottom:513.000000px;}
.y2b{bottom:514.125000px;}
.yab{bottom:515.250000px;}
.y15b{bottom:517.500000px;}
.yd9{bottom:518.625000px;}
.yf2{bottom:519.750000px;}
.y191{bottom:520.875000px;}
.y59{bottom:524.250000px;}
.ya1{bottom:526.500000px;}
.ybd{bottom:528.750000px;}
.y2a{bottom:529.875000px;}
.ye2{bottom:531.000000px;}
.y9{bottom:532.125000px;}
.ybf{bottom:535.500000px;}
.y10f{bottom:540.000000px;}
.yb4{bottom:541.125000px;}
.y157{bottom:543.375000px;}
.y29{bottom:545.625000px;}
.y11e{bottom:546.750000px;}
.yfd{bottom:549.000000px;}
.yde{bottom:551.250000px;}
.yf1{bottom:552.375000px;}
.y190{bottom:553.500000px;}
.y181{bottom:555.750000px;}
.y159{bottom:556.875000px;}
.y86{bottom:559.125000px;}
.y28{bottom:561.375000px;}
.y66{bottom:564.750000px;}
.ye1{bottom:565.875000px;}
.y14b{bottom:569.250000px;}
.y58{bottom:570.375000px;}
.y174{bottom:572.625000px;}
.y8{bottom:574.875000px;}
.y27{bottom:577.125000px;}
.ya5{bottom:578.250000px;}
.y11d{bottom:579.375000px;}
.ydd{bottom:583.875000px;}
.yf0{bottom:585.000000px;}
.y10e{bottom:586.125000px;}
.y85{bottom:591.750000px;}
.y26{bottom:592.875000px;}
.ybc{bottom:594.000000px;}
.yfc{bottom:595.125000px;}
.y65{bottom:597.375000px;}
.ye0{bottom:601.875000px;}
.y107{bottom:603.000000px;}
.yaa{bottom:607.500000px;}
.y25{bottom:608.625000px;}
.y7b{bottom:610.875000px;}
.y11c{bottom:612.000000px;}
.y173{bottom:615.375000px;}
.y57{bottom:616.500000px;}
.y7{bottom:617.625000px;}
.y18f{bottom:618.750000px;}
.y19b{bottom:621.000000px;}
.y24{bottom:624.375000px;}
.ybb{bottom:626.625000px;}
.yfb{bottom:627.750000px;}
.y4c{bottom:630.000000px;}
.yef{bottom:631.125000px;}
.y10d{bottom:632.250000px;}
.y106{bottom:635.625000px;}
.y172{bottom:636.750000px;}
.ya0{bottom:637.875000px;}
.y23{bottom:640.125000px;}
.y7a{bottom:643.500000px;}
.y130{bottom:644.625000px;}
.y14a{bottom:648.000000px;}
.y56{bottom:649.125000px;}
.y18e{bottom:651.375000px;}
.y137{bottom:653.625000px;}
.yd7{bottom:654.750000px;}
.y22{bottom:655.875000px;}
.y84{bottom:657.000000px;}
.y11b{bottom:658.125000px;}
.yba{bottom:659.250000px;}
.y6{bottom:660.375000px;}
.y4b{bottom:662.625000px;}
.y105{bottom:668.250000px;}
.y98{bottom:670.500000px;}
.y21{bottom:671.625000px;}
.ya9{bottom:672.750000px;}
.y64{bottom:676.125000px;}
.yee{bottom:677.250000px;}
.y171{bottom:679.500000px;}
.y55{bottom:681.750000px;}
.y18d{bottom:684.000000px;}
.y136{bottom:686.250000px;}
.y20{bottom:687.375000px;}
.y79{bottom:689.625000px;}
.y149{bottom:694.125000px;}
.y90{bottom:695.250000px;}
.yd6{bottom:700.875000px;}
.y5{bottom:703.125000px;}
.y11a{bottom:704.250000px;}
.ya8{bottom:705.375000px;}
.yfa{bottom:706.500000px;}
.y4a{bottom:708.750000px;}
.y18c{bottom:716.625000px;}
.y1f{bottom:718.875000px;}
.y100{bottom:721.125000px;}
.y83{bottom:722.250000px;}
.y12f{bottom:723.375000px;}
.y148{bottom:726.750000px;}
.y54{bottom:727.875000px;}
.y135{bottom:732.375000px;}
.y1e{bottom:734.625000px;}
.y78{bottom:735.750000px;}
.yf9{bottom:739.125000px;}
.y180{bottom:740.250000px;}
.y49{bottom:741.375000px;}
.y170{bottom:743.625000px;}
.y4{bottom:745.875000px;}
.y104{bottom:747.000000px;}
.y18b{bottom:749.250000px;}
.y1d{bottom:750.375000px;}
.ya7{bottom:751.500000px;}
.y82{bottom:754.875000px;}
.y16{bottom:759.375000px;}
.y53{bottom:760.500000px;}
.y134{bottom:765.000000px;}
.y77{bottom:768.375000px;}
.y12e{bottom:769.500000px;}
.yf8{bottom:771.750000px;}
.y147{bottom:772.875000px;}
.y48{bottom:774.000000px;}
.yed{bottom:777.375000px;}
.y146{bottom:778.500000px;}
.ycc{bottom:781.875000px;}
.y14c{bottom:784.125000px;}
.y16f{bottom:786.375000px;}
.y8f{bottom:787.500000px;}
.y52{bottom:793.125000px;}
.y3{bottom:797.625000px;}
.y76{bottom:801.000000px;}
.y12d{bottom:802.125000px;}
.yf7{bottom:804.375000px;}
.y47{bottom:806.625000px;}
.y16e{bottom:807.750000px;}
.y19d{bottom:808.875000px;}
.y156{bottom:813.375000px;}
.ycb{bottom:814.500000px;}
.yec{bottom:820.125000px;}
.y152{bottom:821.250000px;}
.y16d{bottom:829.125000px;}
.y133{bottom:830.250000px;}
.y75{bottom:833.625000px;}
.yf6{bottom:837.000000px;}
.y46{bottom:839.250000px;}
.y2{bottom:843.750000px;}
.y97{bottom:847.125000px;}
.y12c{bottom:848.250000px;}
.y16c{bottom:850.500000px;}
.y63{bottom:852.750000px;}
.y155{bottom:859.500000px;}
.y15d{bottom:860.625000px;}
.y74{bottom:866.250000px;}
.yf5{bottom:869.625000px;}
.y16b{bottom:871.875000px;}
.y132{bottom:876.375000px;}
.y96{bottom:879.750000px;}
.y19a{bottom:883.125000px;}
.y45{bottom:885.375000px;}
.y169{bottom:893.250000px;}
.y62{bottom:898.875000px;}
.y16a{bottom:900.000000px;}
.y131{bottom:909.000000px;}
.y95{bottom:912.375000px;}
.y168{bottom:914.625000px;}
.yf4{bottom:915.750000px;}
.y44{bottom:918.000000px;}
.y51{bottom:931.500000px;}
.y167{bottom:936.000000px;}
.y61{bottom:945.000000px;}
.y14{bottom:955.125000px;}
.y166{bottom:957.375000px;}
.yf3{bottom:961.875000px;}
.y43{bottom:964.125000px;}
.y50{bottom:977.625000px;}
.y165{bottom:978.750000px;}
.y42{bottom:996.750000px;}
.y164{bottom:1000.125000px;}
.y4f{bottom:1010.250000px;}
.y163{bottom:1021.500000px;}
.y1{bottom:1042.875000px;}
.h7{height:24.644531px;}
.hc{height:37.905469px;}
.h3{height:43.336073px;}
.hb{height:47.381836px;}
.h5{height:49.289063px;}
.h9{height:49.465188px;}
.h8{height:49.992188px;}
.ha{height:54.169786px;}
.h4{height:59.625000px;}
.h1{height:63.175781px;}
.h2{height:84.234243px;}
.h6{height:255.375000px;}
.h0{height:1188.000000px;}
.w1{width:155.250000px;}
.w2{width:573.750000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:11.250000px;}
.xe{left:94.500000px;}
.x3{left:105.750000px;}
.x30{left:111.744113px;}
.x42{left:114.750000px;}
.x43{left:120.146513px;}
.x11{left:126.000000px;}
.x5{left:132.750000px;}
.x8{left:157.500000px;}
.x22{left:159.750000px;}
.x12{left:173.250000px;}
.x18{left:186.750000px;}
.x31{left:203.871150px;}
.x39{left:213.750000px;}
.x13{left:220.500000px;}
.x10{left:249.750000px;}
.x4{left:256.500000px;}
.xb{left:297.000000px;}
.x27{left:311.625000px;}
.xa{left:313.875000px;}
.x7{left:330.750000px;}
.x21{left:333.000000px;}
.x2f{left:334.125000px;}
.x9{left:353.250000px;}
.x24{left:393.750000px;}
.x2c{left:426.375000px;}
.x1a{left:433.125000px;}
.xd{left:436.500000px;}
.x34{left:441.000000px;}
.xc{left:444.375000px;}
.x38{left:454.500000px;}
.x1{left:457.875000px;}
.x44{left:464.660213px;}
.x45{left:470.056613px;}
.x6{left:471.375000px;}
.x1c{left:477.000000px;}
.x19{left:481.500000px;}
.x20{left:523.125000px;}
.x2{left:541.125000px;}
.x36{left:559.125000px;}
.x1e{left:569.250000px;}
.x41{left:570.375000px;}
.x40{left:572.625000px;}
.x2d{left:573.750000px;}
.x3b{left:596.250000px;}
.x28{left:622.125000px;}
.x16{left:628.875000px;}
.x17{left:631.089900px;}
.x2b{left:646.875000px;}
.x32{left:652.500000px;}
.x1d{left:680.625000px;}
.x1b{left:691.875000px;}
.x2e{left:707.625000px;}
.x33{left:717.750000px;}
.x26{left:733.500000px;}
.x29{left:738.000000px;}
.x15{left:741.375000px;}
.x37{left:754.875000px;}
.x3e{left:760.500000px;}
.x3f{left:767.250000px;}
.x23{left:781.875000px;}
.x1f{left:785.250000px;}
.x3c{left:786.375000px;}
.x2a{left:806.625000px;}
.x35{left:814.500000px;}
.x14{left:828.000000px;}
.x3a{left:830.250000px;}
.x25{left:832.500000px;}
.x3d{left:857.250000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000099pt;}
.ls4{letter-spacing:24.000000pt;}
.ls1{letter-spacing:60.565024pt;}
.ls2{letter-spacing:64.000000pt;}
.ls6{letter-spacing:74.687501pt;}
.ls3{letter-spacing:100.000000pt;}
.ws34{word-spacing:-64.000099pt;}
.wsd{word-spacing:-64.000000pt;}
.ws0{word-spacing:-48.124921pt;}
.ws42{word-spacing:-47.999853pt;}
.ws43{word-spacing:-44.000253pt;}
.ws3b{word-spacing:-44.000099pt;}
.ws28{word-spacing:-44.000048pt;}
.ws4{word-spacing:-44.000000pt;}
.ws1{word-spacing:-42.666800pt;}
.ws38{word-spacing:-40.000253pt;}
.ws3f{word-spacing:-40.000048pt;}
.ws13{word-spacing:-40.000000pt;}
.ws33{word-spacing:-39.999952pt;}
.ws41{word-spacing:-39.999853pt;}
.ws5{word-spacing:-36.093747pt;}
.ws3d{word-spacing:-36.000147pt;}
.ws36{word-spacing:-35.999853pt;}
.ws45{word-spacing:-32.000253pt;}
.ws44{word-spacing:-32.000000pt;}
.ws2{word-spacing:-28.000000pt;}
.ws48{word-spacing:-21.656248pt;}
.ws22{word-spacing:-20.094000pt;}
.ws2f{word-spacing:-20.093846pt;}
.wsa{word-spacing:-20.093747pt;}
.ws1b{word-spacing:-20.093600pt;}
.ws31{word-spacing:-20.000000pt;}
.ws1d{word-spacing:-16.094000pt;}
.ws19{word-spacing:-16.093747pt;}
.ws17{word-spacing:-16.093600pt;}
.ws10{word-spacing:-12.094000pt;}
.ws2b{word-spacing:-12.093795pt;}
.wsc{word-spacing:-12.093747pt;}
.ws11{word-spacing:-12.093600pt;}
.ws1a{word-spacing:-8.094000pt;}
.ws9{word-spacing:-8.093747pt;}
.ws12{word-spacing:-8.093600pt;}
.wse{word-spacing:-4.094000pt;}
.ws18{word-spacing:-4.093747pt;}
.ws1c{word-spacing:-4.093600pt;}
.ws21{word-spacing:-0.094000pt;}
.wsb{word-spacing:-0.093747pt;}
.wsf{word-spacing:-0.093600pt;}
.ws3{word-spacing:0.000000pt;}
.ws20{word-spacing:3.906000pt;}
.ws8{word-spacing:3.906253pt;}
.ws2e{word-spacing:3.906400pt;}
.ws15{word-spacing:4.000000pt;}
.ws1f{word-spacing:7.906253pt;}
.ws25{word-spacing:7.906400pt;}
.ws7{word-spacing:10.687501pt;}
.ws24{word-spacing:11.906253pt;}
.ws1e{word-spacing:15.906000pt;}
.ws23{word-spacing:19.906000pt;}
.ws39{word-spacing:19.906253pt;}
.ws27{word-spacing:27.906253pt;}
.ws2a{word-spacing:31.906253pt;}
.ws26{word-spacing:36.812653pt;}
.ws4a{word-spacing:38.593754pt;}
.ws3e{word-spacing:40.000000pt;}
.ws46{word-spacing:43.906400pt;}
.ws16{word-spacing:63.906253pt;}
.ws6{word-spacing:64.000000pt;}
.ws14{word-spacing:71.906253pt;}
.ws47{word-spacing:115.906154pt;}
.ws3c{word-spacing:124.000000pt;}
.ws40{word-spacing:128.000000pt;}
.ws3a{word-spacing:152.000000pt;}
.ws49{word-spacing:179.906253pt;}
.ws2d{word-spacing:191.906253pt;}
.ws35{word-spacing:543.906253pt;}
.ws30{word-spacing:795.906253pt;}
.ws29{word-spacing:807.906253pt;}
.ws37{word-spacing:887.906253pt;}
.ws32{word-spacing:1139.906253pt;}
.ws2c{word-spacing:1384.000000pt;}
._107{margin-left:-2479.688742pt;}
._11a{margin-left:-2475.845587pt;}
._b4{margin-left:-2472.905408pt;}
._c9{margin-left:-2459.532922pt;}
._30{margin-left:-2458.031773pt;}
._a2{margin-left:-2456.530560pt;}
._113{margin-left:-2454.602336pt;}
._62{margin-left:-2453.220595pt;}
._121{margin-left:-2452.075155pt;}
._9d{margin-left:-2450.343200pt;}
._ec{margin-left:-2449.396608pt;}
._3d{margin-left:-2448.310275pt;}
._73{margin-left:-2446.809325pt;}
._104{margin-left:-2445.621402pt;}
._f6{margin-left:-2444.387789pt;}
._48{margin-left:-2442.091264pt;}
._b5{margin-left:-2440.868992pt;}
._93{margin-left:-2439.563920pt;}
._103{margin-left:-2438.553779pt;}
._d1{margin-left:-2437.595725pt;}
._ac{margin-left:-2436.693594pt;}
._1f{margin-left:-2435.468205pt;}
._39{margin-left:-2434.249907pt;}
._106{margin-left:-2432.906451pt;}
._5d{margin-left:-2431.822515pt;}
._90{margin-left:-2429.787008pt;}
._e6{margin-left:-2428.129363pt;}
._b7{margin-left:-2425.343802pt;}
._a4{margin-left:-2423.186810pt;}
._6a{margin-left:-2421.379328pt;}
._7d{margin-left:-2416.658176pt;}
._98{margin-left:-2415.687699pt;}
._ef{margin-left:-2413.406266pt;}
._f8{margin-left:-2411.137933pt;}
._c2{margin-left:-2409.372259pt;}
._109{margin-left:-2408.164896pt;}
._71{margin-left:-2400.561805pt;}
._a5{margin-left:-2397.652256pt;}
._c3{margin-left:-2396.405562pt;}
._83{margin-left:-2395.499898pt;}
._c6{margin-left:-2394.431629pt;}
._f0{margin-left:-2392.750029pt;}
._56{margin-left:-2388.437475pt;}
._bf{margin-left:-2382.966538pt;}
._be{margin-left:-2381.770400pt;}
._ce{margin-left:-2380.000026pt;}
._ca{margin-left:-2378.591725pt;}
._ba{margin-left:-2376.836538pt;}
._8e{margin-left:-2375.783098pt;}
._f5{margin-left:-2373.822554pt;}
._f9{margin-left:-2371.186496pt;}
._9c{margin-left:-2369.874445pt;}
._8f{margin-left:-2368.374323pt;}
._d8{margin-left:-2366.215504pt;}
._8d{margin-left:-2363.728781pt;}
._50{margin-left:-2361.000653pt;}
._d6{margin-left:-2355.998874pt;}
._110{margin-left:-2354.746643pt;}
._79{margin-left:-2353.313446pt;}
._126{margin-left:-2350.782733pt;}
._96{margin-left:-2349.501350pt;}
._ed{margin-left:-2348.435709pt;}
._fc{margin-left:-2347.026294pt;}
._13{margin-left:-2346.125139pt;}
._102{margin-left:-2344.502886pt;}
._ee{margin-left:-2342.149030pt;}
._c7{margin-left:-2339.277664pt;}
._29{margin-left:-2338.374899pt;}
._6f{margin-left:-2335.220627pt;}
._eb{margin-left:-2333.849498pt;}
._112{margin-left:-2332.042170pt;}
._8b{margin-left:-2330.376077pt;}
._66{margin-left:-2329.251232pt;}
._bd{margin-left:-2326.763475pt;}
._69{margin-left:-2323.537018pt;}
._e8{margin-left:-2321.999174pt;}
._b2{margin-left:-2319.377280pt;}
._101{margin-left:-2318.312550pt;}
._108{margin-left:-2316.217574pt;}
._82{margin-left:-2313.117779pt;}
._b9{margin-left:-2309.322541pt;}
._b8{margin-left:-2308.406163pt;}
._4{margin-left:-2307.343770pt;}
._b6{margin-left:-2305.661997pt;}
._4d{margin-left:-2304.345133pt;}
._b1{margin-left:-2303.251526pt;}
._bc{margin-left:-2301.470803pt;}
._70{margin-left:-2299.126483pt;}
._77{margin-left:-2296.504918pt;}
._cf{margin-left:-2295.562560pt;}
._d0{margin-left:-2293.810090pt;}
._81{margin-left:-2291.936954pt;}
._89{margin-left:-2290.872765pt;}
._f7{margin-left:-2288.314035pt;}
._11b{margin-left:-2284.749171pt;}
._cd{margin-left:-2283.560842pt;}
._5a{margin-left:-2281.127821pt;}
._ad{margin-left:-2280.057702pt;}
._100{margin-left:-2277.282310pt;}
._10e{margin-left:-2272.500448pt;}
._c4{margin-left:-2271.468774pt;}
._cb{margin-left:-2269.843782pt;}
._f4{margin-left:-2268.345293pt;}
._fa{margin-left:-2266.531290pt;}
._116{margin-left:-2265.595824pt;}
._ff{margin-left:-2263.119014pt;}
._10d{margin-left:-2261.807066pt;}
._11c{margin-left:-2260.750016pt;}
._84{margin-left:-2259.122250pt;}
._a1{margin-left:-2256.375059pt;}
._dc{margin-left:-2253.443341pt;}
._42{margin-left:-2252.376768pt;}
._6c{margin-left:-2249.562522pt;}
._57{margin-left:-2248.156128pt;}
._c0{margin-left:-2246.125389pt;}
._fb{margin-left:-2239.999462pt;}
._c5{margin-left:-2238.591152pt;}
._91{margin-left:-2237.376064pt;}
._111{margin-left:-2236.468282pt;}
._4b{margin-left:-2234.126086pt;}
._e9{margin-left:-2232.939322pt;}
._7b{margin-left:-2228.001517pt;}
._fd{margin-left:-2225.594240pt;}
._114{margin-left:-2224.436333pt;}
._f1{margin-left:-2223.350950pt;}
._e0{margin-left:-2220.783200pt;}
._99{margin-left:-2217.748790pt;}
._c8{margin-left:-2206.824832pt;}
._105{margin-left:-2204.638893pt;}
._a0{margin-left:-2202.843776pt;}
._36{margin-left:-2201.781299pt;}
._a3{margin-left:-2200.619142pt;}
._c1{margin-left:-2198.150240pt;}
._e1{margin-left:-2195.875104pt;}
._11d{margin-left:-2194.781299pt;}
._87{margin-left:-2192.625088pt;}
._8c{margin-left:-2191.657210pt;}
._9b{margin-left:-2190.432704pt;}
._92{margin-left:-2187.725690pt;}
._10a{margin-left:-2186.503472pt;}
._f2{margin-left:-2184.496816pt;}
._10b{margin-left:-2179.438266pt;}
._d2{margin-left:-2178.000122pt;}
._aa{margin-left:-2172.651712pt;}
._97{margin-left:-2166.907450pt;}
._ab{margin-left:-2165.874557pt;}
._ea{margin-left:-2162.437818pt;}
._b3{margin-left:-2159.938138pt;}
._db{margin-left:-2158.342464pt;}
._bb{margin-left:-2148.875034pt;}
._d3{margin-left:-2144.874752pt;}
._e7{margin-left:-2139.902054pt;}
._df{margin-left:-2138.875139pt;}
._a6{margin-left:-2136.625037pt;}
._135{margin-left:-2125.093766pt;}
._af{margin-left:-2120.688822pt;}
._7e{margin-left:-2117.782413pt;}
._127{margin-left:-2114.884453pt;}
._13b{margin-left:-2112.220211pt;}
._de{margin-left:-2110.936054pt;}
._85{margin-left:-2107.654278pt;}
._12e{margin-left:-2100.937613pt;}
._e5{margin-left:-2098.812256pt;}
._118{margin-left:-2089.532422pt;}
._12b{margin-left:-2082.880991pt;}
._131{margin-left:-2077.050420pt;}
._e2{margin-left:-2073.937523pt;}
._e3{margin-left:-2070.446112pt;}
._dd{margin-left:-2068.125043pt;}
._12a{margin-left:-2066.698792pt;}
._125{margin-left:-2043.346035pt;}
._a9{margin-left:-2034.656288pt;}
._11e{margin-left:-2017.062490pt;}
._128{margin-left:-2000.231621pt;}
._e4{margin-left:-1992.183904pt;}
._120{margin-left:-1912.562477pt;}
._124{margin-left:-1883.686470pt;}
._122{margin-left:-1851.004470pt;}
._119{margin-left:-1849.843738pt;}
._55{margin-left:-64.000662pt;}
._1{margin-left:-2.163180pt;}
._2{margin-left:-1.248028pt;}
._0{width:1.293215pt;}
._5f{width:15.998790pt;}
._1e{width:19.999853pt;}
._59{width:24.001427pt;}
._2b{width:28.000000pt;}
._12{width:32.000090pt;}
._37{width:36.000000pt;}
._2f{width:40.000099pt;}
._3{width:44.000000pt;}
._28{width:48.000000pt;}
._34{width:52.000000pt;}
._e{width:56.000000pt;}
._16{width:60.000000pt;}
._2e{width:64.000000pt;}
._f{width:68.000000pt;}
._c{width:72.000000pt;}
._da{width:74.687501pt;}
._18{width:76.000000pt;}
._5{width:80.000000pt;}
._11{width:84.000000pt;}
._8{width:88.000000pt;}
._22{width:92.000000pt;}
._35{width:96.000000pt;}
._47{width:100.000000pt;}
._11f{width:101.312525pt;}
._1a{width:104.000000pt;}
._33{width:108.000090pt;}
._26{width:112.000000pt;}
._a{width:116.000000pt;}
._46{width:120.000000pt;}
._80{width:124.000000pt;}
._23{width:128.000000pt;}
._2a{width:132.000000pt;}
._38{width:136.000000pt;}
._61{width:140.000000pt;}
._15{width:144.000000pt;}
._8a{width:147.999910pt;}
._63{width:152.000000pt;}
._51{width:156.000000pt;}
._3c{width:160.000000pt;}
._7{width:164.000000pt;}
._64{width:168.000000pt;}
._1b{width:172.000000pt;}
._40{width:176.000000pt;}
._6b{width:180.000000pt;}
._9{width:184.000000pt;}
._3b{width:188.000000pt;}
._2d{width:192.000000pt;}
._49{width:196.000000pt;}
._21{width:200.000000pt;}
._3f{width:204.000000pt;}
._5e{width:208.000000pt;}
._45{width:212.000000pt;}
._58{width:216.000000pt;}
._b{width:220.000000pt;}
._24{width:224.000000pt;}
._53{width:227.999910pt;}
._3a{width:232.000000pt;}
._20{width:236.000000pt;}
._1c{width:240.000000pt;}
._75{width:244.000000pt;}
._3e{width:248.000000pt;}
._65{width:252.000000pt;}
._54{width:256.000000pt;}
._6{width:260.000000pt;}
._4c{width:264.000000pt;}
._7a{width:268.000010pt;}
._17{width:272.000000pt;}
._41{width:276.000000pt;}
._44{width:280.000000pt;}
._1d{width:284.000000pt;}
._25{width:287.999910pt;}
._67{width:291.999901pt;}
._14{width:296.000000pt;}
._9e{width:299.591293pt;}
._60{width:300.878490pt;}
._2c{width:303.999910pt;}
._4a{width:308.000000pt;}
._52{width:312.000000pt;}
._5b{width:316.000000pt;}
._43{width:320.000000pt;}
._10{width:324.000000pt;}
._6e{width:328.000000pt;}
._31{width:332.000000pt;}
._88{width:335.999910pt;}
._27{width:340.000000pt;}
._78{width:344.000000pt;}
._94{width:348.000000pt;}
._a7{width:352.690432pt;}
._6d{width:356.000000pt;}
._5c{width:360.000000pt;}
._74{width:364.000000pt;}
._4e{width:367.999901pt;}
._9a{width:372.000000pt;}
._32{width:376.000000pt;}
._b0{width:380.000000pt;}
._d{width:384.000000pt;}
._7c{width:388.000090pt;}
._19{width:392.000000pt;}
._72{width:396.000000pt;}
._7f{width:400.000000pt;}
._10c{width:404.218541pt;}
._13c{width:407.217226pt;}
._76{width:408.654451pt;}
._d5{width:411.750656pt;}
._9f{width:416.000000pt;}
._68{width:420.000000pt;}
._cc{width:424.313536pt;}
._d9{width:428.000000pt;}
._129{width:432.000000pt;}
._d4{width:436.437709pt;}
._a8{width:440.000090pt;}
._123{width:452.000000pt;}
._95{width:456.000179pt;}
._130{width:460.487880pt;}
._4f{width:464.000000pt;}
._12f{width:468.000090pt;}
._fe{width:471.872806pt;}
._ae{width:475.186512pt;}
._d7{width:480.823482pt;}
._115{width:483.618874pt;}
._f3{width:484.777411pt;}
._136{width:500.000000pt;}
._132{width:504.000000pt;}
._86{width:508.000090pt;}
._137{width:528.000099pt;}
._117{width:576.496374pt;}
._12d{width:588.000000pt;}
._138{width:664.000000pt;}
._12c{width:675.613953pt;}
._133{width:708.000000pt;}
._134{width:816.000000pt;}
._10f{width:1192.000000pt;}
._139{width:1876.488190pt;}
._13a{width:2191.918422pt;}
.fs3{font-size:28.000000pt;}
.fs7{font-size:32.000000pt;}
.fsa{font-size:38.400000pt;}
.fs2{font-size:42.666800pt;}
.fs5{font-size:44.000000pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:53.333200pt;}
.fs6{font-size:58.666800pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:65.969690pt;}
.fs1{font-size:85.333200pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:37.000000pt;}
.y1c{bottom:66.000000pt;}
.y1b{bottom:95.000000pt;}
.y13{bottom:96.000000pt;}
.y162{bottom:123.000000pt;}
.y1a{bottom:124.000000pt;}
.y60{bottom:128.000000pt;}
.ye9{bottom:129.000000pt;}
.y18a{bottom:134.000000pt;}
.y41{bottom:135.000000pt;}
.y161{bottom:142.000000pt;}
.y12b{bottom:143.000000pt;}
.y9f{bottom:145.000000pt;}
.y17f{bottom:148.000000pt;}
.y40{bottom:149.000000pt;}
.y73{bottom:150.000000pt;}
.y19{bottom:153.000000pt;}
.y154{bottom:154.000000pt;}
.y19c{bottom:156.000000pt;}
.y5f{bottom:157.000000pt;}
.y12{bottom:158.000000pt;}
.yca{bottom:159.000000pt;}
.y126{bottom:160.000000pt;}
.y160{bottom:161.000000pt;}
.y3f{bottom:163.000000pt;}
.y94{bottom:164.000000pt;}
.yd5{bottom:165.000000pt;}
.y119{bottom:166.000000pt;}
.y17e{bottom:167.000000pt;}
.ydc{bottom:168.000000pt;}
.y10c{bottom:169.000000pt;}
.y8e{bottom:171.000000pt;}
.y12a{bottom:172.000000pt;}
.yb3{bottom:173.000000pt;}
.y9e{bottom:174.000000pt;}
.y3e{bottom:177.000000pt;}
.y72{bottom:179.000000pt;}
.y15f{bottom:180.000000pt;}
.y18{bottom:182.000000pt;}
.y140{bottom:185.000000pt;}
.y17d{bottom:186.000000pt;}
.ya4{bottom:187.000000pt;}
.yc9{bottom:188.000000pt;}
.y199{bottom:190.000000pt;}
.y3d{bottom:191.000000pt;}
.y189{bottom:192.000000pt;}
.y93{bottom:193.000000pt;}
.yd4{bottom:194.000000pt;}
.y118{bottom:195.000000pt;}
.y11{bottom:196.000000pt;}
.y5e{bottom:198.000000pt;}
.y141{bottom:199.000000pt;}
.y8d{bottom:200.000000pt;}
.y125{bottom:201.000000pt;}
.yb2{bottom:202.000000pt;}
.y9d{bottom:203.000000pt;}
.y3c{bottom:205.000000pt;}
.y71{bottom:208.000000pt;}
.yeb{bottom:209.000000pt;}
.y103{bottom:210.000000pt;}
.y17{bottom:211.000000pt;}
.y13f{bottom:214.000000pt;}
.ybe{bottom:215.000000pt;}
.ye8{bottom:216.000000pt;}
.yc8{bottom:217.000000pt;}
.y15e{bottom:218.000000pt;}
.y3b{bottom:219.000000pt;}
.yc5{bottom:220.000000pt;}
.y15c{bottom:221.000000pt;}
.y109{bottom:222.000000pt;}
.yd3{bottom:223.000000pt;}
.y117{bottom:224.000000pt;}
.y5d{bottom:227.000000pt;}
.ya3{bottom:228.000000pt;}
.y81{bottom:229.000000pt;}
.y124{bottom:230.000000pt;}
.yb1{bottom:231.000000pt;}
.y3a{bottom:233.000000pt;}
.y10{bottom:234.000000pt;}
.y70{bottom:237.000000pt;}
.y102{bottom:239.000000pt;}
.y129{bottom:242.000000pt;}
.y17c{bottom:243.000000pt;}
.y9c{bottom:244.000000pt;}
.yc7{bottom:246.000000pt;}
.y39{bottom:247.000000pt;}
.y198{bottom:248.000000pt;}
.yc4{bottom:249.000000pt;}
.y188{bottom:250.000000pt;}
.y108{bottom:251.000000pt;}
.yd2{bottom:252.000000pt;}
.y116{bottom:253.000000pt;}
.y13e{bottom:255.000000pt;}
.y10b{bottom:256.000000pt;}
.ye7{bottom:257.000000pt;}
.y80{bottom:258.000000pt;}
.yb0{bottom:260.000000pt;}
.y38{bottom:261.000000pt;}
.y17b{bottom:262.000000pt;}
.y6c{bottom:263.000000pt;}
.y6f{bottom:266.000000pt;}
.yf{bottom:268.000000pt;}
.y14d{bottom:270.000000pt;}
.y123{bottom:271.000000pt;}
.y9b{bottom:273.000000pt;}
.y4e{bottom:274.000000pt;}
.y37{bottom:275.000000pt;}
.y197{bottom:277.000000pt;}
.yc3{bottom:278.000000pt;}
.y187{bottom:279.000000pt;}
.y151{bottom:280.000000pt;}
.yd1{bottom:281.000000pt;}
.y115{bottom:282.000000pt;}
.y128{bottom:283.000000pt;}
.y13d{bottom:284.000000pt;}
.y10a{bottom:285.000000pt;}
.ye6{bottom:286.000000pt;}
.y7f{bottom:287.000000pt;}
.y36{bottom:289.000000pt;}
.ydf{bottom:290.000000pt;}
.y92{bottom:292.000000pt;}
.yea{bottom:296.000000pt;}
.ye{bottom:297.000000pt;}
.y8c{bottom:299.000000pt;}
.y122{bottom:300.000000pt;}
.yaf{bottom:301.000000pt;}
.y35{bottom:303.000000pt;}
.y6b{bottom:304.000000pt;}
.y196{bottom:306.000000pt;}
.y6e{bottom:307.000000pt;}
.y186{bottom:308.000000pt;}
.y127{bottom:309.000000pt;}
.yd0{bottom:310.000000pt;}
.ya6{bottom:311.000000pt;}
.yb9{bottom:312.000000pt;}
.y9a{bottom:314.000000pt;}
.y4d{bottom:315.000000pt;}
.y7e{bottom:316.000000pt;}
.y34{bottom:317.000000pt;}
.y17a{bottom:319.000000pt;}
.y91{bottom:321.000000pt;}
.y114{bottom:323.000000pt;}
.y13c{bottom:325.000000pt;}
.yd{bottom:326.000000pt;}
.y121{bottom:329.000000pt;}
.yae{bottom:330.000000pt;}
.y33{bottom:331.000000pt;}
.y145{bottom:332.000000pt;}
.y6a{bottom:333.000000pt;}
.y195{bottom:335.000000pt;}
.yc2{bottom:336.000000pt;}
.y185{bottom:337.000000pt;}
.y179{bottom:338.000000pt;}
.ycf{bottom:339.000000pt;}
.y8b{bottom:340.000000pt;}
.yb8{bottom:341.000000pt;}
.ye5{bottom:344.000000pt;}
.y32{bottom:345.000000pt;}
.y6d{bottom:348.000000pt;}
.y150{bottom:350.000000pt;}
.y113{bottom:352.000000pt;}
.y13b{bottom:354.000000pt;}
.y99{bottom:355.000000pt;}
.y153{bottom:357.000000pt;}
.y120{bottom:358.000000pt;}
.yc{bottom:359.000000pt;}
.y144{bottom:361.000000pt;}
.y69{bottom:362.000000pt;}
.y194{bottom:364.000000pt;}
.yc1{bottom:365.000000pt;}
.y184{bottom:366.000000pt;}
.y5c{bottom:367.000000pt;}
.y8a{bottom:369.000000pt;}
.yb7{bottom:370.000000pt;}
.yad{bottom:371.000000pt;}
.y31{bottom:373.000000pt;}
.yc6{bottom:374.000000pt;}
.y178{bottom:376.000000pt;}
.ydb{bottom:379.000000pt;}
.yce{bottom:380.000000pt;}
.y112{bottom:381.000000pt;}
.y13a{bottom:383.000000pt;}
.y101{bottom:384.000000pt;}
.ye4{bottom:385.000000pt;}
.y7d{bottom:386.000000pt;}
.y30{bottom:387.000000pt;}
.yd8{bottom:389.000000pt;}
.yc0{bottom:394.000000pt;}
.y177{bottom:395.000000pt;}
.y5b{bottom:396.000000pt;}
.yb{bottom:397.000000pt;}
.y89{bottom:398.000000pt;}
.yb6{bottom:399.000000pt;}
.yac{bottom:400.000000pt;}
.y2f{bottom:401.000000pt;}
.y143{bottom:402.000000pt;}
.y68{bottom:403.000000pt;}
.y193{bottom:405.000000pt;}
.y14f{bottom:408.000000pt;}
.y111{bottom:410.000000pt;}
.y139{bottom:412.000000pt;}
.ye3{bottom:414.000000pt;}
.y2e{bottom:415.000000pt;}
.yff{bottom:418.000000pt;}
.yda{bottom:420.000000pt;}
.ycd{bottom:421.000000pt;}
.y183{bottom:424.000000pt;}
.y5a{bottom:425.000000pt;}
.y88{bottom:427.000000pt;}
.y11f{bottom:428.000000pt;}
.y2d{bottom:429.000000pt;}
.y142{bottom:431.000000pt;}
.y67{bottom:432.000000pt;}
.y176{bottom:433.000000pt;}
.y192{bottom:434.000000pt;}
.ya{bottom:435.000000pt;}
.ya2{bottom:439.000000pt;}
.yb5{bottom:440.000000pt;}
.y138{bottom:441.000000pt;}
.y158{bottom:442.000000pt;}
.y2c{bottom:443.000000pt;}
.y7c{bottom:444.000000pt;}
.yfe{bottom:447.000000pt;}
.y14e{bottom:449.000000pt;}
.y110{bottom:451.000000pt;}
.y175{bottom:452.000000pt;}
.y182{bottom:453.000000pt;}
.y15a{bottom:454.000000pt;}
.y87{bottom:456.000000pt;}
.y2b{bottom:457.000000pt;}
.yab{bottom:458.000000pt;}
.y15b{bottom:460.000000pt;}
.yd9{bottom:461.000000pt;}
.yf2{bottom:462.000000pt;}
.y191{bottom:463.000000pt;}
.y59{bottom:466.000000pt;}
.ya1{bottom:468.000000pt;}
.ybd{bottom:470.000000pt;}
.y2a{bottom:471.000000pt;}
.ye2{bottom:472.000000pt;}
.y9{bottom:473.000000pt;}
.ybf{bottom:476.000000pt;}
.y10f{bottom:480.000000pt;}
.yb4{bottom:481.000000pt;}
.y157{bottom:483.000000pt;}
.y29{bottom:485.000000pt;}
.y11e{bottom:486.000000pt;}
.yfd{bottom:488.000000pt;}
.yde{bottom:490.000000pt;}
.yf1{bottom:491.000000pt;}
.y190{bottom:492.000000pt;}
.y181{bottom:494.000000pt;}
.y159{bottom:495.000000pt;}
.y86{bottom:497.000000pt;}
.y28{bottom:499.000000pt;}
.y66{bottom:502.000000pt;}
.ye1{bottom:503.000000pt;}
.y14b{bottom:506.000000pt;}
.y58{bottom:507.000000pt;}
.y174{bottom:509.000000pt;}
.y8{bottom:511.000000pt;}
.y27{bottom:513.000000pt;}
.ya5{bottom:514.000000pt;}
.y11d{bottom:515.000000pt;}
.ydd{bottom:519.000000pt;}
.yf0{bottom:520.000000pt;}
.y10e{bottom:521.000000pt;}
.y85{bottom:526.000000pt;}
.y26{bottom:527.000000pt;}
.ybc{bottom:528.000000pt;}
.yfc{bottom:529.000000pt;}
.y65{bottom:531.000000pt;}
.ye0{bottom:535.000000pt;}
.y107{bottom:536.000000pt;}
.yaa{bottom:540.000000pt;}
.y25{bottom:541.000000pt;}
.y7b{bottom:543.000000pt;}
.y11c{bottom:544.000000pt;}
.y173{bottom:547.000000pt;}
.y57{bottom:548.000000pt;}
.y7{bottom:549.000000pt;}
.y18f{bottom:550.000000pt;}
.y19b{bottom:552.000000pt;}
.y24{bottom:555.000000pt;}
.ybb{bottom:557.000000pt;}
.yfb{bottom:558.000000pt;}
.y4c{bottom:560.000000pt;}
.yef{bottom:561.000000pt;}
.y10d{bottom:562.000000pt;}
.y106{bottom:565.000000pt;}
.y172{bottom:566.000000pt;}
.ya0{bottom:567.000000pt;}
.y23{bottom:569.000000pt;}
.y7a{bottom:572.000000pt;}
.y130{bottom:573.000000pt;}
.y14a{bottom:576.000000pt;}
.y56{bottom:577.000000pt;}
.y18e{bottom:579.000000pt;}
.y137{bottom:581.000000pt;}
.yd7{bottom:582.000000pt;}
.y22{bottom:583.000000pt;}
.y84{bottom:584.000000pt;}
.y11b{bottom:585.000000pt;}
.yba{bottom:586.000000pt;}
.y6{bottom:587.000000pt;}
.y4b{bottom:589.000000pt;}
.y105{bottom:594.000000pt;}
.y98{bottom:596.000000pt;}
.y21{bottom:597.000000pt;}
.ya9{bottom:598.000000pt;}
.y64{bottom:601.000000pt;}
.yee{bottom:602.000000pt;}
.y171{bottom:604.000000pt;}
.y55{bottom:606.000000pt;}
.y18d{bottom:608.000000pt;}
.y136{bottom:610.000000pt;}
.y20{bottom:611.000000pt;}
.y79{bottom:613.000000pt;}
.y149{bottom:617.000000pt;}
.y90{bottom:618.000000pt;}
.yd6{bottom:623.000000pt;}
.y5{bottom:625.000000pt;}
.y11a{bottom:626.000000pt;}
.ya8{bottom:627.000000pt;}
.yfa{bottom:628.000000pt;}
.y4a{bottom:630.000000pt;}
.y18c{bottom:637.000000pt;}
.y1f{bottom:639.000000pt;}
.y100{bottom:641.000000pt;}
.y83{bottom:642.000000pt;}
.y12f{bottom:643.000000pt;}
.y148{bottom:646.000000pt;}
.y54{bottom:647.000000pt;}
.y135{bottom:651.000000pt;}
.y1e{bottom:653.000000pt;}
.y78{bottom:654.000000pt;}
.yf9{bottom:657.000000pt;}
.y180{bottom:658.000000pt;}
.y49{bottom:659.000000pt;}
.y170{bottom:661.000000pt;}
.y4{bottom:663.000000pt;}
.y104{bottom:664.000000pt;}
.y18b{bottom:666.000000pt;}
.y1d{bottom:667.000000pt;}
.ya7{bottom:668.000000pt;}
.y82{bottom:671.000000pt;}
.y16{bottom:675.000000pt;}
.y53{bottom:676.000000pt;}
.y134{bottom:680.000000pt;}
.y77{bottom:683.000000pt;}
.y12e{bottom:684.000000pt;}
.yf8{bottom:686.000000pt;}
.y147{bottom:687.000000pt;}
.y48{bottom:688.000000pt;}
.yed{bottom:691.000000pt;}
.y146{bottom:692.000000pt;}
.ycc{bottom:695.000000pt;}
.y14c{bottom:697.000000pt;}
.y16f{bottom:699.000000pt;}
.y8f{bottom:700.000000pt;}
.y52{bottom:705.000000pt;}
.y3{bottom:709.000000pt;}
.y76{bottom:712.000000pt;}
.y12d{bottom:713.000000pt;}
.yf7{bottom:715.000000pt;}
.y47{bottom:717.000000pt;}
.y16e{bottom:718.000000pt;}
.y19d{bottom:719.000000pt;}
.y156{bottom:723.000000pt;}
.ycb{bottom:724.000000pt;}
.yec{bottom:729.000000pt;}
.y152{bottom:730.000000pt;}
.y16d{bottom:737.000000pt;}
.y133{bottom:738.000000pt;}
.y75{bottom:741.000000pt;}
.yf6{bottom:744.000000pt;}
.y46{bottom:746.000000pt;}
.y2{bottom:750.000000pt;}
.y97{bottom:753.000000pt;}
.y12c{bottom:754.000000pt;}
.y16c{bottom:756.000000pt;}
.y63{bottom:758.000000pt;}
.y155{bottom:764.000000pt;}
.y15d{bottom:765.000000pt;}
.y74{bottom:770.000000pt;}
.yf5{bottom:773.000000pt;}
.y16b{bottom:775.000000pt;}
.y132{bottom:779.000000pt;}
.y96{bottom:782.000000pt;}
.y19a{bottom:785.000000pt;}
.y45{bottom:787.000000pt;}
.y169{bottom:794.000000pt;}
.y62{bottom:799.000000pt;}
.y16a{bottom:800.000000pt;}
.y131{bottom:808.000000pt;}
.y95{bottom:811.000000pt;}
.y168{bottom:813.000000pt;}
.yf4{bottom:814.000000pt;}
.y44{bottom:816.000000pt;}
.y51{bottom:828.000000pt;}
.y167{bottom:832.000000pt;}
.y61{bottom:840.000000pt;}
.y14{bottom:849.000000pt;}
.y166{bottom:851.000000pt;}
.yf3{bottom:855.000000pt;}
.y43{bottom:857.000000pt;}
.y50{bottom:869.000000pt;}
.y165{bottom:870.000000pt;}
.y42{bottom:886.000000pt;}
.y164{bottom:889.000000pt;}
.y4f{bottom:898.000000pt;}
.y163{bottom:908.000000pt;}
.y1{bottom:927.000000pt;}
.h7{height:21.906250pt;}
.hc{height:33.693750pt;}
.h3{height:38.520954pt;}
.hb{height:42.117188pt;}
.h5{height:43.812500pt;}
.h9{height:43.969056pt;}
.h8{height:44.437500pt;}
.ha{height:48.150921pt;}
.h4{height:53.000000pt;}
.h1{height:56.156250pt;}
.h2{height:74.874883pt;}
.h6{height:227.000000pt;}
.h0{height:1056.000000pt;}
.w1{width:138.000000pt;}
.w2{width:510.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:10.000000pt;}
.xe{left:84.000000pt;}
.x3{left:94.000000pt;}
.x30{left:99.328100pt;}
.x42{left:102.000000pt;}
.x43{left:106.796900pt;}
.x11{left:112.000000pt;}
.x5{left:118.000000pt;}
.x8{left:140.000000pt;}
.x22{left:142.000000pt;}
.x12{left:154.000000pt;}
.x18{left:166.000000pt;}
.x31{left:181.218800pt;}
.x39{left:190.000000pt;}
.x13{left:196.000000pt;}
.x10{left:222.000000pt;}
.x4{left:228.000000pt;}
.xb{left:264.000000pt;}
.x27{left:277.000000pt;}
.xa{left:279.000000pt;}
.x7{left:294.000000pt;}
.x21{left:296.000000pt;}
.x2f{left:297.000000pt;}
.x9{left:314.000000pt;}
.x24{left:350.000000pt;}
.x2c{left:379.000000pt;}
.x1a{left:385.000000pt;}
.xd{left:388.000000pt;}
.x34{left:392.000000pt;}
.xc{left:395.000000pt;}
.x38{left:404.000000pt;}
.x1{left:407.000000pt;}
.x44{left:413.031300pt;}
.x45{left:417.828100pt;}
.x6{left:419.000000pt;}
.x1c{left:424.000000pt;}
.x19{left:428.000000pt;}
.x20{left:465.000000pt;}
.x2{left:481.000000pt;}
.x36{left:497.000000pt;}
.x1e{left:506.000000pt;}
.x41{left:507.000000pt;}
.x40{left:509.000000pt;}
.x2d{left:510.000000pt;}
.x3b{left:530.000000pt;}
.x28{left:553.000000pt;}
.x16{left:559.000000pt;}
.x17{left:560.968800pt;}
.x2b{left:575.000000pt;}
.x32{left:580.000000pt;}
.x1d{left:605.000000pt;}
.x1b{left:615.000000pt;}
.x2e{left:629.000000pt;}
.x33{left:638.000000pt;}
.x26{left:652.000000pt;}
.x29{left:656.000000pt;}
.x15{left:659.000000pt;}
.x37{left:671.000000pt;}
.x3e{left:676.000000pt;}
.x3f{left:682.000000pt;}
.x23{left:695.000000pt;}
.x1f{left:698.000000pt;}
.x3c{left:699.000000pt;}
.x2a{left:717.000000pt;}
.x35{left:724.000000pt;}
.x14{left:736.000000pt;}
.x3a{left:738.000000pt;}
.x25{left:740.000000pt;}
.x3d{left:762.000000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  