
    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_03c87be3cb2daa05d537486d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_94e7dd3c794b61e6a6ff9679.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_d18dfa35061abc2cf30d0f89.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_9f976863557ec20c416a42f2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_31eae9893f9f96a3c689446a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.906250;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_9f288e306605cc214fd8c69a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.892090;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_3dd7f65be06c48786097d364.woff')format("woff");}.ff7{font-family:ff7;line-height:0.900879;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);}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.237811px;}
.v2{vertical-align:38.880230px;}
.ls8{letter-spacing:-1.192320px;}
.ls4{letter-spacing:-0.702000px;}
.ls2{letter-spacing:-0.179280px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.132480px;}
.ls1{letter-spacing:0.262310px;}
.ls5{letter-spacing:0.264960px;}
.ls3{letter-spacing:0.378000px;}
.ls7{letter-spacing:0.720000px;}
.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;}
}
.ws2b{word-spacing:-58.887360px;}
.ws18{word-spacing:-51.534720px;}
.ws61{word-spacing:-50.342400px;}
.ws43{word-spacing:-48.090240px;}
.ws1e{word-spacing:-46.493280px;}
.wse{word-spacing:-42.390000px;}
.ws19{word-spacing:-42.194880px;}
.ws1{word-spacing:-42.012000px;}
.ws2a{word-spacing:-41.466240px;}
.ws5d{word-spacing:-41.454979px;}
.wsf{word-spacing:-41.310000px;}
.ws44{word-spacing:-40.737600px;}
.ws20{word-spacing:-40.008960px;}
.ws47{word-spacing:-39.280320px;}
.ws30{word-spacing:-38.551680px;}
.ws25{word-spacing:-37.823040px;}
.ws21{word-spacing:-37.160640px;}
.ws1b{word-spacing:-36.432000px;}
.ws65{word-spacing:-35.731843px;}
.ws45{word-spacing:-35.703360px;}
.ws69{word-spacing:-35.694749px;}
.ws29{word-spacing:-34.974720px;}
.ws4e{word-spacing:-34.966109px;}
.ws1f{word-spacing:-34.246080px;}
.ws64{word-spacing:-33.615475px;}
.ws22{word-spacing:-33.517440px;}
.ws2{word-spacing:-33.120000px;}
.ws24{word-spacing:-32.788800px;}
.ws2d{word-spacing:-32.489280px;}
.ws55{word-spacing:-32.126400px;}
.wsa{word-spacing:-31.968000px;}
.ws2f{word-spacing:-31.538851px;}
.ws52{word-spacing:-31.397760px;}
.ws5f{word-spacing:-30.991709px;}
.ws46{word-spacing:-30.669120px;}
.ws48{word-spacing:-29.940480px;}
.ws11{word-spacing:-29.675520px;}
.ws4a{word-spacing:-29.543040px;}
.ws5{word-spacing:-29.410560px;}
.ws28{word-spacing:-29.211840px;}
.ws56{word-spacing:-28.483200px;}
.ws27{word-spacing:-27.754560px;}
.ws31{word-spacing:-27.025920px;}
.ws3{word-spacing:-26.533440px;}
.ws6d{word-spacing:-26.363520px;}
.wsd{word-spacing:-26.354160px;}
.ws63{word-spacing:-25.634880px;}
.ws42{word-spacing:-24.906240px;}
.ws26{word-spacing:-24.177600px;}
.ws0{word-spacing:-23.976000px;}
.ws23{word-spacing:-23.448960px;}
.ws35{word-spacing:-22.057920px;}
.ws67{word-spacing:-21.263040px;}
.ws60{word-spacing:-20.600640px;}
.ws1a{word-spacing:-20.070720px;}
.ws5c{word-spacing:-19.342080px;}
.ws59{word-spacing:-19.143360px;}
.ws6{word-spacing:-18.613440px;}
.ws6c{word-spacing:-18.610790px;}
.ws2e{word-spacing:-18.414720px;}
.ws7{word-spacing:-17.884800px;}
.ws50{word-spacing:-17.156160px;}
.ws13{word-spacing:-16.427520px;}
.ws57{word-spacing:-16.228800px;}
.ws4{word-spacing:-15.036480px;}
.ws1c{word-spacing:-14.307840px;}
.ws4d{word-spacing:-12.896928px;}
.ws5a{word-spacing:-12.890966px;}
.ws4f{word-spacing:-12.850560px;}
.ws66{word-spacing:-12.841949px;}
.ws40{word-spacing:-12.718080px;}
.ws39{word-spacing:-11.989440px;}
.ws68{word-spacing:-11.393280px;}
.ws3b{word-spacing:-11.260800px;}
.ws33{word-spacing:-11.194560px;}
.ws62{word-spacing:-10.664640px;}
.ws6a{word-spacing:-10.465920px;}
.ws17{word-spacing:-9.803520px;}
.ws16{word-spacing:-9.273600px;}
.ws49{word-spacing:-8.544960px;}
.ws14{word-spacing:-7.816320px;}
.ws3e{word-spacing:-6.226560px;}
.ws4b{word-spacing:-5.630400px;}
.ws3f{word-spacing:-5.497920px;}
.ws4c{word-spacing:-4.901760px;}
.ws6e{word-spacing:-4.239360px;}
.ws2c{word-spacing:-3.312000px;}
.ws34{word-spacing:-0.066240px;}
.wsb{word-spacing:0.000000px;}
.ws12{word-spacing:0.132480px;}
.ws36{word-spacing:0.993600px;}
.ws51{word-spacing:1.722240px;}
.ws5e{word-spacing:4.438080px;}
.ws3a{word-spacing:4.570560px;}
.ws58{word-spacing:4.636800px;}
.ws15{word-spacing:5.166720px;}
.ws8{word-spacing:5.895360px;}
.ws32{word-spacing:6.491520px;}
.ws5b{word-spacing:9.472320px;}
.ws37{word-spacing:10.002240px;}
.ws38{word-spacing:10.010851px;}
.ws6b{word-spacing:10.929600px;}
.ws9{word-spacing:12.320640px;}
.ws54{word-spacing:13.248000px;}
.ws3c{word-spacing:15.036480px;}
.ws10{word-spacing:15.235200px;}
.ws3d{word-spacing:15.779693px;}
.ws41{word-spacing:22.414954px;}
.ws53{word-spacing:64.385280px;}
.ws1d{word-spacing:960.019906px;}
.wsc{word-spacing:994.987865px;}
._0{margin-left:-1.324800px;}
._1{width:1.254960px;}
._a{width:2.329200px;}
._5{width:3.643200px;}
._3{width:4.835520px;}
._6{width:6.491520px;}
._b{width:7.952400px;}
._4{width:9.604800px;}
._1a{width:10.660666px;}
._14{width:11.825827px;}
._2{width:13.115520px;}
._9{width:15.043680px;}
._13{width:17.023680px;}
._12{width:18.149760px;}
._19{width:19.293062px;}
._f{width:20.327069px;}
._8{width:21.726720px;}
._7{width:22.852800px;}
._d{width:24.178262px;}
._c{width:25.436160px;}
._16{width:26.628480px;}
._e{width:28.201018px;}
._15{width:29.808000px;}
._18{width:31.199040px;}
._17{width:32.987520px;}
._29{width:34.511040px;}
._11{width:36.829440px;}
._10{width:37.854835px;}
._1e{width:39.747600px;}
._1f{width:41.047200px;}
._24{width:42.134746px;}
._2d{width:47.519914px;}
._2c{width:51.229354px;}
._1b{width:54.720202px;}
._20{width:56.278166px;}
._23{width:57.628800px;}
._2a{width:58.824173px;}
._2b{width:60.344640px;}
._27{width:63.656640px;}
._21{width:70.148160px;}
._28{width:72.774576px;}
._26{width:120.689280px;}
._25{width:122.014080px;}
._2e{width:129.631680px;}
._22{width:251.602704px;}
._1d{width:438.780031px;}
._1c{width:453.387168px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ye9{bottom:3.960000px;}
.y1{bottom:246.180450px;}
.y41{bottom:280.921984px;}
.y6d{bottom:280.922315px;}
.y13b{bottom:283.801429px;}
.y55{bottom:283.801933px;}
.y190{bottom:283.802099px;}
.y1d{bottom:284.161782px;}
.y152{bottom:285.780738px;}
.ye0{bottom:286.681897px;}
.y206{bottom:288.661465px;}
.ya8{bottom:289.740954px;}
.y22a{bottom:289.921120px;}
.y10d{bottom:294.781876px;}
.y18a{bottom:295.862099px;}
.y1a0{bottom:296.760781px;}
.y40{bottom:299.821912px;}
.y6c{bottom:299.822243px;}
.y74{bottom:300.902120px;}
.y1e0{bottom:302.701048px;}
.y16a{bottom:302.881019px;}
.y13a{bottom:302.881364px;}
.y54{bottom:302.882034px;}
.y18f{bottom:302.882200px;}
.y1c{bottom:303.061710px;}
.y151{bottom:304.680666px;}
.ydf{bottom:305.581825px;}
.y127{bottom:305.761487px;}
.yc2{bottom:306.300911px;}
.y213{bottom:306.661523px;}
.y205{bottom:307.741400px;}
.y1f2{bottom:308.641436px;}
.ya7{bottom:308.820889px;}
.y229{bottom:308.821048px;}
.y8d{bottom:312.781278px;}
.y10c{bottom:313.681804px;}
.y189{bottom:314.762027px;}
.y19f{bottom:315.660709px;}
.y1b7{bottom:316.741177px;}
.y3f{bottom:318.721840px;}
.y6b{bottom:318.902344px;}
.y73{bottom:319.802214px;}
.y1df{bottom:321.601141px;}
.y169{bottom:321.780947px;}
.y139{bottom:321.781292px;}
.y53{bottom:321.781962px;}
.y18e{bottom:321.782128px;}
.y126{bottom:324.661415px;}
.yde{bottom:324.661760px;}
.yc1{bottom:325.200839px;}
.y212{bottom:325.741624px;}
.y204{bottom:326.641328px;}
.ya6{bottom:327.720817px;}
.y228{bottom:327.721141px;}
.y1f1{bottom:327.721537px;}
.y8c{bottom:331.681206px;}
.y10b{bottom:332.761904px;}
.y188{bottom:333.841962px;}
.y19e{bottom:334.740644px;}
.y1b6{bottom:335.641105px;}
.y3e{bottom:337.801940px;}
.y6a{bottom:337.802272px;}
.y72{bottom:338.882149px;}
.y168{bottom:340.680875px;}
.y138{bottom:340.681220px;}
.y52{bottom:340.681890px;}
.y18d{bottom:340.682056px;}
.y150{bottom:341.760659px;}
.ydd{bottom:343.561688px;}
.y125{bottom:343.741350px;}
.yc0{bottom:344.280774px;}
.y211{bottom:344.641552px;}
.y203{bottom:345.721429px;}
.ya5{bottom:346.800752px;}
.y1b{bottom:347.701674px;}
.y8b{bottom:350.761141px;}
.y10a{bottom:351.661832px;}
.y187{bottom:352.741890px;}
.y1b5{bottom:354.721040px;}
.yf5{bottom:355.260580px;}
.y3d{bottom:356.701868px;}
.y69{bottom:356.882207px;}
.y71{bottom:357.782077px;}
.y1de{bottom:358.681134px;}
.y167{bottom:359.760810px;}
.y137{bottom:359.761156px;}
.y51{bottom:359.761825px;}
.y14f{bottom:360.660587px;}
.y19d{bottom:362.640601px;}
.y124{bottom:362.641278px;}
.y210{bottom:363.541480px;}
.yf4{bottom:364.440450px;}
.y1f0{bottom:364.621523px;}
.y227{bottom:364.801134px;}
.ya4{bottom:365.700680px;}
.y1a{bottom:366.601602px;}
.y8a{bottom:369.661069px;}
.y186{bottom:371.821825px;}
.y1b4{bottom:373.620968px;}
.y3c{bottom:375.781804px;}
.y68{bottom:375.782135px;}
.y70{bottom:376.862012px;}
.y1dd{bottom:377.581062px;}
.y166{bottom:378.660738px;}
.y136{bottom:378.661084px;}
.y50{bottom:378.661753px;}
.y14e{bottom:379.740522px;}
.ydc{bottom:380.461674px;}
.ybf{bottom:381.180760px;}
.y202{bottom:382.621415px;}
.y18c{bottom:383.342106px;}
.y226{bottom:383.701228px;}
.y1ef{bottom:383.701458px;}
.ya3{bottom:384.600608px;}
.y89{bottom:388.741004px;}
.y109{bottom:388.741825px;}
.y185{bottom:390.721919px;}
.y1b3{bottom:392.520896px;}
.y3b{bottom:394.681732px;}
.y67{bottom:394.682063px;}
.y6f{bottom:395.762106px;}
.y1dc{bottom:396.480990px;}
.y135{bottom:397.741019px;}
.y4f{bottom:397.741854px;}
.y14d{bottom:398.640788px;}
.y123{bottom:399.181249px;}
.y19c{bottom:399.540587px;}
.ydb{bottom:399.541775px;}
.ybe{bottom:400.260695px;}
.y20f{bottom:400.621472px;}
.y201{bottom:401.521343px;}
.y1ee{bottom:402.601386px;}
.ya2{bottom:403.680544px;}
.y88{bottom:407.640932px;}
.y108{bottom:407.641753px;}
.y19{bottom:411.061559px;}
.y1b2{bottom:411.600832px;}
.yf1{bottom:413.040450px;}
.yf3{bottom:413.400464px;}
.y3a{bottom:413.581660px;}
.y66{bottom:413.762164px;}
.y6e{bottom:414.662034px;}
.y165{bottom:415.740731px;}
.y134{bottom:416.640947px;}
.y4e{bottom:416.641782px;}
.yda{bottom:418.441703px;}
.y19b{bottom:418.620522px;}
.ybd{bottom:419.160623px;}
.y20e{bottom:419.521400px;}
.y225{bottom:420.601213px;}
.y200{bottom:420.601444px;}
.ya1{bottom:422.580472px;}
.y87{bottom:426.540860px;}
.y107{bottom:426.541681px;}
.y184{bottom:427.621904px;}
.y18{bottom:430.141494px;}
.y1b1{bottom:430.500760px;}
.yf0{bottom:431.940450px;}
.yf2{bottom:432.300392px;}
.y39{bottom:432.661760px;}
.y65{bottom:432.662092px;}
.y1db{bottom:433.560983px;}
.y164{bottom:434.640659px;}
.y14c{bottom:435.540774px;}
.y133{bottom:435.540875px;}
.y4d{bottom:435.541710px;}
.y122{bottom:436.621256px;}
.y19a{bottom:437.520529px;}
.yd9{bottom:437.521638px;}
.ybc{bottom:438.240558px;}
.y1ed{bottom:439.501372px;}
.y224{bottom:439.681148px;}
.ya0{bottom:441.660407px;}
.y86{bottom:445.620796px;}
.y183{bottom:446.701840px;}
.y17{bottom:449.041422px;}
.y1b0{bottom:449.580695px;}
.y38{bottom:451.561688px;}
.y64{bottom:451.742027px;}
.y1da{bottom:452.460911px;}
.y163{bottom:453.540587px;}
.y14b{bottom:454.620709px;}
.y4c{bottom:454.621645px;}
.y121{bottom:455.521184px;}
.yd8{bottom:456.421566px;}
.y20d{bottom:456.601393px;}
.ybb{bottom:457.140486px;}
.y1ff{bottom:457.501429px;}
.y223{bottom:458.581076px;}
.y1ec{bottom:458.581307px;}
.y106{bottom:463.621674px;}
.y85{bottom:464.520724px;}
.y182{bottom:465.601768px;}
.y16{bottom:467.941350px;}
.y1af{bottom:468.480623px;}
.y37{bottom:470.641624px;}
.y63{bottom:470.641955px;}
.yed{bottom:471.180450px;}
.yef{bottom:471.540464px;}
.y162{bottom:472.620522px;}
.y132{bottom:472.620868px;}
.y14a{bottom:473.520637px;}
.y199{bottom:474.600522px;}
.y120{bottom:474.601120px;}
.yd7{bottom:475.321494px;}
.y20c{bottom:475.501321px;}
.y1fe{bottom:476.581364px;}
.y22c{bottom:480.900875px;}
.y105{bottom:482.521768px;}
.y84{bottom:483.600659px;}
.y9f{bottom:484.140450px;}
.y181{bottom:484.681703px;}
.y15{bottom:487.021285px;}
.y1ae{bottom:487.380551px;}
.y1d9{bottom:489.540904px;}
.y36{bottom:489.541552px;}
.y62{bottom:489.541883px;}
.yec{bottom:490.260450px;}
.yee{bottom:490.620400px;}
.y131{bottom:491.520796px;}
.y161{bottom:491.521372px;}
.y4b{bottom:491.521631px;}
.y149{bottom:492.600572px;}
.y198{bottom:493.500680px;}
.y11f{bottom:493.501048px;}
.yd6{bottom:494.401429px;}
.y20b{bottom:494.581256px;}
.y222{bottom:495.481062px;}
.y1eb{bottom:495.481292px;}
.y104{bottom:501.601703px;}
.y83{bottom:502.500587px;}
.yba{bottom:503.580522px;}
.y180{bottom:503.581631px;}
.y14{bottom:505.921213px;}
.y1ad{bottom:506.460486px;}
.y1d8{bottom:508.440832px;}
.y1bf{bottom:508.621652px;}
.y61{bottom:508.621818px;}
.y130{bottom:510.600731px;}
.y4a{bottom:510.601566px;}
.y148{bottom:511.500500px;}
.y11e{bottom:512.580983px;}
.y1fd{bottom:513.481350px;}
.y221{bottom:514.560997px;}
.y1ea{bottom:514.561228px;}
.y22b{bottom:517.800860px;}
.y103{bottom:520.501631px;}
.y82{bottom:521.580522px;}
.yb9{bottom:522.481048px;}
.y17f{bottom:522.481559px;}
.y13{bottom:525.001148px;}
.y1d7{bottom:527.340925px;}
.y60{bottom:527.521746px;}
.y1be{bottom:527.701588px;}
.y160{bottom:528.601364px;}
.y12f{bottom:529.500659px;}
.y49{bottom:529.501494px;}
.yeb{bottom:529.860522px;}
.ye7{bottom:530.040450px;}
.y197{bottom:530.220659px;}
.yd5{bottom:531.301415px;}
.y11d{bottom:531.481076px;}
.y20a{bottom:531.481242px;}
.y35{bottom:532.021595px;}
.y1fc{bottom:532.561285px;}
.y102{bottom:539.581566px;}
.y81{bottom:540.480724px;}
.yb8{bottom:541.381141px;}
.y17e{bottom:541.561494px;}
.y1ac{bottom:543.000457px;}
.y12{bottom:543.901076px;}
.y5f{bottom:546.601681px;}
.y15f{bottom:547.501292px;}
.y147{bottom:548.580493px;}
.y12e{bottom:548.580594px;}
.y48{bottom:548.581429px;}
.yea{bottom:548.760450px;}
.y11c{bottom:550.381004px;}
.y209{bottom:550.381170px;}
.yd4{bottom:550.381350px;}
.y220{bottom:551.460983px;}
.y1e9{bottom:551.461213px;}
.y101{bottom:558.481494px;}
.y80{bottom:559.380652px;}
.yb7{bottom:560.461076px;}
.y17d{bottom:560.461588px;}
.y11{bottom:562.801004px;}
.ye8{bottom:563.700450px;}
.y1d6{bottom:564.420918px;}
.y5e{bottom:565.501775px;}
.y15e{bottom:566.581228px;}
.ye6{bottom:566.940450px;}
.y146{bottom:567.480421px;}
.y12d{bottom:567.480522px;}
.y196{bottom:567.480659px;}
.y47{bottom:567.481357px;}
.yd3{bottom:569.281278px;}
.y11b{bottom:569.460940px;}
.y208{bottom:569.461105px;}
.y1fb{bottom:569.461271px;}
.y1e8{bottom:570.361141px;}
.y21f{bottom:570.540918px;}
.y34{bottom:577.021573px;}
.y100{bottom:577.381422px;}
.y7f{bottom:578.460587px;}
.yb6{bottom:579.361004px;}
.y17c{bottom:579.541523px;}
.y10{bottom:581.880940px;}
.y1d5{bottom:583.320846px;}
.y5d{bottom:584.581710px;}
.y15d{bottom:585.481156px;}
.y145{bottom:586.380349px;}
.y195{bottom:586.380587px;}
.y46{bottom:586.381285px;}
.y12c{bottom:586.381451px;}
.y11a{bottom:588.360868px;}
.y207{bottom:588.361033px;}
.y1fa{bottom:588.361199px;}
.yd2{bottom:588.361213px;}
.y9e{bottom:589.080351px;}
.y21e{bottom:589.440846px;}
.y1e7{bottom:589.441076px;}
.y33{bottom:595.921501px;}
.yff{bottom:596.461357px;}
.y7e{bottom:597.360515px;}
.y17b{bottom:598.441451px;}
.yf{bottom:600.780868px;}
.y5c{bottom:603.481638px;}
.y15c{bottom:604.381084px;}
.y194{bottom:605.460522px;}
.y45{bottom:605.461220px;}
.y144{bottom:605.461386px;}
.y119{bottom:607.440803px;}
.y1f9{bottom:607.441134px;}
.y32{bottom:614.821429px;}
.y7d{bottom:616.440997px;}
.y1ab{bottom:617.340464px;}
.y17a{bottom:617.341379px;}
.ye{bottom:619.860803px;}
.y1d4{bottom:620.400839px;}
.y5b{bottom:622.381566px;}
.y1bd{bottom:622.561573px;}
.y15b{bottom:623.461019px;}
.y12b{bottom:623.461444px;}
.y9d{bottom:624.360414px;}
.y193{bottom:624.360529px;}
.y44{bottom:624.361314px;}
.y9c{bottom:625.080373px;}
.ye5{bottom:625.260450px;}
.yb5{bottom:625.441026px;}
.y21d{bottom:626.340832px;}
.y118{bottom:626.340896px;}
.y1e6{bottom:626.341062px;}
.yd1{bottom:630.841256px;}
.yfe{bottom:633.361343px;}
.y7c{bottom:635.341091px;}
.yd{bottom:638.760731px;}
.y1d3{bottom:639.300932px;}
.y5a{bottom:641.461501px;}
.y9b{bottom:642.360425px;}
.y15a{bottom:642.360947px;}
.y12a{bottom:642.361372px;}
.y43{bottom:643.441249px;}
.yb4{bottom:644.341120px;}
.y117{bottom:645.240990px;}
.y21c{bottom:645.420767px;}
.y1e5{bottom:645.420997px;}
.yfd{bottom:652.441278px;}
.y1aa{bottom:654.240457px;}
.y7b{bottom:654.241184px;}
.y179{bottom:654.421372px;}
.yc{bottom:657.840666px;}
.y1d2{bottom:658.200860px;}
.y9a{bottom:659.460450px;}
.y31{bottom:659.461393px;}
.y59{bottom:660.361429px;}
.y192{bottom:661.440522px;}
.y159{bottom:661.440882px;}
.y129{bottom:661.441307px;}
.yb3{bottom:663.241048px;}
.y1f8{bottom:663.421055px;}
.y21b{bottom:664.320695px;}
.y116{bottom:664.320925px;}
.yfc{bottom:671.341206px;}
.y7a{bottom:673.321120px;}
.y178{bottom:673.321300px;}
.yb{bottom:676.740594px;}
.y30{bottom:678.361487px;}
.y58{bottom:679.441364px;}
.yd0{bottom:679.801228px;}
.y158{bottom:680.340810px;}
.y143{bottom:680.341235px;}
.yb2{bottom:682.320983px;}
.y115{bottom:683.220853px;}
.y42{bottom:685.921292px;}
.yfb{bottom:690.241134px;}
.y1a9{bottom:691.320738px;}
.y79{bottom:692.221048px;}
.y177{bottom:692.401235px;}
.y1d1{bottom:695.280853px;}
.ya{bottom:695.640522px;}
.y2f{bottom:697.441422px;}
.y128{bottom:697.981278px;}
.y57{bottom:698.341292px;}
.ycf{bottom:698.881163px;}
.y157{bottom:699.240738px;}
.y142{bottom:699.241163px;}
.y1f7{bottom:700.321040px;}
.y21a{bottom:701.220680px;}
.yb1{bottom:701.220911px;}
.yfa{bottom:709.321069px;}
.y176{bottom:711.301163px;}
.y1c9{bottom:713.280659px;}
.y1d0{bottom:714.180781px;}
.y9{bottom:714.540450px;}
.y2e{bottom:716.341350px;}
.y191{bottom:716.881206px;}
.y56{bottom:717.241220px;}
.yce{bottom:717.781091px;}
.y156{bottom:718.320673px;}
.y141{bottom:718.321098px;}
.y1f6{bottom:719.220968px;}
.y219{bottom:720.300616px;}
.yb0{bottom:720.300846px;}
.y114{bottom:725.880904px;}
.y1a8{bottom:728.220724px;}
.yf9{bottom:728.220997px;}
.y78{bottom:728.941026px;}
.y175{bottom:730.201091px;}
.y99{bottom:730.740157px;}
.y1c8{bottom:732.180587px;}
.y2d{bottom:735.241278px;}
.y1bc{bottom:735.421285px;}
.y18b{bottom:736.321156px;}
.ycd{bottom:736.861026px;}
.y1e4{bottom:738.300904px;}
.yaf{bottom:739.200774px;}
.y1a7{bottom:747.300659px;}
.yf8{bottom:747.300932px;}
.y174{bottom:749.281026px;}
.y95{bottom:749.460126px;}
.y1c7{bottom:751.260522px;}
.y1cf{bottom:751.260774px;}
.y2c{bottom:754.321213px;}
.y155{bottom:755.220659px;}
.y140{bottom:755.221084px;}
.y1f5{bottom:756.300961px;}
.y218{bottom:757.200601px;}
.ye4{bottom:757.200832px;}
.y90{bottom:764.220398px;}
.y98{bottom:766.020070px;}
.y1a6{bottom:766.200587px;}
.yf7{bottom:766.200860px;}
.y94{bottom:766.740178px;}
.y173{bottom:768.180954px;}
.y1ce{bottom:770.160702px;}
.y8{bottom:771.600268px;}
.y77{bottom:771.780918px;}
.y2b{bottom:773.221141px;}
.y1bb{bottom:773.401148px;}
.ycc{bottom:773.761012px;}
.y154{bottom:774.300594px;}
.y13f{bottom:774.301019px;}
.y1f4{bottom:775.200889px;}
.y217{bottom:776.100529px;}
.yae{bottom:776.100760px;}
.y1c6{bottom:777.720450px;}
.y8f{bottom:781.500450px;}
.y97{bottom:783.300122px;}
.y93{bottom:784.020230px;}
.y113{bottom:784.200918px;}
.y1a5{bottom:785.100515px;}
.y172{bottom:787.260889px;}
.y7{bottom:788.880320px;}
.y1cd{bottom:789.060630px;}
.y2a{bottom:792.301076px;}
.ycb{bottom:792.840947px;}
.y153{bottom:793.200522px;}
.y13e{bottom:793.200947px;}
.y1f3{bottom:794.100817px;}
.yad{bottom:795.180695px;}
.y92{bottom:801.300283px;}
.y112{bottom:803.100846px;}
.y1a4{bottom:804.180601px;}
.y6{bottom:806.160373px;}
.y171{bottom:806.160817px;}
.y1c5{bottom:807.060587px;}
.y29{bottom:811.201004px;}
.yca{bottom:811.740875px;}
.yf6{bottom:812.100875px;}
.y216{bottom:813.180522px;}
.y1e3{bottom:813.180752px;}
.yac{bottom:814.080623px;}
.y96{bottom:818.580185px;}
.y91{bottom:818.580335px;}
.y76{bottom:821.100904px;}
.y111{bottom:822.180781px;}
.y5{bottom:823.440425px;}
.y170{bottom:825.060745px;}
.y1c4{bottom:826.140522px;}
.y1cc{bottom:826.140623px;}
.y28{bottom:830.100932px;}
.y1ba{bottom:830.280940px;}
.yc9{bottom:830.820810px;}
.ye3{bottom:831.180810px;}
.y215{bottom:832.080450px;}
.y1e2{bottom:832.080680px;}
.yab{bottom:833.160558px;}
.y75{bottom:840.180839px;}
.y4{bottom:840.540450px;}
.y1a3{bottom:841.080587px;}
.y110{bottom:841.080709px;}
.y16f{bottom:844.140680px;}
.y1cb{bottom:845.040551px;}
.y27{bottom:849.180868px;}
.ye2{bottom:850.080738px;}
.y1e1{bottom:851.160616px;}
.yaa{bottom:852.060486px;}
.y1c3{bottom:852.600450px;}
.y1a2{bottom:860.160522px;}
.y10f{bottom:860.160644px;}
.y3{bottom:862.320522px;}
.y16e{bottom:863.040608px;}
.y1ca{bottom:864.120486px;}
.yc8{bottom:867.720796px;}
.y26{bottom:868.080796px;}
.y1b9{bottom:868.260803px;}
.y214{bottom:869.160450px;}
.ye1{bottom:869.160673px;}
.y10e{bottom:879.060572px;}
.y2{bottom:881.220450px;}
.y16d{bottom:882.120544px;}
.y1c2{bottom:882.120587px;}
.yc7{bottom:886.620724px;}
.y25{bottom:887.160731px;}
.y13d{bottom:888.060601px;}
.y8e{bottom:889.320450px;}
.ya9{bottom:894.540529px;}
.y16c{bottom:901.020472px;}
.y1c1{bottom:901.020515px;}
.yc6{bottom:905.700659px;}
.y24{bottom:906.060659px;}
.y13c{bottom:906.960529px;}
.y1a1{bottom:915.600544px;}
.y16b{bottom:920.100407px;}
.yc5{bottom:924.600587px;}
.y23{bottom:924.960587px;}
.y1b8{bottom:925.140594px;}
.y1c0{bottom:927.660450px;}
.yc4{bottom:943.680522px;}
.y22{bottom:944.040522px;}
.y1f{bottom:950.520450px;}
.yc3{bottom:962.580450px;}
.y21{bottom:962.940450px;}
.y1e{bottom:980.040450px;}
.y20{bottom:1028.460450px;}
.hf{height:18.720000px;}
.h11{height:29.015859px;}
.h1{height:37.520508px;}
.hb{height:40.501406px;}
.h3{height:41.493516px;}
.h6{height:41.522695px;}
.h8{height:44.860781px;}
.h2{height:44.893125px;}
.he{height:45.248906px;}
.h4{height:45.992812px;}
.h7{height:46.025156px;}
.hd{height:46.316250px;}
.h5{height:49.992188px;}
.hc{height:59.253469px;}
.h9{height:59.253671px;}
.ha{height:59.254765px;}
.h10{height:84.905387px;}
.h0{height:1263.000000px;}
.w1{width:321.840000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:191.340000px;}
.xc{left:196.920058px;}
.x8{left:200.520000px;}
.x6{left:218.340000px;}
.x13{left:233.820043px;}
.x7{left:244.080036px;}
.x5{left:245.340000px;}
.x9{left:272.340049px;}
.xb{left:297.719950px;}
.xf{left:299.340014px;}
.x3{left:316.980000px;}
.x10{left:326.340173px;}
.x12{left:328.320072px;}
.x11{left:353.340094px;}
.x2{left:375.300000px;}
.xe{left:386.820000px;}
.xd{left:411.300000px;}
.x15{left:471.780288px;}
.x14{left:474.660403px;}
.xa{left:501.840112px;}
.x4{left:567.180000px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.878054pt;}
.v2{vertical-align:34.560205pt;}
.ls8{letter-spacing:-1.059840pt;}
.ls4{letter-spacing:-0.624000pt;}
.ls2{letter-spacing:-0.159360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.117760pt;}
.ls1{letter-spacing:0.233165pt;}
.ls5{letter-spacing:0.235520pt;}
.ls3{letter-spacing:0.336000pt;}
.ls7{letter-spacing:0.640000pt;}
.ws2b{word-spacing:-52.344320pt;}
.ws18{word-spacing:-45.808640pt;}
.ws61{word-spacing:-44.748800pt;}
.ws43{word-spacing:-42.746880pt;}
.ws1e{word-spacing:-41.327360pt;}
.wse{word-spacing:-37.680000pt;}
.ws19{word-spacing:-37.506560pt;}
.ws1{word-spacing:-37.344000pt;}
.ws2a{word-spacing:-36.858880pt;}
.ws5d{word-spacing:-36.848870pt;}
.wsf{word-spacing:-36.720000pt;}
.ws44{word-spacing:-36.211200pt;}
.ws20{word-spacing:-35.563520pt;}
.ws47{word-spacing:-34.915840pt;}
.ws30{word-spacing:-34.268160pt;}
.ws25{word-spacing:-33.620480pt;}
.ws21{word-spacing:-33.031680pt;}
.ws1b{word-spacing:-32.384000pt;}
.ws65{word-spacing:-31.761638pt;}
.ws45{word-spacing:-31.736320pt;}
.ws69{word-spacing:-31.728666pt;}
.ws29{word-spacing:-31.088640pt;}
.ws4e{word-spacing:-31.080986pt;}
.ws1f{word-spacing:-30.440960pt;}
.ws64{word-spacing:-29.880422pt;}
.ws22{word-spacing:-29.793280pt;}
.ws2{word-spacing:-29.440000pt;}
.ws24{word-spacing:-29.145600pt;}
.ws2d{word-spacing:-28.879360pt;}
.ws55{word-spacing:-28.556800pt;}
.wsa{word-spacing:-28.416000pt;}
.ws2f{word-spacing:-28.034534pt;}
.ws52{word-spacing:-27.909120pt;}
.ws5f{word-spacing:-27.548186pt;}
.ws46{word-spacing:-27.261440pt;}
.ws48{word-spacing:-26.613760pt;}
.ws11{word-spacing:-26.378240pt;}
.ws4a{word-spacing:-26.260480pt;}
.ws5{word-spacing:-26.142720pt;}
.ws28{word-spacing:-25.966080pt;}
.ws56{word-spacing:-25.318400pt;}
.ws27{word-spacing:-24.670720pt;}
.ws31{word-spacing:-24.023040pt;}
.ws3{word-spacing:-23.585280pt;}
.ws6d{word-spacing:-23.434240pt;}
.wsd{word-spacing:-23.425920pt;}
.ws63{word-spacing:-22.786560pt;}
.ws42{word-spacing:-22.138880pt;}
.ws26{word-spacing:-21.491200pt;}
.ws0{word-spacing:-21.312000pt;}
.ws23{word-spacing:-20.843520pt;}
.ws35{word-spacing:-19.607040pt;}
.ws67{word-spacing:-18.900480pt;}
.ws60{word-spacing:-18.311680pt;}
.ws1a{word-spacing:-17.840640pt;}
.ws5c{word-spacing:-17.192960pt;}
.ws59{word-spacing:-17.016320pt;}
.ws6{word-spacing:-16.545280pt;}
.ws6c{word-spacing:-16.542925pt;}
.ws2e{word-spacing:-16.368640pt;}
.ws7{word-spacing:-15.897600pt;}
.ws50{word-spacing:-15.249920pt;}
.ws13{word-spacing:-14.602240pt;}
.ws57{word-spacing:-14.425600pt;}
.ws4{word-spacing:-13.365760pt;}
.ws1c{word-spacing:-12.718080pt;}
.ws4d{word-spacing:-11.463936pt;}
.ws5a{word-spacing:-11.458637pt;}
.ws4f{word-spacing:-11.422720pt;}
.ws66{word-spacing:-11.415066pt;}
.ws40{word-spacing:-11.304960pt;}
.ws39{word-spacing:-10.657280pt;}
.ws68{word-spacing:-10.127360pt;}
.ws3b{word-spacing:-10.009600pt;}
.ws33{word-spacing:-9.950720pt;}
.ws62{word-spacing:-9.479680pt;}
.ws6a{word-spacing:-9.303040pt;}
.ws17{word-spacing:-8.714240pt;}
.ws16{word-spacing:-8.243200pt;}
.ws49{word-spacing:-7.595520pt;}
.ws14{word-spacing:-6.947840pt;}
.ws3e{word-spacing:-5.534720pt;}
.ws4b{word-spacing:-5.004800pt;}
.ws3f{word-spacing:-4.887040pt;}
.ws4c{word-spacing:-4.357120pt;}
.ws6e{word-spacing:-3.768320pt;}
.ws2c{word-spacing:-2.944000pt;}
.ws34{word-spacing:-0.058880pt;}
.wsb{word-spacing:0.000000pt;}
.ws12{word-spacing:0.117760pt;}
.ws36{word-spacing:0.883200pt;}
.ws51{word-spacing:1.530880pt;}
.ws5e{word-spacing:3.944960pt;}
.ws3a{word-spacing:4.062720pt;}
.ws58{word-spacing:4.121600pt;}
.ws15{word-spacing:4.592640pt;}
.ws8{word-spacing:5.240320pt;}
.ws32{word-spacing:5.770240pt;}
.ws5b{word-spacing:8.419840pt;}
.ws37{word-spacing:8.890880pt;}
.ws38{word-spacing:8.898534pt;}
.ws6b{word-spacing:9.715200pt;}
.ws9{word-spacing:10.951680pt;}
.ws54{word-spacing:11.776000pt;}
.ws3c{word-spacing:13.365760pt;}
.ws10{word-spacing:13.542400pt;}
.ws3d{word-spacing:14.026394pt;}
.ws41{word-spacing:19.924403pt;}
.ws53{word-spacing:57.231360pt;}
.ws1d{word-spacing:853.351027pt;}
.wsc{word-spacing:884.433658pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.115520pt;}
._a{width:2.070400pt;}
._5{width:3.238400pt;}
._3{width:4.298240pt;}
._6{width:5.770240pt;}
._b{width:7.068800pt;}
._4{width:8.537600pt;}
._1a{width:9.476147pt;}
._14{width:10.511846pt;}
._2{width:11.658240pt;}
._9{width:13.372160pt;}
._13{width:15.132160pt;}
._12{width:16.133120pt;}
._19{width:17.149389pt;}
._f{width:18.068506pt;}
._8{width:19.312640pt;}
._7{width:20.313600pt;}
._d{width:21.491789pt;}
._c{width:22.609920pt;}
._16{width:23.669760pt;}
._e{width:25.067571pt;}
._15{width:26.496000pt;}
._18{width:27.732480pt;}
._17{width:29.322240pt;}
._29{width:30.676480pt;}
._11{width:32.737280pt;}
._10{width:33.648742pt;}
._1e{width:35.331200pt;}
._1f{width:36.486400pt;}
._24{width:37.453107pt;}
._2d{width:42.239923pt;}
._2c{width:45.537203pt;}
._1b{width:48.640179pt;}
._20{width:50.025037pt;}
._23{width:51.225600pt;}
._2a{width:52.288154pt;}
._2b{width:53.639680pt;}
._27{width:56.583680pt;}
._21{width:62.353920pt;}
._28{width:64.688512pt;}
._26{width:107.279360pt;}
._25{width:108.456960pt;}
._2e{width:115.228160pt;}
._22{width:223.646848pt;}
._1d{width:390.026694pt;}
._1c{width:403.010816pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:3.520000pt;}
.y1{bottom:218.827067pt;}
.y41{bottom:249.708430pt;}
.y6d{bottom:249.708724pt;}
.y13b{bottom:252.267937pt;}
.y55{bottom:252.268385pt;}
.y190{bottom:252.268532pt;}
.y1d{bottom:252.588251pt;}
.y152{bottom:254.027323pt;}
.ye0{bottom:254.828353pt;}
.y206{bottom:256.587969pt;}
.ya8{bottom:257.547515pt;}
.y22a{bottom:257.707662pt;}
.y10d{bottom:262.028334pt;}
.y18a{bottom:262.988532pt;}
.y1a0{bottom:263.787361pt;}
.y40{bottom:266.508366pt;}
.y6c{bottom:266.508660pt;}
.y74{bottom:267.468551pt;}
.y1e0{bottom:269.067598pt;}
.y16a{bottom:269.227572pt;}
.y13a{bottom:269.227879pt;}
.y54{bottom:269.228475pt;}
.y18f{bottom:269.228622pt;}
.y1c{bottom:269.388187pt;}
.y151{bottom:270.827259pt;}
.ydf{bottom:271.628289pt;}
.y127{bottom:271.787988pt;}
.yc2{bottom:272.267476pt;}
.y213{bottom:272.588020pt;}
.y205{bottom:273.547911pt;}
.y1f2{bottom:274.347943pt;}
.ya7{bottom:274.507457pt;}
.y229{bottom:274.507598pt;}
.y8d{bottom:278.027803pt;}
.y10c{bottom:278.828270pt;}
.y189{bottom:279.788468pt;}
.y19f{bottom:280.587297pt;}
.y1b7{bottom:281.547713pt;}
.y3f{bottom:283.308302pt;}
.y6b{bottom:283.468750pt;}
.y73{bottom:284.268635pt;}
.y1df{bottom:285.867681pt;}
.y169{bottom:286.027508pt;}
.y139{bottom:286.027815pt;}
.y53{bottom:286.028411pt;}
.y18e{bottom:286.028558pt;}
.y126{bottom:288.587924pt;}
.yde{bottom:288.588231pt;}
.yc1{bottom:289.067412pt;}
.y212{bottom:289.548110pt;}
.y204{bottom:290.347847pt;}
.ya6{bottom:291.307393pt;}
.y228{bottom:291.307681pt;}
.y1f1{bottom:291.308033pt;}
.y8c{bottom:294.827739pt;}
.y10b{bottom:295.788359pt;}
.y188{bottom:296.748411pt;}
.y19e{bottom:297.547239pt;}
.y1b6{bottom:298.347649pt;}
.y3e{bottom:300.268391pt;}
.y6a{bottom:300.268686pt;}
.y72{bottom:301.228577pt;}
.y168{bottom:302.827444pt;}
.y138{bottom:302.827751pt;}
.y52{bottom:302.828347pt;}
.y18d{bottom:302.828494pt;}
.y150{bottom:303.787252pt;}
.ydd{bottom:305.388167pt;}
.y125{bottom:305.547867pt;}
.yc0{bottom:306.027355pt;}
.y211{bottom:306.348046pt;}
.y203{bottom:307.307937pt;}
.ya5{bottom:308.267335pt;}
.y1b{bottom:309.068155pt;}
.y8b{bottom:311.787681pt;}
.y10a{bottom:312.588295pt;}
.y187{bottom:313.548347pt;}
.y1b5{bottom:315.307591pt;}
.yf5{bottom:315.787182pt;}
.y3d{bottom:317.068327pt;}
.y69{bottom:317.228628pt;}
.y71{bottom:318.028513pt;}
.y1de{bottom:318.827675pt;}
.y167{bottom:319.787387pt;}
.y137{bottom:319.787694pt;}
.y51{bottom:319.788289pt;}
.y14f{bottom:320.587188pt;}
.y19d{bottom:322.347201pt;}
.y124{bottom:322.347803pt;}
.y210{bottom:323.147982pt;}
.yf4{bottom:323.947067pt;}
.y1f0{bottom:324.108020pt;}
.y227{bottom:324.267675pt;}
.ya4{bottom:325.067271pt;}
.y1a{bottom:325.868091pt;}
.y8a{bottom:328.587617pt;}
.y186{bottom:330.508289pt;}
.y1b4{bottom:332.107527pt;}
.y3c{bottom:334.028270pt;}
.y68{bottom:334.028564pt;}
.y70{bottom:334.988455pt;}
.y1dd{bottom:335.627611pt;}
.y166{bottom:336.587323pt;}
.y136{bottom:336.587630pt;}
.y50{bottom:336.588225pt;}
.y14e{bottom:337.547131pt;}
.ydc{bottom:338.188155pt;}
.ybf{bottom:338.827342pt;}
.y202{bottom:340.107924pt;}
.y18c{bottom:340.748539pt;}
.y226{bottom:341.067758pt;}
.y1ef{bottom:341.067963pt;}
.ya3{bottom:341.867207pt;}
.y89{bottom:345.547559pt;}
.y109{bottom:345.548289pt;}
.y185{bottom:347.308372pt;}
.y1b3{bottom:348.907463pt;}
.y3b{bottom:350.828206pt;}
.y67{bottom:350.828500pt;}
.y6f{bottom:351.788539pt;}
.y1dc{bottom:352.427547pt;}
.y135{bottom:353.547572pt;}
.y4f{bottom:353.548315pt;}
.y14d{bottom:354.347367pt;}
.y123{bottom:354.827777pt;}
.y19c{bottom:355.147188pt;}
.ydb{bottom:355.148244pt;}
.ybe{bottom:355.787284pt;}
.y20f{bottom:356.107975pt;}
.y201{bottom:356.907860pt;}
.y1ee{bottom:357.867899pt;}
.ya2{bottom:358.827150pt;}
.y88{bottom:362.347495pt;}
.y108{bottom:362.348225pt;}
.y19{bottom:365.388052pt;}
.y1b2{bottom:365.867406pt;}
.yf1{bottom:367.147067pt;}
.yf3{bottom:367.467079pt;}
.y3a{bottom:367.628142pt;}
.y66{bottom:367.788590pt;}
.y6e{bottom:368.588475pt;}
.y165{bottom:369.547316pt;}
.y134{bottom:370.347508pt;}
.y4e{bottom:370.348251pt;}
.yda{bottom:371.948180pt;}
.y19b{bottom:372.107131pt;}
.ybd{bottom:372.587220pt;}
.y20e{bottom:372.907911pt;}
.y225{bottom:373.867745pt;}
.y200{bottom:373.867950pt;}
.ya1{bottom:375.627086pt;}
.y87{bottom:379.147431pt;}
.y107{bottom:379.148161pt;}
.y184{bottom:380.108359pt;}
.y18{bottom:382.347995pt;}
.y1b1{bottom:382.667342pt;}
.yf0{bottom:383.947067pt;}
.yf2{bottom:384.267015pt;}
.y39{bottom:384.588231pt;}
.y65{bottom:384.588526pt;}
.y1db{bottom:385.387540pt;}
.y164{bottom:386.347252pt;}
.y14c{bottom:387.147355pt;}
.y133{bottom:387.147444pt;}
.y4d{bottom:387.148187pt;}
.y122{bottom:388.107783pt;}
.y19a{bottom:388.907137pt;}
.yd9{bottom:388.908123pt;}
.ybc{bottom:389.547163pt;}
.y1ed{bottom:390.667886pt;}
.y224{bottom:390.827687pt;}
.ya0{bottom:392.587028pt;}
.y86{bottom:396.107374pt;}
.y183{bottom:397.068302pt;}
.y17{bottom:399.147931pt;}
.y1b0{bottom:399.627284pt;}
.y38{bottom:401.388167pt;}
.y64{bottom:401.548468pt;}
.y1da{bottom:402.187476pt;}
.y163{bottom:403.147188pt;}
.y14b{bottom:404.107297pt;}
.y4c{bottom:404.108129pt;}
.y121{bottom:404.907719pt;}
.yd8{bottom:405.708059pt;}
.y20d{bottom:405.867905pt;}
.ybb{bottom:406.347099pt;}
.y1ff{bottom:406.667937pt;}
.y223{bottom:407.627623pt;}
.y1ec{bottom:407.627828pt;}
.y106{bottom:412.108155pt;}
.y85{bottom:412.907310pt;}
.y182{bottom:413.868238pt;}
.y16{bottom:415.947867pt;}
.y1af{bottom:416.427220pt;}
.y37{bottom:418.348110pt;}
.y63{bottom:418.348404pt;}
.yed{bottom:418.827067pt;}
.yef{bottom:419.147079pt;}
.y162{bottom:420.107131pt;}
.y132{bottom:420.107438pt;}
.y14a{bottom:420.907233pt;}
.y199{bottom:421.867131pt;}
.y120{bottom:421.867662pt;}
.yd7{bottom:422.507995pt;}
.y20c{bottom:422.667841pt;}
.y1fe{bottom:423.627879pt;}
.y22c{bottom:427.467444pt;}
.y105{bottom:428.908238pt;}
.y84{bottom:429.867252pt;}
.y9f{bottom:430.347067pt;}
.y181{bottom:430.828180pt;}
.y15{bottom:432.907809pt;}
.y1ae{bottom:433.227156pt;}
.y1d9{bottom:435.147470pt;}
.y36{bottom:435.148046pt;}
.y62{bottom:435.148340pt;}
.yec{bottom:435.787067pt;}
.yee{bottom:436.107022pt;}
.y131{bottom:436.907374pt;}
.y161{bottom:436.907886pt;}
.y4b{bottom:436.908116pt;}
.y149{bottom:437.867175pt;}
.y198{bottom:438.667271pt;}
.y11f{bottom:438.667598pt;}
.yd6{bottom:439.467937pt;}
.y20b{bottom:439.627783pt;}
.y222{bottom:440.427611pt;}
.y1eb{bottom:440.427815pt;}
.y104{bottom:445.868180pt;}
.y83{bottom:446.667188pt;}
.yba{bottom:447.627131pt;}
.y180{bottom:447.628116pt;}
.y14{bottom:449.707745pt;}
.y1ad{bottom:450.187099pt;}
.y1d8{bottom:451.947406pt;}
.y1bf{bottom:452.108135pt;}
.y61{bottom:452.108283pt;}
.y130{bottom:453.867316pt;}
.y4a{bottom:453.868059pt;}
.y148{bottom:454.667111pt;}
.y11e{bottom:455.627540pt;}
.y1fd{bottom:456.427867pt;}
.y221{bottom:457.387553pt;}
.y1ea{bottom:457.387758pt;}
.y22b{bottom:460.267431pt;}
.y103{bottom:462.668116pt;}
.y82{bottom:463.627131pt;}
.yb9{bottom:464.427598pt;}
.y17f{bottom:464.428052pt;}
.y13{bottom:466.667687pt;}
.y1d7{bottom:468.747489pt;}
.y60{bottom:468.908219pt;}
.y1be{bottom:469.068078pt;}
.y160{bottom:469.867879pt;}
.y12f{bottom:470.667252pt;}
.y49{bottom:470.667995pt;}
.yeb{bottom:470.987131pt;}
.ye7{bottom:471.147067pt;}
.y197{bottom:471.307252pt;}
.yd5{bottom:472.267924pt;}
.y11d{bottom:472.427623pt;}
.y20a{bottom:472.427771pt;}
.y35{bottom:472.908084pt;}
.y1fc{bottom:473.387809pt;}
.y102{bottom:479.628059pt;}
.y81{bottom:480.427310pt;}
.yb8{bottom:481.227681pt;}
.y17e{bottom:481.387995pt;}
.y1ac{bottom:482.667073pt;}
.y12{bottom:483.467623pt;}
.y5f{bottom:485.868161pt;}
.y15f{bottom:486.667815pt;}
.y147{bottom:487.627105pt;}
.y12e{bottom:487.627195pt;}
.y48{bottom:487.627937pt;}
.yea{bottom:487.787067pt;}
.y11c{bottom:489.227559pt;}
.y209{bottom:489.227707pt;}
.yd4{bottom:489.227867pt;}
.y220{bottom:490.187540pt;}
.y1e9{bottom:490.187745pt;}
.y101{bottom:496.427995pt;}
.y80{bottom:497.227246pt;}
.yb7{bottom:498.187623pt;}
.y17d{bottom:498.188078pt;}
.y11{bottom:500.267559pt;}
.ye8{bottom:501.067067pt;}
.y1d6{bottom:501.707483pt;}
.y5e{bottom:502.668244pt;}
.y15e{bottom:503.627758pt;}
.ye6{bottom:503.947067pt;}
.y146{bottom:504.427041pt;}
.y12d{bottom:504.427131pt;}
.y196{bottom:504.427252pt;}
.y47{bottom:504.427873pt;}
.yd3{bottom:506.027803pt;}
.y11b{bottom:506.187502pt;}
.y208{bottom:506.187649pt;}
.y1fb{bottom:506.187796pt;}
.y1e8{bottom:506.987681pt;}
.y21f{bottom:507.147483pt;}
.y34{bottom:512.908065pt;}
.y100{bottom:513.227931pt;}
.y7f{bottom:514.187188pt;}
.yb6{bottom:514.987559pt;}
.y17c{bottom:515.148020pt;}
.y10{bottom:517.227502pt;}
.y1d5{bottom:518.507419pt;}
.y5d{bottom:519.628187pt;}
.y15d{bottom:520.427694pt;}
.y145{bottom:521.226977pt;}
.y195{bottom:521.227188pt;}
.y46{bottom:521.227809pt;}
.y12c{bottom:521.227956pt;}
.y11a{bottom:522.987438pt;}
.y207{bottom:522.987585pt;}
.y1fa{bottom:522.987732pt;}
.yd2{bottom:522.987745pt;}
.y9e{bottom:523.626979pt;}
.y21e{bottom:523.947419pt;}
.y1e7{bottom:523.947623pt;}
.y33{bottom:529.708001pt;}
.yff{bottom:530.187873pt;}
.y7e{bottom:530.987124pt;}
.y17b{bottom:531.947956pt;}
.yf{bottom:534.027438pt;}
.y5c{bottom:536.428123pt;}
.y15c{bottom:537.227630pt;}
.y194{bottom:538.187131pt;}
.y45{bottom:538.187751pt;}
.y144{bottom:538.187899pt;}
.y119{bottom:539.947380pt;}
.y1f9{bottom:539.947675pt;}
.y32{bottom:546.507937pt;}
.y7d{bottom:547.947553pt;}
.y1ab{bottom:548.747079pt;}
.y17a{bottom:548.747892pt;}
.ye{bottom:550.987380pt;}
.y1d4{bottom:551.467412pt;}
.y5b{bottom:553.228059pt;}
.y1bd{bottom:553.388065pt;}
.y15b{bottom:554.187572pt;}
.y12b{bottom:554.187950pt;}
.y9d{bottom:554.987035pt;}
.y193{bottom:554.987137pt;}
.y44{bottom:554.987835pt;}
.y9c{bottom:555.626998pt;}
.ye5{bottom:555.787067pt;}
.yb5{bottom:555.947579pt;}
.y21d{bottom:556.747406pt;}
.y118{bottom:556.747463pt;}
.y1e6{bottom:556.747611pt;}
.yd1{bottom:560.747783pt;}
.yfe{bottom:562.987860pt;}
.y7c{bottom:564.747636pt;}
.yd{bottom:567.787316pt;}
.y1d3{bottom:568.267495pt;}
.y5a{bottom:570.188001pt;}
.y9b{bottom:570.987044pt;}
.y15a{bottom:570.987508pt;}
.y12a{bottom:570.987886pt;}
.y43{bottom:571.947777pt;}
.yb4{bottom:572.747662pt;}
.y117{bottom:573.547547pt;}
.y21c{bottom:573.707348pt;}
.y1e5{bottom:573.707553pt;}
.yfd{bottom:579.947803pt;}
.y1aa{bottom:581.547073pt;}
.y7b{bottom:581.547719pt;}
.y179{bottom:581.707886pt;}
.yc{bottom:584.747259pt;}
.y1d2{bottom:585.067431pt;}
.y9a{bottom:586.187067pt;}
.y31{bottom:586.187905pt;}
.y59{bottom:586.987937pt;}
.y192{bottom:587.947131pt;}
.y159{bottom:587.947451pt;}
.y129{bottom:587.947828pt;}
.yb3{bottom:589.547598pt;}
.y1f8{bottom:589.707604pt;}
.y21b{bottom:590.507284pt;}
.y116{bottom:590.507489pt;}
.yfc{bottom:596.747739pt;}
.y7a{bottom:598.507662pt;}
.y178{bottom:598.507822pt;}
.yb{bottom:601.547195pt;}
.y30{bottom:602.987988pt;}
.y58{bottom:603.947879pt;}
.yd0{bottom:604.267758pt;}
.y158{bottom:604.747387pt;}
.y143{bottom:604.747764pt;}
.yb2{bottom:606.507540pt;}
.y115{bottom:607.307425pt;}
.y42{bottom:609.707815pt;}
.yfb{bottom:613.547675pt;}
.y1a9{bottom:614.507323pt;}
.y79{bottom:615.307598pt;}
.y177{bottom:615.467764pt;}
.y1d1{bottom:618.027425pt;}
.ya{bottom:618.347131pt;}
.y2f{bottom:619.947931pt;}
.y128{bottom:620.427803pt;}
.y57{bottom:620.747815pt;}
.ycf{bottom:621.227700pt;}
.y157{bottom:621.547323pt;}
.y142{bottom:621.547700pt;}
.y1f7{bottom:622.507591pt;}
.y21a{bottom:623.307271pt;}
.yb1{bottom:623.307476pt;}
.yfa{bottom:630.507617pt;}
.y176{bottom:632.267700pt;}
.y1c9{bottom:634.027252pt;}
.y1d0{bottom:634.827361pt;}
.y9{bottom:635.147067pt;}
.y2e{bottom:636.747867pt;}
.y191{bottom:637.227739pt;}
.y56{bottom:637.547751pt;}
.yce{bottom:638.027636pt;}
.y156{bottom:638.507265pt;}
.y141{bottom:638.507643pt;}
.y1f6{bottom:639.307527pt;}
.y219{bottom:640.267214pt;}
.yb0{bottom:640.267419pt;}
.y114{bottom:645.227470pt;}
.y1a8{bottom:647.307310pt;}
.yf9{bottom:647.307553pt;}
.y78{bottom:647.947579pt;}
.y175{bottom:649.067636pt;}
.y99{bottom:649.546806pt;}
.y1c8{bottom:650.827188pt;}
.y2d{bottom:653.547803pt;}
.y1bc{bottom:653.707809pt;}
.y18b{bottom:654.507694pt;}
.ycd{bottom:654.987579pt;}
.y1e4{bottom:656.267470pt;}
.yaf{bottom:657.067355pt;}
.y1a7{bottom:664.267252pt;}
.yf8{bottom:664.267495pt;}
.y174{bottom:666.027579pt;}
.y95{bottom:666.186779pt;}
.y1c7{bottom:667.787131pt;}
.y1cf{bottom:667.787355pt;}
.y2c{bottom:670.507745pt;}
.y155{bottom:671.307252pt;}
.y140{bottom:671.307630pt;}
.y1f5{bottom:672.267521pt;}
.y218{bottom:673.067201pt;}
.ye4{bottom:673.067406pt;}
.y90{bottom:679.307020pt;}
.y98{bottom:680.906729pt;}
.y1a6{bottom:681.067188pt;}
.yf7{bottom:681.067431pt;}
.y94{bottom:681.546825pt;}
.y173{bottom:682.827515pt;}
.y1ce{bottom:684.587291pt;}
.y8{bottom:685.866905pt;}
.y77{bottom:686.027483pt;}
.y2b{bottom:687.307681pt;}
.y1bb{bottom:687.467687pt;}
.ycc{bottom:687.787566pt;}
.y154{bottom:688.267195pt;}
.y13f{bottom:688.267572pt;}
.y1f4{bottom:689.067457pt;}
.y217{bottom:689.867137pt;}
.yae{bottom:689.867342pt;}
.y1c6{bottom:691.307067pt;}
.y8f{bottom:694.667067pt;}
.y97{bottom:696.266775pt;}
.y93{bottom:696.906871pt;}
.y113{bottom:697.067483pt;}
.y1a5{bottom:697.867124pt;}
.y172{bottom:699.787457pt;}
.y7{bottom:701.226951pt;}
.y1cd{bottom:701.387227pt;}
.y2a{bottom:704.267623pt;}
.ycb{bottom:704.747508pt;}
.y153{bottom:705.067131pt;}
.y13e{bottom:705.067508pt;}
.y1f3{bottom:705.867393pt;}
.yad{bottom:706.827284pt;}
.y92{bottom:712.266918pt;}
.y112{bottom:713.867419pt;}
.y1a4{bottom:714.827201pt;}
.y6{bottom:716.586998pt;}
.y171{bottom:716.587393pt;}
.y1c5{bottom:717.387188pt;}
.y29{bottom:721.067559pt;}
.yca{bottom:721.547444pt;}
.yf6{bottom:721.867444pt;}
.y216{bottom:722.827131pt;}
.y1e3{bottom:722.827335pt;}
.yac{bottom:723.627220pt;}
.y96{bottom:727.626831pt;}
.y91{bottom:727.626964pt;}
.y76{bottom:729.867470pt;}
.y111{bottom:730.827361pt;}
.y5{bottom:731.947044pt;}
.y170{bottom:733.387329pt;}
.y1c4{bottom:734.347131pt;}
.y1cc{bottom:734.347220pt;}
.y28{bottom:737.867495pt;}
.y1ba{bottom:738.027502pt;}
.yc9{bottom:738.507387pt;}
.ye3{bottom:738.827387pt;}
.y215{bottom:739.627067pt;}
.y1e2{bottom:739.627271pt;}
.yab{bottom:740.587163pt;}
.y75{bottom:746.827412pt;}
.y4{bottom:747.147067pt;}
.y1a3{bottom:747.627188pt;}
.y110{bottom:747.627297pt;}
.y16f{bottom:750.347271pt;}
.y1cb{bottom:751.147156pt;}
.y27{bottom:754.827438pt;}
.ye2{bottom:755.627323pt;}
.y1e1{bottom:756.587214pt;}
.yaa{bottom:757.387099pt;}
.y1c3{bottom:757.867067pt;}
.y1a2{bottom:764.587131pt;}
.y10f{bottom:764.587239pt;}
.y3{bottom:766.507131pt;}
.y16e{bottom:767.147207pt;}
.y1ca{bottom:768.107099pt;}
.yc8{bottom:771.307374pt;}
.y26{bottom:771.627374pt;}
.y1b9{bottom:771.787380pt;}
.y214{bottom:772.587067pt;}
.ye1{bottom:772.587265pt;}
.y10e{bottom:781.387175pt;}
.y2{bottom:783.307067pt;}
.y16d{bottom:784.107150pt;}
.y1c2{bottom:784.107188pt;}
.yc7{bottom:788.107310pt;}
.y25{bottom:788.587316pt;}
.y13d{bottom:789.387201pt;}
.y8e{bottom:790.507067pt;}
.ya9{bottom:795.147137pt;}
.y16c{bottom:800.907086pt;}
.y1c1{bottom:800.907124pt;}
.yc6{bottom:805.067252pt;}
.y24{bottom:805.387252pt;}
.y13c{bottom:806.187137pt;}
.y1a1{bottom:813.867150pt;}
.y16b{bottom:817.867028pt;}
.yc5{bottom:821.867188pt;}
.y23{bottom:822.187188pt;}
.y1b8{bottom:822.347195pt;}
.y1c0{bottom:824.587067pt;}
.yc4{bottom:838.827131pt;}
.y22{bottom:839.147131pt;}
.y1f{bottom:844.907067pt;}
.yc3{bottom:855.627067pt;}
.y21{bottom:855.947067pt;}
.y1e{bottom:871.147067pt;}
.y20{bottom:914.187067pt;}
.hf{height:16.640000pt;}
.h11{height:25.791875pt;}
.h1{height:33.351562pt;}
.hb{height:36.001250pt;}
.h3{height:36.883125pt;}
.h6{height:36.909063pt;}
.h8{height:39.876250pt;}
.h2{height:39.905000pt;}
.he{height:40.221250pt;}
.h4{height:40.882500pt;}
.h7{height:40.911250pt;}
.hd{height:41.170000pt;}
.h5{height:44.437500pt;}
.hc{height:52.669750pt;}
.h9{height:52.669929pt;}
.ha{height:52.670902pt;}
.h10{height:75.471455pt;}
.h0{height:1122.666667pt;}
.w1{width:286.080000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:170.080000pt;}
.xc{left:175.040051pt;}
.x8{left:178.240000pt;}
.x6{left:194.080000pt;}
.x13{left:207.840038pt;}
.x7{left:216.960032pt;}
.x5{left:218.080000pt;}
.x9{left:242.080043pt;}
.xb{left:264.639955pt;}
.xf{left:266.080013pt;}
.x3{left:281.760000pt;}
.x10{left:290.080154pt;}
.x12{left:291.840064pt;}
.x11{left:314.080083pt;}
.x2{left:333.600000pt;}
.xe{left:343.840000pt;}
.xd{left:365.600000pt;}
.x15{left:419.360256pt;}
.x14{left:421.920358pt;}
.xa{left:446.080099pt;}
.x4{left:504.160000pt;}
}

